diff options
Diffstat (limited to 'graphics/GraphicsMagick13/Makefile')
-rw-r--r-- | graphics/GraphicsMagick13/Makefile | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/graphics/GraphicsMagick13/Makefile b/graphics/GraphicsMagick13/Makefile index 7148f45f5625..b47981dce267 100644 --- a/graphics/GraphicsMagick13/Makefile +++ b/graphics/GraphicsMagick13/Makefile @@ -6,25 +6,25 @@ # PORTNAME= GraphicsMagick -PORTVERSION= 1.1.12 +PORTVERSION= 1.2.3 CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ ftp://ftp.graphicsmagick.org/pub/GraphicsMagick/ MASTER_SITE_SUBDIR= ${PORTNAME:L} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= glarkin@sourcehosting.net COMMENT= Fast image processing tools based on ImageMagick LIB_DEPENDS= freetype:${PORTSDIR}/print/freetype2 \ fpx.[2-9]:${PORTSDIR}/graphics/libfpx \ jbig:${PORTSDIR}/graphics/jbigkit \ wmflite:${PORTSDIR}/graphics/libwmf \ - xml2:${PORTSDIR}/textproc/libxml2 + xml2:${PORTSDIR}/textproc/libxml2 \ + ltdl:${PORTSDIR}/devel/libltdl15 OTHERGRAPHICS= jasper jpeg lcms png tiff LIB_DEPENDS+= ${OTHERGRAPHICS:C|(.+)|\1:${PORTSDIR}/graphics/\1|} -OPTIONS= Q8BIT "Use 8-bit pixels (speed) instead of 16 (quality)" off - -OPTIONS+= TESTS "Run bundled self-tests after build" on +OPTIONS= Q8BIT "Use 8-bit pixels (speed) instead of 16 (quality)" off \ + TESTS "Run bundled self-tests after build" on USE_ICONV= yes USE_AUTOTOOLS= libtool:15 @@ -46,13 +46,10 @@ WINDOWS_FONT_DIR=${LOCALBASE}/lib/X11/fonts/webfonts CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL} CONFIGURE_ARGS= --without-perl --enable-shared --enable-static \ - --without-threads + --without-threads --with-ltdl-include=${LOCALBASE}/include \ + --with-ltdl-lib=${LOCALBASE}/lib USE_LDCONFIG= yes -.if defined(WITH_WINDOWS_FONT_DIR) -CONFIGURE_ARGS+= --with-windows-font-dir="${WINDOWS_FONT_DIR}" -.endif - ALL_TARGET= -j`${SYSCTL} -n hw.ncpu` .if !defined(NOPORTDOCS) @@ -66,8 +63,9 @@ test check: .include <bsd.port.pre.mk> -# Perl and Tcl APIs will be installed by separate ports -PLIST_SUB+= WITH_PERL="@comment " +.if defined(WITH_WINDOWS_FONT_DIR) +CONFIGURE_ARGS+= --with-windows-font-dir="${WINDOWS_FONT_DIR}" +.endif .if defined(WITHOUT_X11) PKGNAMESUFFIX+= -nox11 |