75 lines
2.1 KiB
Makefile
75 lines
2.1 KiB
Makefile
COMMENT= image processing tools with stable ABI
|
|
|
|
DISTNAME= GraphicsMagick-1.3.38
|
|
CATEGORIES= graphics devel
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=graphicsmagick/}
|
|
EXTRACT_SUFX= .tar.xz
|
|
|
|
SHARED_LIBS= GraphicsMagick 9.2 \
|
|
GraphicsMagick++ 6.0 \
|
|
GraphicsMagickWand 4.0
|
|
|
|
HOMEPAGE= http://www.graphicsmagick.org/
|
|
|
|
MAINTAINER= Brad Smith <brad@comstyle.com>
|
|
|
|
# http://www.graphicsmagick.org/www/Copyright.html
|
|
PERMIT_PACKAGE= Yes
|
|
|
|
WANTLIB += ${COMPILER_LIBCXX} ICE SM X11 Xau Xdmcp Xext aom bz2 c
|
|
WANTLIB += dav1d de265 freetype heif iconv jasper jbig jpeg lcms2
|
|
WANTLIB += ltdl lzma m png tiff webp webpmux wmflite-0.2 x265 xcb
|
|
WANTLIB += xml2 z zstd
|
|
|
|
WANTLIB += perl # uses perl ABI
|
|
|
|
COMPILER = base-clang ports-gcc
|
|
|
|
LIB_DEPENDS= archivers/bzip2 \
|
|
archivers/xz \
|
|
archivers/zstd \
|
|
converters/libiconv \
|
|
devel/libtool,-ltdl \
|
|
graphics/jasper \
|
|
graphics/jbigkit \
|
|
graphics/lcms2 \
|
|
graphics/libwebp \
|
|
graphics/libwmf \
|
|
graphics/png \
|
|
graphics/tiff \
|
|
multimedia/libheif \
|
|
textproc/libxml
|
|
RUN_DEPENDS= print/ghostscript/gnu \
|
|
print/transfig
|
|
BUILD_DEPENDS= ${RUN_DEPENDS}
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS+= --enable-shared \
|
|
--with-gs-font-dir=${LOCALBASE}/share/fonts/ghostscript \
|
|
--with-ltdl-include=${LOCALBASE}/include \
|
|
--with-ltdl-lib=${LOCALBASE}/lib \
|
|
--with-modules \
|
|
--with-perl \
|
|
--with-quantum-depth=16 \
|
|
--without-dps \
|
|
--without-trio \
|
|
--disable-ltdl-install \
|
|
--disable-openmp
|
|
CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${WRKBUILD}/magick/.libs -L${WRKBUILD}/wand/.libs -L${LOCALBASE}/lib" \
|
|
ac_cv_path_LaunchDelegate=no
|
|
|
|
post-build:
|
|
@cd ${WRKBUILD}/PerlMagick && perl Makefile.PL && \
|
|
sed -i s,'^LDLOADLIBS = ','LDLOADLIBS = -lGraphicsMagick ', \
|
|
Makefile && ${MAKE} ${MAKE_FLAGS}
|
|
|
|
post-install:
|
|
@cd ${WRKBUILD}/PerlMagick && ${MAKE} ${MAKE_FLAGS} ${FAKE_TARGET}
|
|
@perl -pi -e s,'-L${WRKBUILD}/(magick|wand)/.libs','',g \
|
|
${PREFIX}/bin/GraphicsMagick++-config \
|
|
${PREFIX}/bin/GraphicsMagick-config
|
|
@find ${PREFIX}/lib/GraphicsMagick/modules-Q16 -name '*.a' -delete
|
|
|
|
.include <bsd.port.mk>
|