diff options
author | mezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-10-05 13:58:42 +0800 |
---|---|---|
committer | mezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-10-05 13:58:42 +0800 |
commit | 25b1b58a342af601e21cc08922fa9cc0ce8fad67 (patch) | |
tree | 7a62edb83ce088acc0e0100fde5051ba84d22eef /devel/glade3/Makefile | |
parent | 624108631b8403d87ffcbc77bc82ce27b9a32fee (diff) | |
download | marcuscom-ports-25b1b58a342af601e21cc08922fa9cc0ce8fad67.tar marcuscom-ports-25b1b58a342af601e21cc08922fa9cc0ce8fad67.tar.gz marcuscom-ports-25b1b58a342af601e21cc08922fa9cc0ce8fad67.tar.bz2 marcuscom-ports-25b1b58a342af601e21cc08922fa9cc0ce8fad67.tar.lz marcuscom-ports-25b1b58a342af601e21cc08922fa9cc0ce8fad67.tar.xz marcuscom-ports-25b1b58a342af601e21cc08922fa9cc0ce8fad67.tar.zst marcuscom-ports-25b1b58a342af601e21cc08922fa9cc0ce8fad67.zip |
Fix the dependency and plist by add ${HAVE_GNOME:Mlibgnomeui} and knob in
plist.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@7576 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'devel/glade3/Makefile')
-rw-r--r-- | devel/glade3/Makefile | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/devel/glade3/Makefile b/devel/glade3/Makefile index 5df31d846..de74f9ecc 100644 --- a/devel/glade3/Makefile +++ b/devel/glade3/Makefile @@ -3,11 +3,12 @@ # Whom: Koop Mast <kwm@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/devel/glade3/Makefile,v 1.16 2006/09/29 21:36:09 ahze Exp $ +# $MCom: ports/devel/glade3/Makefile,v 1.17 2006/10/02 04:52:51 bland Exp $ # PORTNAME= glade3 PORTVERSION= 3.0.2 +PORTREVISION= 1 CATEGORIES= devel gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} @@ -27,4 +28,14 @@ CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include" \ LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib" USE_LDCONFIG= yes -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${HAVE_GNOME:Mlibgnomeui}!="" +USE_GNOME+= libgnomeui +CONFIGURE_ARGS+=--enable-gnome +PKGNAMESUFFIX:= -gnome +.else +CONFIGURE_ARGS+=--disable-gnome +.endif + +.include <bsd.port.post.mk> |