b5f66dee8e
some ports, that expect standard Magick symbols to be present (that is revert revision 1.6). Redefine only the GetToken symbol instead just to get rid of ports/94905 - Use correct path for windows fonts [1] - Add a knob to depend on windows fonts conditionally. PR: ports/114036 [1] Submitted by: Roderick van Domburg <r.s.a.vandomburg@nedforce.nl>
87 lines
2.2 KiB
Makefile
87 lines
2.2 KiB
Makefile
# New ports collection makefile for: GraphicsMagick
|
|
# Date created: 25 july 2005
|
|
# Whom: Ron van Daal
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= GraphicsMagick
|
|
PORTVERSION= 1.1.7
|
|
PORTREVISION= 2
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \
|
|
ftp://ftp.graphicsmagick.org/pub/GraphicsMagick/
|
|
MASTER_SITE_SUBDIR= ${PORTNAME:L}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Fast image processing tools based on ImageMagick
|
|
|
|
LIB_DEPENDS= freetype:${PORTSDIR}/print/freetype2 \
|
|
jbig:${PORTSDIR}/graphics/jbigkit \
|
|
wmf:${PORTSDIR}/graphics/libwmf \
|
|
xml2:${PORTSDIR}/textproc/libxml2
|
|
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
|
|
|
|
# Use libfpx only on i386. On other systems it does not seem to work :-(
|
|
OPTIONS+= FPX "Build FPX backend -- broken on non-i386 systems" \
|
|
${ARCH:S,i386,on,:C,^[^o].*,off,}
|
|
|
|
USE_AUTOTOOLS= libtool:15
|
|
USE_BZIP2= yes
|
|
USE_GHOSTSCRIPT=yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
MAN1= GraphicsMagick++-config.1 \
|
|
GraphicsMagick-config.1 \
|
|
GraphicsMagickWand-config.1 \
|
|
gm.1
|
|
MAN4= miff.4
|
|
MAN5= quantize.5
|
|
|
|
.ifndef WINDOWS_FONT_DIR
|
|
# Use fonts installed by x11-fonts/webfonts by default
|
|
WINDOWS_FONT_DIR=${X11BASE}/lib/X11/fonts/webfonts
|
|
.endif
|
|
|
|
CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
CONFIGURE_ARGS= --without-perl --enable-shared --enable-static \
|
|
--without-threads
|
|
USE_LDCONFIG= yes
|
|
|
|
.if defined(WITH_WINDOWS_FONT_DIR)
|
|
CONFIGURE_ARGS+= --with-windows-font-dir="${WINDOWS_FONT_DIR}"
|
|
.endif
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
INSTALL_TARGET= install install-data-html
|
|
.endif
|
|
CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
# Perl and Tcl APIs will be installed by separate ports
|
|
PLIST_SUB+= WITH_PERL="@comment "
|
|
|
|
.if defined(WITHOUT_X11)
|
|
PKGNAMESUFFIX+= -nox11
|
|
CONFIGURE_ARGS+=--without-x
|
|
.endif
|
|
|
|
.if defined(WITH_FPX)
|
|
LIB_DEPENDS+= fpx:${PORTSDIR}/graphics/libfpx
|
|
.else
|
|
CONFIGURE_ARGS+=--without-fpx
|
|
.endif
|
|
|
|
.if defined(WITH_Q8BIT) || defined(WITHOUT_GRAPHICSMAGICK_16BIT_PIXEL)
|
|
CONFIGURE_ARGS+= --with-quantum-depth=8
|
|
PLIST_SUB+= Q=8
|
|
.else
|
|
CONFIGURE_ARGS+= --with-quantum-depth=16
|
|
PLIST_SUB+= Q=16
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|