diff options
author | Carlos J. Puga Medina <cpm@FreeBSD.org> | 2017-10-09 22:18:22 +0000 |
---|---|---|
committer | Carlos J. Puga Medina <cpm@FreeBSD.org> | 2017-10-09 22:18:22 +0000 |
commit | 5bbe87e06fc940227afc66ced55fdd593084e35e (patch) | |
tree | a6af8154ddf92f85fa80a02bc2a51437efc38caa /math/pspp | |
parent | 8b93d1312e2dcc45e47626732fded85c63c68d05 (diff) | |
download | freebsd-ports-5bbe87e06fc940227afc66ced55fdd593084e35e.zip |
math/pspp: fix NLS option
- Fix USES=gettext-* when NLS option is not set
- Bump PORTREVISION
PR: 222831
Reported by: Miroslav Lachman <000.fbsd@quip.cz>
MFH: 2017Q4 (blanket)
Diffstat (limited to 'math/pspp')
-rw-r--r-- | math/pspp/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/math/pspp/Makefile b/math/pspp/Makefile index 5326c12a4840..b97e4aaf0d68 100644 --- a/math/pspp/Makefile +++ b/math/pspp/Makefile @@ -3,6 +3,7 @@ PORTNAME= pspp PORTVERSION= 1.0.1 +PORTREVISION= 1 CATEGORIES= math MASTER_SITES= GNU @@ -15,7 +16,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= texinfo>0:print/texinfo LIB_DEPENDS= libgslcblas.so:math/gsl -USES= charsetfix gmake iconv localbase libtool perl5 pkgconfig readline +USES= charsetfix gettext-tools gmake iconv localbase libtool perl5 pkgconfig readline USE_GNOME= libxml2 USE_PERL5= build GNU_CONFIGURE= yes @@ -41,8 +42,8 @@ GUI_VARS= INSTALLS_ICONS=yes GUI_CONFIGURE_WITH= cairo gui gui-tools GUI_INSTALL_TARGET= install-icons install-ext-icons -NLS_USES= gettext -NLS_CONFIGURE_ENABLE= nls +NLS_USES= gettext-runtime +NLS_CONFIGURE_OFF= --disable-nls NLS_MAKE_ARGS_OFF= POFILES="" PGSQL_USES= pgsql |