mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
56 lines
1.2 KiB
Makefile
56 lines
1.2 KiB
Makefile
# Created by: Ade Lovett <ade@lovett.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gdk-pixbuf
|
|
PORTVERSION= 2.36.11
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= GNOME
|
|
PKGNAMESUFFIX= 2
|
|
DIST_SUBDIR= gnome2
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= Graphic library for GTK+
|
|
|
|
LICENSE= LGPL20+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= cpe gmake gnome libtool localbase pathfix pkgconfig \
|
|
shared-mime-info tar:xz
|
|
USE_XORG= xt xi x11
|
|
CPE_VENDOR= gnome
|
|
USE_GNOME+= glib20 introspection:build
|
|
USE_LDCONFIG= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --enable-introspection=yes --with-x11
|
|
INSTALL_TARGET= install-strip
|
|
|
|
OPTIONS_SUB= yes
|
|
OPTIONS_DEFINE= JASPER JPEG PNG TIFF NLS
|
|
OPTIONS_DEFAULT=JASPER JPEG PNG TIFF
|
|
|
|
JASPER_CONFIGURE_WITH= libjasper
|
|
JASPER_LIB_DEPENDS= libjasper.so:graphics/jasper
|
|
|
|
JPEG_CONFIGURE_WITH= libjpeg
|
|
JPEG_USES= jpeg
|
|
|
|
PNG_CONFIGURE_WITH= libpng
|
|
PNG_LIB_DEPENDS= libpng.so:graphics/png
|
|
|
|
TIFF_CONFIGURE_WITH= libtiff
|
|
TIFF_LIB_DEPENDS= libtiff.so:graphics/tiff
|
|
|
|
NLS_CONFIGURE_ENABLE= nls
|
|
NLS_USES= gettext
|
|
|
|
# workaround tiff enable bug in configure
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|$$LIBTIFF|$$TIFF_LIBS|' \
|
|
${WRKSRC}/configure
|
|
|
|
post-install:
|
|
@cd ${WRKSRC}/docs/reference/gdk-pixbuf && \
|
|
${SETENV} DESTDIR=${STAGEDIR} ${GMAKE} install-man1
|
|
|
|
.include <bsd.port.mk>
|