diff options
author | ak <ak@FreeBSD.org> | 2013-04-25 02:10:30 +0800 |
---|---|---|
committer | ak <ak@FreeBSD.org> | 2013-04-25 02:10:30 +0800 |
commit | bd9e313d10d3c51dbd0716acbbf2cbcd4b33000e (patch) | |
tree | 5883afe298a5f232e854b104fc944ca19c4f7e7f /irc | |
parent | 2e4755fb165fc85b66abbd26d0129a688b4273da (diff) | |
download | freebsd-ports-gnome-bd9e313d10d3c51dbd0716acbbf2cbcd4b33000e.tar.gz freebsd-ports-gnome-bd9e313d10d3c51dbd0716acbbf2cbcd4b33000e.tar.zst freebsd-ports-gnome-bd9e313d10d3c51dbd0716acbbf2cbcd4b33000e.zip |
- Convert USE_GETTEXT to USES (part 3)
Approved by: portmgr (bapt)
Diffstat (limited to 'irc')
-rw-r--r-- | irc/dxirc/Makefile | 2 | ||||
-rw-r--r-- | irc/smuxi/Makefile | 2 | ||||
-rw-r--r-- | irc/xchat/Makefile | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/irc/dxirc/Makefile b/irc/dxirc/Makefile index 90aee392ec14..09c7deac694f 100644 --- a/irc/dxirc/Makefile +++ b/irc/dxirc/Makefile @@ -35,7 +35,7 @@ PORTDOCS= README CONFIGURE_ARGS+= --disable-nls PLIST_SUB+= NLS="@comment " .else -USE_GETTEXT= yes +USES+= gettext PLIST_SUB+= NLS="" .endif diff --git a/irc/smuxi/Makefile b/irc/smuxi/Makefile index faa4816428df..ec7524809f44 100644 --- a/irc/smuxi/Makefile +++ b/irc/smuxi/Makefile @@ -30,7 +30,7 @@ post-patch: s|@libdir@/locale|@prefix@/share/locale|g' .if !defined(WITHOUT_NLS) -USE_GETTEXT= yes +USES+= gettext PLIST_SUB+= NLS="" .else CONFIGURE_ARGS+=--disable-nls diff --git a/irc/xchat/Makefile b/irc/xchat/Makefile index e5925bfbc2ac..c58f4411b4e0 100644 --- a/irc/xchat/Makefile +++ b/irc/xchat/Makefile @@ -19,7 +19,7 @@ CONFLICTS= xchat-1* xchat-systray-plugin-[0-9]* USE_BZIP2= yes USE_GMAKE= yes -USE_GETTEXT= yes +USES= gettext USE_GNOME= gnomehack gtk20 GNU_CONFIGURE= yes CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" |