summaryrefslogtreecommitdiffstats
path: root/print/libgnomeprint/Makefile
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2003-11-13 01:48:40 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2003-11-13 01:48:40 +0800
commit7816762f6b8b0462f168344d5b282df1fabac59a (patch)
tree5fabac49a7118433bfbbd35e97ce7226daf149b2 /print/libgnomeprint/Makefile
parent4d88867911b457755c3dca39fea9824ca4bfcc22 (diff)
downloadmarcuscom-ports-7816762f6b8b0462f168344d5b282df1fabac59a.tar
marcuscom-ports-7816762f6b8b0462f168344d5b282df1fabac59a.tar.gz
marcuscom-ports-7816762f6b8b0462f168344d5b282df1fabac59a.tar.bz2
marcuscom-ports-7816762f6b8b0462f168344d5b282df1fabac59a.tar.lz
marcuscom-ports-7816762f6b8b0462f168344d5b282df1fabac59a.tar.xz
marcuscom-ports-7816762f6b8b0462f168344d5b282df1fabac59a.tar.zst
marcuscom-ports-7816762f6b8b0462f168344d5b282df1fabac59a.zip
Update to 2.5.0.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@1315 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'print/libgnomeprint/Makefile')
-rw-r--r--print/libgnomeprint/Makefile54
1 files changed, 54 insertions, 0 deletions
diff --git a/print/libgnomeprint/Makefile b/print/libgnomeprint/Makefile
new file mode 100644
index 000000000..afed200dc
--- /dev/null
+++ b/print/libgnomeprint/Makefile
@@ -0,0 +1,54 @@
+# New ports collection makefile for: libgnomeprint
+# Date created: 15 Jan 1999
+# Whom: Vanilla I. Shu <vanilla@FreeBSD.org>
+#
+# $FreeBSD: ports/print/libgnomeprint/Makefile,v 1.75 2003/10/28 16:31:33 bland Exp $
+#
+
+PORTNAME= libgnomeprint
+PORTVERSION= 2.5.0
+CATEGORIES= print gnome
+MASTER_SITES= ${MASTER_SITE_GNOME}
+MASTER_SITE_SUBDIR= sources/${PORTNAME}/2.5
+DIST_SUBDIR= gnome2
+
+MAINTAINER= gnome@FreeBSD.org
+COMMENT= Gnome print support library
+
+USE_BZIP2= yes
+USE_X_PREFIX= yes
+USE_GMAKE= yes
+USE_REINPLACE= yes
+USE_GNOME= gnomeprefix gnomehack gnomehier libbonobo libartlgpl2 gtk20
+INSTALLS_SHLIB= yes
+USE_LIBTOOL= yes
+CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
+ LDFLAGS="-L${LOCALBASE}/lib"
+
+PLIST_SUB= VERSION=${PORTVERSION}
+
+.include <bsd.port.pre.mk>
+
+.if exists(${LOCALBASE}/lib/libcups.so)
+WITH_CUPS= yes
+.endif
+
+.if defined(WITH_CUPS) && !defined(WITHOUT_CUPS)
+CONFIGURE_ARGS+= --with-cups
+LIB_DEPENDS+= cups.2:${PORTSDIR}/print/cups-base
+PLIST_SUB+= CUPS:=""
+.else
+CONFIGURE_ARGS+= --without-cups
+PLIST_SUB+= CUPS:="@comment "
+.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
+
+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>