diff options
author | marino <marino@FreeBSD.org> | 2015-07-07 14:35:35 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2015-07-07 14:35:35 +0800 |
commit | 615ce7e9e789c2b0b141cf71573710243fb31b64 (patch) | |
tree | 214819f2bbbd809bbe2d478c41d713ef0dfe6534 /cad | |
parent | ad9f90de678c558ab9f88f5a28d30e2993a22363 (diff) | |
download | freebsd-ports-gnome-615ce7e9e789c2b0b141cf71573710243fb31b64.tar.gz freebsd-ports-gnome-615ce7e9e789c2b0b141cf71573710243fb31b64.tar.zst freebsd-ports-gnome-615ce7e9e789c2b0b141cf71573710243fb31b64.zip |
cad/tkgate: Unbreak FreeBSD 11, Fix depends on rest
This was specified on USES: iconv:build,lib
This is incorrect; the way iconv.mk is written, "build" and "lib" are
mutually exclusive and "build" takes precedence. This means the library
dependency was not registered.
Moveover, it's failing on FreeBSD 11 and dev-branch of DragonFly because
it uses transliteration. Setting USES=iconv:translit fixes both issues.
Approved by: Just fix it
Diffstat (limited to 'cad')
-rw-r--r-- | cad/tkgate/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cad/tkgate/Makefile b/cad/tkgate/Makefile index c67deba79009..12c0cb8bfafc 100644 --- a/cad/tkgate/Makefile +++ b/cad/tkgate/Makefile @@ -2,6 +2,7 @@ PORTNAME= tkgate PORTVERSION= 2.0.0 +PORTREVISION= 1 CATEGORIES= cad MASTER_SITES= http://highsecure.ru/distfiles/ \ http://cdn.bitbucket.org/starling13/tkgate/downloads/ @@ -13,7 +14,7 @@ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING GNU_CONFIGURE= yes -USES+= iconv:build,lib tk:build,run +USES+= iconv:translit tk:build,run post-patch: @${REINPLACE_CMD} -e 's|/usr/bin/wish|${WISH}|g' ${WRKSRC}/scripts/tree.tcl |