diff options
author | bsam <bsam@FreeBSD.org> | 2013-09-08 06:09:49 +0800 |
---|---|---|
committer | bsam <bsam@FreeBSD.org> | 2013-09-08 06:09:49 +0800 |
commit | d636cd547ea83b553724a4fbce093ae05549e517 (patch) | |
tree | 766508fa4451fe0998a291045dea81e057c6e3ce /japanese/eb | |
parent | 1823ed646ac76e398d0ac032d188143e32d4c02a (diff) | |
download | freebsd-ports-gnome-d636cd547ea83b553724a4fbce093ae05549e517.tar.gz freebsd-ports-gnome-d636cd547ea83b553724a4fbce093ae05549e517.tar.zst freebsd-ports-gnome-d636cd547ea83b553724a4fbce093ae05549e517.zip |
. add iconv to USES;
. switch LOCALBASE to ICONV_PREFIX for iconv-includes and iconv-libraries.
Approved by: portmgr (bapt, implicit)
Diffstat (limited to 'japanese/eb')
-rw-r--r-- | japanese/eb/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/japanese/eb/Makefile b/japanese/eb/Makefile index 007ece5c7c78..8ab7ae0ac62b 100644 --- a/japanese/eb/Makefile +++ b/japanese/eb/Makefile @@ -78,12 +78,12 @@ APPENDIXDIR= ${DATADIR}/appendix .include <bsd.port.options.mk> .if ${PORT_OPTIONS:MNLS} -USES+= gettext +USES+= gettext iconv CONFIGURE_ARGS+= --enable-nls \ --with-gettext-includes=${LOCALBASE}/include \ --with-gettext-libraries=${LOCALBASE}/lib \ - --with-iconv-includes=${LOCALBASE}/include \ - --with-iconv-libraries=${LOCALBASE}/lib + --with-iconv-includes=${ICONV_PREFIX}/include \ + --with-iconv-libraries=${ICONV_PREFIX}/lib PLIST_SUB= NLS="" .else CONFIGURE_ARGS+= --disable-nls |