diff options
author | novel <novel@FreeBSD.org> | 2016-08-25 02:22:21 +0800 |
---|---|---|
committer | novel <novel@FreeBSD.org> | 2016-08-25 02:22:21 +0800 |
commit | 0d58db2d52159baa7a1c878293c4564e342ca65c (patch) | |
tree | 2334bbab40188c5720571df88659810d9d7387bd /dns | |
parent | 338d5e97d2c82d7b707e1c5287cb98f07c0b47f2 (diff) | |
download | freebsd-ports-gnome-0d58db2d52159baa7a1c878293c4564e342ca65c.tar.gz freebsd-ports-gnome-0d58db2d52159baa7a1c878293c4564e342ca65c.tar.zst freebsd-ports-gnome-0d58db2d52159baa7a1c878293c4564e342ca65c.zip |
dns/libpsl: fix configure with NLS disabled
Add gettext-tools to NLS_USES_OFF because otherwise it fails
to configure.
While here, pet portlint by moving PORTREVISION to proper place.
PR: 210342
Submitted by: matthew@reztek.cz
Approved by: maintainer timeout (>1 month)
Diffstat (limited to 'dns')
-rw-r--r-- | dns/libpsl/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dns/libpsl/Makefile b/dns/libpsl/Makefile index fe1949d96fcf..4e467aae2058 100644 --- a/dns/libpsl/Makefile +++ b/dns/libpsl/Makefile @@ -3,8 +3,8 @@ PORTNAME= libpsl PORTVERSION= 0.13.0 -PORTREVISION= 2 DISTVERSIONPREFIX= ${PORTNAME}- +PORTREVISION= 2 CATEGORIES= dns MAINTAINER= sunpoet@FreeBSD.org @@ -50,6 +50,7 @@ IDN2_LIB_DEPENDS= libidn2.so:dns/libidn2 \ IDN2_USES= iconv NLS_CPPFLAGS= -DENABLE_NLS=1 NLS_USES= gettext +NLS_USES_OFF= gettext-tools post-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/psl2c ${STAGEDIR}${PREFIX}/bin/ |