diff options
author | Pietro Cerutti <gahr@FreeBSD.org> | 2008-07-16 20:37:23 +0000 |
---|---|---|
committer | Pietro Cerutti <gahr@FreeBSD.org> | 2008-07-16 20:37:23 +0000 |
commit | 369557ba71fcf61c42ba46e846c4bfcfb610138e (patch) | |
tree | 7b94695261a31d6bfab3993d356b11f01f85852d /graphics | |
parent | e78b871ce154426e3b2b9e5c45392a30fb36827a (diff) | |
download | ports-369557ba71fcf61c42ba46e846c4bfcfb610138e.tar.gz ports-369557ba71fcf61c42ba46e846c4bfcfb610138e.zip |
Notes
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/separate/Makefile | 10 | ||||
-rw-r--r-- | graphics/separate/distinfo | 6 | ||||
-rw-r--r-- | graphics/separate/files/patch-Makefile | 45 |
3 files changed, 10 insertions, 51 deletions
diff --git a/graphics/separate/Makefile b/graphics/separate/Makefile index ca37da66c26b..5137df66f623 100644 --- a/graphics/separate/Makefile +++ b/graphics/separate/Makefile @@ -6,10 +6,13 @@ # PORTNAME= separate -PORTVERSION= 20070727 +PORTVERSION= 0.5.1 +PORTEPOCH= 1 CATEGORIES= graphics -MASTER_SITES= ${MASTER_SITE_LOCAL} +MASTER_SITES= ${MASTER_SITE_LOCAL} \ + http://people.freebsd.org/~gahr/distfiles/ MASTER_SITE_SUBDIR= gahr +DISTNAME= ${PORTNAME}+-${PORTVERSION} MAINTAINER= gahr@FreeBSD.org COMMENT= A CMYK plugin for The GIMP @@ -18,7 +21,7 @@ BUILD_DEPENDS= gccmakedep:${PORTSDIR}/devel/gccmakedep \ gimp-2.4:${PORTSDIR}/graphics/gimp LIB_DEPENDS= lcms.1:${PORTSDIR}/graphics/lcms -WRKSRC= ${WRKDIR}/${PORTNAME}+ +WRKSRC= ${WRKDIR}/${DISTNAME} USE_ZIP= yes @@ -35,6 +38,7 @@ PORTEXAMPLES= quickproof.scm quicksave.scm MAKE_ENV+= TARGETS="${TARGETS}" do-install: + ${INSTALL} -d ${PREFIX}/${GIMP_PLUGINS_DIR} .for PLUGIN in ${TARGETS} ${INSTALL_PROGRAM} ${WRKSRC}/${PLUGIN} ${PREFIX}/${GIMP_PLUGINS_DIR}/ .endfor diff --git a/graphics/separate/distinfo b/graphics/separate/distinfo index b61569fa2416..c4f02a86476d 100644 --- a/graphics/separate/distinfo +++ b/graphics/separate/distinfo @@ -1,3 +1,3 @@ -MD5 (separate-20070727.zip) = 35edd674a08f66e40df5eaa0dd4dc3a4 -SHA256 (separate-20070727.zip) = a308f35986743481e185f83fb298fc69e86eab166b135f72e5f74b54d969988a -SIZE (separate-20070727.zip) = 325392 +MD5 (separate+-0.5.1.zip) = 477ada513586ec87dc959cf5a0b08d57 +SHA256 (separate+-0.5.1.zip) = aff91b40ccc562871c59043fb837b08f2d9fece0d39cd4320f44973fe6da5092 +SIZE (separate+-0.5.1.zip) = 175969 diff --git a/graphics/separate/files/patch-Makefile b/graphics/separate/files/patch-Makefile deleted file mode 100644 index 973f52e7c13a..000000000000 --- a/graphics/separate/files/patch-Makefile +++ /dev/null @@ -1,45 +0,0 @@ ---- Makefile.orig 2008-01-30 18:58:11.000000000 +0100 -+++ Makefile 2008-01-30 19:02:42.000000000 +0100 -@@ -1,7 +1,4 @@ - --PREFIX=/usr/devel -- --GIMP_VER = 2.3 - GTK_INCLUDE = `pkg-config gtk+-2.0 --cflags` - GTK_LIB = `pkg-config gtk+-2.0 --libs` - GIMP_INCLUDE = `pkg-config gimp-2.0 --cflags` `pkg-config gimpui-2.0 --cflags` -@@ -10,10 +7,7 @@ - LCMS_LIB = `pkg-config lcms --libs` - TIFF_LIB = -ltiff - --VERSION = 0.3 --CC = gcc -g - DEPEND = gccmakedep --RM = rm -f - - # If you will use with the GIMP 2.2.x, remove "-DENABLE_COLOR_MANAGEMENT". - # If you don't want to merge "normal" and "to Colour" dialog, -@@ -41,8 +35,6 @@ - - ICC_COLORSPACE_OBJECTS = $(ICC_COLORSPACE_SOURCES:.c=.o) $(EXTRA_SOURCES:.c=.o) - --TARGETS = separate separate_import icc_colorspace -- - all: $(TARGETS) - - depend: -@@ -60,14 +52,6 @@ - icc_colorspace: $(ICC_COLORSPACE_OBJECTS) - $(CC) $(ICC_COLORSPACE_OBJECTS) -o $@ $(LDFLAGS) - --install: $(TARGETS) -- install -c $^ $(HOME)/.gimp-$(GIMP_VER)/plug-ins/ -- --uninstall: -- rm -f $(HOME)/.gimp-$(GIMP_VER)/plug-ins/separate -- rm -f $(HOME)/.gimp-$(GIMP_VER)/plug-ins/separate_import -- rm -f $(HOME)/.gimp-$(GIMP_VER)/plug-ins/icc_colorspace -- - # Inference rules - - .c.o: |