svn commit: r327703 - in head/graphics/gimp-gmic-plugin: . files
Ruslan Makhmatkhanov
rm at FreeBSD.org
Fri Sep 20 13:35:30 UTC 2013
Author: rm
Date: Fri Sep 20 13:35:29 2013
New Revision: 327703
URL: http://svnweb.freebsd.org/changeset/ports/327703
Log:
- update to 1.5.7.1
- convert LIB_DEPENDS to modern syntax
- add NO_STAGE=yes
- fix build with clang [1]
Reported by: Ajtim <lumiwa at gmail.com> [1]
Modified:
head/graphics/gimp-gmic-plugin/Makefile
head/graphics/gimp-gmic-plugin/distinfo
head/graphics/gimp-gmic-plugin/files/patch-Makefile
head/graphics/gimp-gmic-plugin/pkg-descr
Modified: head/graphics/gimp-gmic-plugin/Makefile
==============================================================================
--- head/graphics/gimp-gmic-plugin/Makefile Fri Sep 20 13:27:44 2013 (r327702)
+++ head/graphics/gimp-gmic-plugin/Makefile Fri Sep 20 13:35:29 2013 (r327703)
@@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= gmic
-PORTVERSION= 1.5.6.1
+PORTVERSION= 1.5.7.1
CATEGORIES= graphics
MASTER_SITES= SF/${PORTNAME} \
SF/${PORTNAME}/old
@@ -12,12 +12,12 @@ DISTNAME= ${PORTNAME}_${PORTVERSION}
MAINTAINER= rm at FreeBSD.org
COMMENT= GREYC's Magic Image Converter
-LIB_DEPENDS= GraphicsMagick++.9:${PORTSDIR}/graphics/GraphicsMagick13 \
- IlmImf:${PORTSDIR}/graphics/OpenEXR \
- Magick++:${PORTSDIR}/graphics/ImageMagick \
- avcodec.1:${PORTSDIR}/multimedia/ffmpeg \
- fftw3:${PORTSDIR}/math/fftw3 \
- gimp-2.0:${PORTSDIR}/graphics/gimp-app
+LIB_DEPENDS= libGraphicsMagick++.so:${PORTSDIR}/graphics/GraphicsMagick13 \
+ libIlmImf.so:${PORTSDIR}/graphics/OpenEXR \
+ libMagick++.so:${PORTSDIR}/graphics/ImageMagick \
+ libavcodec.so:${PORTSDIR}/multimedia/ffmpeg \
+ libfftw3.so:${PORTSDIR}/math/fftw3 \
+ libgimp-2.0.so:${PORTSDIR}/graphics/gimp-app
OPTIONS_DEFINE= BASH
BASH_DESC= Install programmable completions for Bash
@@ -39,6 +39,7 @@ CXXFLAGS:= ${CXXFLAGS:N-O*:N-pipe}
MAN1= gmic.1
MANCOMPRESSED= yes
+NO_STAGE= yes
.include <bsd.port.options.mk>
Modified: head/graphics/gimp-gmic-plugin/distinfo
==============================================================================
--- head/graphics/gimp-gmic-plugin/distinfo Fri Sep 20 13:27:44 2013 (r327702)
+++ head/graphics/gimp-gmic-plugin/distinfo Fri Sep 20 13:35:29 2013 (r327703)
@@ -1,2 +1,2 @@
-SHA256 (gmic_1.5.6.1.tar.gz) = 8399a97f4479a379d8e7fda6a0a73bde0ac120f781111b9ed8a2e28e5a3ed22f
-SIZE (gmic_1.5.6.1.tar.gz) = 2137616
+SHA256 (gmic_1.5.7.1.tar.gz) = bc55fe0309c08fd4b4d97c37704db77965316c818c169ac573b8b12a5a44d42f
+SIZE (gmic_1.5.7.1.tar.gz) = 2174947
Modified: head/graphics/gimp-gmic-plugin/files/patch-Makefile
==============================================================================
--- head/graphics/gimp-gmic-plugin/files/patch-Makefile Fri Sep 20 13:27:44 2013 (r327702)
+++ head/graphics/gimp-gmic-plugin/files/patch-Makefile Fri Sep 20 13:35:29 2013 (r327703)
@@ -1,15 +1,24 @@
---- ./Makefile.orig 2012-12-03 20:57:53.000000000 +0400
-+++ ./Makefile 2012-12-31 13:25:31.000000000 +0400
-@@ -56,7 +56,7 @@
+--- ./Makefile.orig 2013-09-18 14:58:08.000000000 +0400
++++ ./Makefile 2013-09-20 17:26:01.000000000 +0400
+@@ -47,7 +47,7 @@
+ # Set correct variables and paths.
+ #----------------------------------
+ OS := $(shell uname)
+-CC = g++
++CC = c++
+ ifeq ($(OS),Linux)
+ OS = Unix
+ endif
+@@ -62,7 +62,7 @@
USR = /opt/local
else
PLUGINDIR = `gimptool-2.0 --gimpplugindir`/plug-ins
-USR = /usr
+USR = /usr/X11R6
endif
- ifeq ($(OS),MINGW32_NT-5.1)
+ ifeq ($(OSTYPE),msys)
EXE = .exe
-@@ -106,7 +106,7 @@
+@@ -117,7 +117,7 @@
# This requires the presence of the X11 extension include and library files.
# (package 'libx11-dev' on Debian).
XSHM_CFLAGS = -Dcimg_use_xshm
@@ -18,7 +27,7 @@
# Flags to enable image display, using GDI32.
# This requires the presence of the GDI32 include and library files.
-@@ -270,6 +270,13 @@
+@@ -282,6 +282,13 @@
$(MAKE) lib
$(MAKE) zart
else
@@ -31,8 +40,8 @@
+else
ifeq ($(OS),Darwin)
@echo "**"
- @echo "** MacOSX configuration"
-@@ -285,9 +292,10 @@
+ @echo "** MacOSX configuration."
+@@ -297,9 +304,10 @@
$(MAKE) gimp
endif
endif
@@ -44,7 +53,7 @@
lib:
$(MAKE) "CFLAGS=$(STD_LIB_CFLAGS) $(OPT_CFLAGS)" "LDFLAGS+=$(STD_LIB_LDFLAGS) $(OPT_LDFLAGS)" gmic_lib
-@@ -315,6 +323,9 @@
+@@ -324,6 +332,9 @@
linux:
$(MAKE) "CFLAGS=$(STD_UNIX_CFLAGS) $(OPT_CFLAGS)" "LDFLAGS=$(STD_UNIX_LDFLAGS)" "STRIP_EXE=1" gmic_gmic
Modified: head/graphics/gimp-gmic-plugin/pkg-descr
==============================================================================
--- head/graphics/gimp-gmic-plugin/pkg-descr Fri Sep 20 13:27:44 2013 (r327702)
+++ head/graphics/gimp-gmic-plugin/pkg-descr Fri Sep 20 13:35:29 2013 (r327703)
@@ -9,4 +9,4 @@ G'MIC stands for GREYC's Magic Image Con
o The interactive plug-in gmic_gimp to bring G'MIC capabilities to the image
retouching software GIMP.
-WWW: http://gmic.sourceforge.net
+WWW: http://gmic.sourceforge.net/
More information about the svn-ports-head
mailing list