diff options
author | bapt <bapt@FreeBSD.org> | 2013-05-06 23:18:38 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-05-06 23:18:38 +0800 |
commit | 1a690bacd9585a99a155a2f741cff79b443b6523 (patch) | |
tree | c7e91489b0dba2b35a29ac169022f6d1f2d0ecb0 /irc/smuxi | |
parent | d7700830d846aa135f6cc2d27c2ad15d2c795b13 (diff) | |
download | freebsd-ports-gnome-1a690bacd9585a99a155a2f741cff79b443b6523.tar.gz freebsd-ports-gnome-1a690bacd9585a99a155a2f741cff79b443b6523.tar.zst freebsd-ports-gnome-1a690bacd9585a99a155a2f741cff79b443b6523.zip |
Convert from WITHOUT_NLS to PORT_OPTIONS:MNLS
Diffstat (limited to 'irc/smuxi')
-rw-r--r-- | irc/smuxi/Makefile | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/irc/smuxi/Makefile b/irc/smuxi/Makefile index ec7524809f44..0dda7f671dd3 100644 --- a/irc/smuxi/Makefile +++ b/irc/smuxi/Makefile @@ -1,9 +1,5 @@ -# New ports collection makefile for: smuxi -# Date created: 2009-04-27 -# Whom: Romain Tartiere <romain@blogreen.org> -# +# Created by: Romain Tartiere <romain@blogreen.org> # $FreeBSD$ -# PORTNAME= smuxi PORTVERSION= 0.8 @@ -29,7 +25,9 @@ post-patch: 's|@libdir@/pkgconfig|@prefix@/libdata/pkgconfig|g ; \ s|@libdir@/locale|@prefix@/share/locale|g' -.if !defined(WITHOUT_NLS) +.include <bsd.port.options.mk> + +.if ${PORT_OPTIONS:MNLS} USES+= gettext PLIST_SUB+= NLS="" .else |