diff options
author | olivierd <olivierd@FreeBSD.org> | 2012-08-10 03:29:22 +0800 |
---|---|---|
committer | olivierd <olivierd@FreeBSD.org> | 2012-08-10 03:29:22 +0800 |
commit | 37eb189a09dd84b8d6fa6cb8f2a54a09b6ad5c9b (patch) | |
tree | dd268ad252cce7f12dd5d443d576e28c92ba9afe /sysutils | |
parent | 582f36a09d25578f50dbc2b603442896a2e2413b (diff) | |
download | freebsd-ports-gnome-37eb189a09dd84b8d6fa6cb8f2a54a09b6ad5c9b.tar.gz freebsd-ports-gnome-37eb189a09dd84b8d6fa6cb8f2a54a09b6ad5c9b.tar.zst freebsd-ports-gnome-37eb189a09dd84b8d6fa6cb8f2a54a09b6ad5c9b.zip |
- Use USE_PKGCONFIG macro
- Add patch when NLS is unset
- Remove USE_AUTOTOOLS (libtool) macro
Submitted by: myself
Approved by: miwi, rene (mentors)
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/garcon/Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/sysutils/garcon/Makefile b/sysutils/garcon/Makefile index 035566b4567c..b150081ad33d 100644 --- a/sysutils/garcon/Makefile +++ b/sysutils/garcon/Makefile @@ -7,6 +7,7 @@ PORTNAME= garcon PORTVERSION= 0.2.0 +PORTREVISION= 1 CATEGORIES= sysutils xfce MASTER_SITES= ${MASTER_SITE_XFCE} DIST_SUBDIR= xfce4 @@ -14,12 +15,12 @@ DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org COMMENT= Xfce 4 essential utilities and scripts -USE_AUTOTOOLS= libtool GNU_CONFIGURE= yes USE_BZIP2= yes USE_GMAKE= yes -USE_GNOME= gnomehack glib20 intltool intlhack pkgconfig +USE_GNOME= gnomehack glib20 intltool intlhack USE_XFCE= configenv libutil +USE_PKGCONFIG= build CONFIGURE_ARGS+=--disable-gtk-doc-html @@ -44,4 +45,9 @@ CONFIGURE_ARGS+=--without-html-dir PLIST_SUB+= APIDOCS="@comment " .endif +.if empty(PORT_OPTIONS:MNLS) +post-patch: + @${REINPLACE_CMD} -e 's| po||' ${WRKSRC}/Makefile.in +.endif + .include <bsd.port.mk> |