summaryrefslogtreecommitdiffstats
path: root/devel/gconf2/Makefile
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2008-01-10 07:33:12 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2008-01-10 07:33:12 +0800
commit00f444504dc0036744d59e1984ed2d5d3e4dabbc (patch)
tree71b3e24bfaf0cd76fb6d2bea1c808ed28bae2313 /devel/gconf2/Makefile
parente5f0cecf2e0ccb5501be1f52431919ae81a082a7 (diff)
downloadmarcuscom-ports-00f444504dc0036744d59e1984ed2d5d3e4dabbc.tar
marcuscom-ports-00f444504dc0036744d59e1984ed2d5d3e4dabbc.tar.gz
marcuscom-ports-00f444504dc0036744d59e1984ed2d5d3e4dabbc.tar.bz2
marcuscom-ports-00f444504dc0036744d59e1984ed2d5d3e4dabbc.tar.lz
marcuscom-ports-00f444504dc0036744d59e1984ed2d5d3e4dabbc.tar.xz
marcuscom-ports-00f444504dc0036744d59e1984ed2d5d3e4dabbc.tar.zst
marcuscom-ports-00f444504dc0036744d59e1984ed2d5d3e4dabbc.zip
Update to 2.12.1.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@10037 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'devel/gconf2/Makefile')
-rw-r--r--devel/gconf2/Makefile60
1 files changed, 60 insertions, 0 deletions
diff --git a/devel/gconf2/Makefile b/devel/gconf2/Makefile
new file mode 100644
index 000000000..00fd6c250
--- /dev/null
+++ b/devel/gconf2/Makefile
@@ -0,0 +1,60 @@
+# New ports collection makefile for: gconf2
+# Date created: 28th June 2000
+# Whom: Ade Lovett <ade@FreeBSD.org>
+#
+# $FreeBSD$
+# $MCom: ports/devel/gconf2/Makefile,v 1.87 2007/10/15 14:17:14 ahze Exp $
+#
+
+PORTNAME= gconf2
+PORTVERSION= 2.21.1
+PORTREVISION?= 0
+CATEGORIES= devel gnome
+MASTER_SITES= ${MASTER_SITE_GNOME}
+MASTER_SITE_SUBDIR= sources/GConf/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/}
+DISTNAME= GConf-${PORTVERSION}
+DIST_SUBDIR= gnome2
+
+MAINTAINER= gnome@FreeBSD.org
+COMMENT= A configuration database system for GNOME
+
+USE_BZIP2= yes
+
+.if !defined(REFERENCE_PORT)
+
+USE_GMAKE= yes
+USE_GETTEXT= yes
+USE_XLIB= yes
+USE_GNOME= gnomehier gnomehack orbit2 gtk20 libxml2 linc ltverhack \
+ referencehack
+USE_LDCONFIG= yes
+USE_AUTOTOOLS= libtool:15
+CONFIGURE_ARGS= --with-html-dir=${PREFIX}/share/doc \
+ --disable-gtk-doc
+# --enable-gconf-source=${PREFIX}/etc/gconf/schemas \
+
+CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
+ LDFLAGS="-L${LOCALBASE}/lib"
+MAN1= gconftool-2.1
+
+.include <bsd.port.pre.mk>
+
+.if defined(WITH_LDAP) || exists(${LOCALBASE}/include/ldap.h)
+USE_OPENLDAP= yes
+
+PLIST_SUB+= LDAP=""
+.else
+PLIST_SUB+= LDAP="@comment "
+.endif
+
+pre-everything::
+.if !defined(WITH_LDAP)
+ @${ECHO_MSG}
+ @${ECHO_MSG} "You can enable ldap support by defining"
+ @${ECHO_MSG} "WITH_LDAP"
+ @${ECHO_MSG}
+.endif
+
+.include <bsd.port.post.mk>
+
+.endif