freebsd-ports/graphics/gegl3/Makefile
Jason E. Hale 70e33ecd6f - Update graphics/libraw to 0.18.0
- Complete conversion to options helpers
- Add options for JPEG and JASPER support
  - Side note: This had a dependency on jpeg before, so the JPEG
    option default is ON. However, the configure script wasn't
    detecting it previously.
- Silence MKDIRs
- Take maintainership
- Chase shared library bump

Changes:	http://www.libraw.org/download#changelog
2017-01-19 04:39:37 +00:00

159 lines
4.3 KiB
Makefile

# Created by: Pietro Cerutti <gahr@FreeBSD.org>
# $FreeBSD$
PORTNAME= gegl
PORTVERSION= 0.3.4
PORTREVISION= 5
CATEGORIES= graphics
MASTER_SITES= GIMP
PKGNAMESUFFIX= 3
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:S/.a1//}
MAINTAINER= gnome@FreeBSD.org
COMMENT= Graph based image processing framework
LICENSE= BSD3CLAUSE GPLv3+ LGPL3+
LICENSE_COMB= multi
LICENSE_FILE_GPLv3+ = ${WRKSRC}/COPYING
LICENSE_FILE_LGPL3+ = ${WRKSRC}/COPYING.LESSER
LIB_DEPENDS= libbabl-0.1.so:x11/babl \
libjson-glib-1.0.so:devel/json-glib
USES= cpe gettext gmake libtool pathfix pkgconfig shebangfix tar:bzip2
USE_GNOME= glib20 intltool introspection:build
USE_LDCONFIG= yes
GNU_CONFIGURE= yes
CONFIGURE_ENV= ac_cv_header_execinfo_h=no
CONFIGURE_ARGS= --without-vala --disable-docs
CONFIGURE_ARGS+=--without-mrg
INSTALL_TARGET= install-strip
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
GEGL_MINOR= 304
GEGL_VER= 0.3
PLIST_SUB+= GEGL_MINOR="${GEGL_MINOR}" GEGL_VER=${GEGL_VER}
EXAMPLES= 2geglbuffer \
gegl-convert gegl-slicer geglbuffer-add-image \
geglbuffer-clock hello-world sdl-draw
SHEBANG_FILES= tools/xml_insert.sh
OPTIONS_SUB= yes
OPTIONS_DEFINE= CAIRO ENSCRIPT EXIV2 FFMPEG PIXBUF GRAPHVIZ JASPER JPEG \
LUA OPENEXR RAW PANGO PNG LIBRSVG2 SDL SPIRO V4L \
EXAMPLES LCMS2 WEBP TIFF GEXIV2
OPTIONS_DEFAULT=CAIRO ENSCRIPT EXIV2 PIXBUF GRAPHVIZ JASPER JPEG LCMS2 LUA \
OPENEXR RAW PANGO PNG LIBRSVG2 SDL SPIRO V4L WEBP TIFF
ENSCRIPT_DESC= Enscript support
SPIRO_DESC= Spiro support
#UMFPACK_DESC= UMFpack support
GEXIV2_DESC= EXIF and IPTC metadata support via gexiv2
PIXBUF_USE= GNOME=gdkpixbuf2
PIXBUF_CONFIGURE_WITH= gdk-pixbuf
CAIRO_USE= GNOME=cairo
CAIRO_CONFIGURE_WITH= cairo
PANGO_USE= GNOME=pango
PANGO_CONFIGURE_WITH= pango
ENSCRIPT_BUILD_DEPENDS= enscript:print/enscript-a4
FFMPEG_LIB_DEPENDS= libavformat.so:multimedia/ffmpeg
FFMPEG_CONFIGURE_WITH= libavformat
GRAPHVIZ_LIB_DEPENDS= libcgraph.so:graphics/graphviz
GRAPHVIZ_CONFIGURE_WITH= graphviz
JASPER_LIB_DEPENDS= libjasper.so:graphics/jasper
JASPER_CONFIGURE_WITH= jasper
JPEG_USES= jpeg
JPEG_CONFIGURE_WITH= libjpeg
LCMS2_LIB_DEPENDS= liblcms2.so:graphics/lcms2
LCMS2_CONFIGURE_WITH= lcms
LUA_USES= lua
LUA_CONFIGURE_WITH= lua
OPENEXR_LIB_DEPENDS= libIlmImf.so:graphics/OpenEXR
OPENEXR_CONFIGURE_WITH= openexr
RAW_LIB_DEPENDS= libraw.so:graphics/libraw
RAW_CONFIGURE_WITH= libraw
PNG_LIB_DEPENDS= libpng.so:graphics/png
PNG_CONFIGURE_WITH= libpng
LIBRSVG2_USE= GNOME=librsvg2
LIBRSVG2_CONFIGURE_WITH= librsvg
SDL_USE= SDL=sdl
SDL_CONFIGURE_WITH= sdl
SPIRO_LIB_DEPENDS= libspiro.so:graphics/libspiro
SPIRO_CONFIGURE_WITH= libspiro
V4L_BUILD_DEPENDS= v4l_compat>=0:multimedia/v4l_compat
V4L_LIB_DEPENDS= libv4l2.so:multimedia/libv4l
V4L_CONFIGURE_WITH= libv4l
V4L_VARS= LICENSE+=LGPL20+
WEBP_LIB_DEPENDS= libwebp.so:graphics/webp
WEBP_CONFIGURE_WITH= webp
# UMFPACK has two "problems"
# 1) it build with port gcc 2) needed libs aren't recorded in the libraries.
#UMFPACK_LIB_DEPENDS= libumfpack.so:math/suitesparse
#UMFPACK_CONFIGURE_WITH= umfpack
CONFIGURE_ARGS+= --without-umfpack
EXIV2_LIB_DEPENDS= libexiv2.so:graphics/exiv2
EXIV2_CONFIGURE_WITH= exiv2
GEXIV2_LIB_DEPENDS= libgexiv2.so:graphics/gexiv2
GEXIV2_CONFIGURE_WITH= gexiv2
TIFF_LIB_DEPENDS= libtiff.so:graphics/tiff
TIFF_CONFIGURE_WITH= libtiff
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MPANGO} && ${PORT_OPTIONS:MCAIRO}
PLIST_SUB+= PANGOCAIRO=""
.else
CONFIGURE_ARGS+=--without-pangocairo
PLIST_SUB+= PANGOCAIRO="@comment "
.endif
post-patch:
${REINPLACE_CMD} "s/lua >/lua-${LUA_VER} >/g" ${WRKSRC}/configure
.if ! ${PORT_OPTIONS:MEXAMPLES}
${REINPLACE_CMD} -e 's|tools examples|tools|g' \
${WRKSRC}/Makefile.in
.endif
${REINPLACE_CMD} -e 's|\(lua\)\(5\.1\)|\1-\2|g ; s|x86_64|amd64|g' \
${WRKSRC}/configure
post-install:
.if ${PORT_OPTIONS:MEXAMPLES}
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/data
${INSTALL_DATA} ${WRKSRC}/examples/data/surfer.png ${STAGEDIR}${EXAMPLESDIR}/data
.for ex in ${EXAMPLES}
${INSTALL_DATA} ${WRKSRC}/examples/${ex}.c ${STAGEDIR}${EXAMPLESDIR}
.endfor
# temporary hacks to allow parallel install
@${MV} ${STAGEDIR}${PREFIX}/share/examples/gegl \
${STAGEDIR}${PREFIX}/share/examples/gegl3
.endif
# temporary hacks to allow parallel install
@${MV} ${STAGEDIR}${PREFIX}/bin/gegl ${STAGEDIR}${PREFIX}/bin/gegl3
.include <bsd.port.mk>