summaryrefslogtreecommitdiffstats
path: root/print/libgnomeprint/Makefile
diff options
context:
space:
mode:
authormezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059>2006-07-23 09:24:05 +0800
committermezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059>2006-07-23 09:24:05 +0800
commit8267d4c53e3e371219678d476e3624d4fb60e02c (patch)
treea4f4875cc9168fe59f71d3abd5541de6ebbb487c /print/libgnomeprint/Makefile
parent9571367e72d11272dc7a29dbdea31582b6fd9b53 (diff)
downloadmarcuscom-ports-8267d4c53e3e371219678d476e3624d4fb60e02c.tar
marcuscom-ports-8267d4c53e3e371219678d476e3624d4fb60e02c.tar.gz
marcuscom-ports-8267d4c53e3e371219678d476e3624d4fb60e02c.tar.bz2
marcuscom-ports-8267d4c53e3e371219678d476e3624d4fb60e02c.tar.lz
marcuscom-ports-8267d4c53e3e371219678d476e3624d4fb60e02c.tar.xz
marcuscom-ports-8267d4c53e3e371219678d476e3624d4fb60e02c.tar.zst
marcuscom-ports-8267d4c53e3e371219678d476e3624d4fb60e02c.zip
USE_X_PREFIX -> USE_XLIB, bump the PORTREVISION.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@6701 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'print/libgnomeprint/Makefile')
-rw-r--r--print/libgnomeprint/Makefile71
1 files changed, 71 insertions, 0 deletions
diff --git a/print/libgnomeprint/Makefile b/print/libgnomeprint/Makefile
new file mode 100644
index 000000000..721e35340
--- /dev/null
+++ b/print/libgnomeprint/Makefile
@@ -0,0 +1,71 @@
+# New ports collection makefile for: libgnomeprint
+# Date created: 15 Jan 1999
+# Whom: Vanilla I. Shu <vanilla@FreeBSD.org>
+#
+# $FreeBSD$
+# $MCom$
+#
+
+PORTNAME= libgnomeprint
+PORTVERSION= 2.12.1
+PORTREVISION?= 3
+CATEGORIES= print gnome
+MASTER_SITES= ${MASTER_SITE_GNOME}
+MASTER_SITE_SUBDIR= sources/${PORTNAME}/2.12
+DIST_SUBDIR= gnome2
+
+MAINTAINER= gnome@FreeBSD.org
+COMMENT= Gnome print support library
+
+USE_BZIP2= yes
+
+.if !defined(REFERENCE_PORT)
+
+LIB_DEPENDS= fontconfig.1:${PORTSDIR}/x11-fonts/fontconfig \
+ popt.0:${PORTSDIR}/devel/popt
+
+USE_BISON= yes
+USE_GMAKE= yes
+USE_GNOME= gnomeprefix intlhack gnomehack gnomehier glib20 pango libxml2 \
+ libartlgpl2 ltverhack
+USE_GETTEXT= yes
+USE_XLIB= yes
+INSTALLS_SHLIB= yes
+USE_AUTOTOOLS= libtool:15
+CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
+ LDFLAGS="-L${LOCALBASE}/lib"
+
+PLIST_SUB= VERSION=${PORTVERSION} \
+ LIBVERSION=2.2
+
+.include <bsd.port.pre.mk>
+
+.if defined(WITH_CUPS) || exists(${LOCALBASE}/lib/libcups.so)
+CONFIGURE_ARGS+= --with-cups
+LIB_DEPENDS+= gnomecups-1.0:${PORTSDIR}/print/libgnomecups
+PLIST_SUB+= CUPS:=""
+.else
+CONFIGURE_ARGS+= --without-cups
+PLIST_SUB+= CUPS:="@comment "
+.endif
+
+pre-everything::
+.if !defined(WITH_CUPS)
+ @${ECHO_MSG} " Enable cups support by defining"
+ @${ECHO_MSG} " WITH_CUPS"
+ @${ECHO_MSG} ""
+.endif
+
+post-patch:
+ @${FIND} ${WRKSRC} -name '*.[ch]' | ${XARGS} ${REINPLACE_CMD} -e \
+ 's|<malloc[.]h>|<stdlib.h>|'
+ @${REINPLACE_CMD} -e "/^SUBDIRS =/s|tests||" ${WRKSRC}/Makefile.in
+ @${REINPLACE_CMD} -e "/^SUBDIRS =/s|doc||" ${WRKSRC}/Makefile.in
+
+post-install:
+ @${MKDIR} ${PREFIX}/etc/gnome/libgnomeprint-2.0/fonts
+ @${TOUCH} ${PREFIX}/etc/gnome/libgnomeprint-2.0/fonts/gnome-print.fontmap
+
+.include <bsd.port.post.mk>
+
+.endif