2002-02-16 09:13:28 +00:00
|
|
|
# New ports collection makefile for: gconf2
|
2000-06-29 19:26:07 +00:00
|
|
|
# Date created: 28th June 2000
|
|
|
|
# Whom: Ade Lovett <ade@FreeBSD.org>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
2008-03-24 03:52:36 +00:00
|
|
|
# $MCom: ports/devel/gconf2/Makefile,v 1.96 2008/03/10 16:25:56 ahze Exp $
|
2000-06-29 19:26:07 +00:00
|
|
|
#
|
|
|
|
|
2002-02-16 09:13:28 +00:00
|
|
|
PORTNAME= gconf2
|
2008-03-24 03:52:36 +00:00
|
|
|
PORTVERSION= 2.22.0
|
2007-10-24 23:37:25 +00:00
|
|
|
PORTREVISION?= 0
|
2000-06-29 19:26:07 +00:00
|
|
|
CATEGORIES= devel gnome
|
|
|
|
MASTER_SITES= ${MASTER_SITE_GNOME}
|
2006-04-30 00:47:21 +00:00
|
|
|
MASTER_SITE_SUBDIR= sources/GConf/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/}
|
2000-06-29 19:26:07 +00:00
|
|
|
DISTNAME= GConf-${PORTVERSION}
|
2002-02-16 09:13:28 +00:00
|
|
|
DIST_SUBDIR= gnome2
|
2000-06-29 19:26:07 +00:00
|
|
|
|
2001-05-11 16:36:50 +00:00
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
2003-03-07 06:14:21 +00:00
|
|
|
COMMENT= A configuration database system for GNOME
|
2000-06-29 19:26:07 +00:00
|
|
|
|
2002-02-11 23:50:59 +00:00
|
|
|
USE_BZIP2= yes
|
2006-05-10 03:33:33 +00:00
|
|
|
|
|
|
|
.if !defined(REFERENCE_PORT)
|
|
|
|
|
2000-06-29 19:26:07 +00:00
|
|
|
USE_GMAKE= yes
|
2006-04-30 00:47:21 +00:00
|
|
|
USE_GETTEXT= yes
|
2008-03-24 03:52:36 +00:00
|
|
|
USE_GNOME= gnomehier gnomehack orbit2 gtk20 libxml2 ltverhack \
|
|
|
|
referencehack intlhack
|
2006-09-04 23:12:28 +00:00
|
|
|
USE_LDCONFIG= yes
|
2005-11-05 04:53:48 +00:00
|
|
|
USE_AUTOTOOLS= libtool:15
|
Update to GNOME 2.4.0. For all the goodies on what's changed, known issues,
future plans, etc., please see http://www.gnome.org/start/2.4/.
This commit represents work done by adamw, bland, and myself as well as
many other contributers:
Koop Mast <einekoai@chello.nl>
Akifyev Sergey <asa@gascom.ru>
Franz Klammer <klammer@webonaut.com>
Øyvind Kolbu <oyvind@kebab.gaffel.nu>
Thomas E. Zander <riggs@rrr.de>
Jeremy Messenger <mezz7@cox.net>
Without these contirbuters, and our faithful users, GNOME 2.4.0 would not
be possible.
Please check the FreeBSD GNOME site for any FreeBSD gotchas, as well as
general FAQs and documentation (GNOME 2.4 updates to be posted soon). The
best way to upgrade so that you get all shared library dependencies is:
portupgrade -rf -m BATCH=yes atk
portupgrade -R -m BATCH=yes gnome2
Approved by: portmgr (kris, will, myself implicitly)
Requested by: re as well as many other users
2003-09-18 06:49:37 +00:00
|
|
|
CONFIGURE_ARGS= --with-html-dir=${PREFIX}/share/doc \
|
2007-07-23 09:36:51 +00:00
|
|
|
--disable-gtk-doc
|
2005-11-05 04:53:48 +00:00
|
|
|
# --enable-gconf-source=${PREFIX}/etc/gconf/schemas \
|
|
|
|
|
2000-06-29 19:26:07 +00:00
|
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
2002-02-16 09:13:28 +00:00
|
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
2004-04-05 03:11:39 +00:00
|
|
|
MAN1= gconftool-2.1
|
|
|
|
|
2005-11-05 04:53:48 +00:00
|
|
|
.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>
|
2006-05-10 03:33:33 +00:00
|
|
|
|
|
|
|
.endif
|