diff options
author | bsam <bsam@FreeBSD.org> | 2013-09-08 03:49:41 +0800 |
---|---|---|
committer | bsam <bsam@FreeBSD.org> | 2013-09-08 03:49:41 +0800 |
commit | 3e50a1f1008125d1fcb80824f0b07c82b4441181 (patch) | |
tree | 44170eaab332d8a08ad941e3638a2e1e422229c8 /irc/epic5 | |
parent | e40957d48800f7febe079c19e8783f52b1a7e5c5 (diff) | |
download | freebsd-ports-gnome-3e50a1f1008125d1fcb80824f0b07c82b4441181.tar.gz freebsd-ports-gnome-3e50a1f1008125d1fcb80824f0b07c82b4441181.tar.zst freebsd-ports-gnome-3e50a1f1008125d1fcb80824f0b07c82b4441181.zip |
Introduce variable ICONV_PREFIX at Mk/Uses/iconv.mk. The default for
pre 100043 is ${LOCALBASE} and /usr otherwise. Convert all ports to
new variable usage.
Approved by: portmgr (bapt, implicit)
Diffstat (limited to 'irc/epic5')
-rw-r--r-- | irc/epic5/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/irc/epic5/Makefile b/irc/epic5/Makefile index 1b348374dc50..ba8ca2fd6ad7 100644 --- a/irc/epic5/Makefile +++ b/irc/epic5/Makefile @@ -29,6 +29,9 @@ OPTIONS_DEFINE= IPV6 TCL PERL SSL TERMCAP DOCS RUBY OPTIONS_DEFAULT= TCL PERL SSL RUBY TERMCAP_DESC= Refuse to use terminfo/ncurses +CONFIGURE_ARGS+=--with-iconv=${ICONV_PREFIX} +USES= iconv + .include <bsd.port.options.mk> .if ! ${PORT_OPTIONS:MIPV6} @@ -63,9 +66,6 @@ CONFIGURE_ARGS+= --without-ruby CONFIGURE_ARGS+= --with-termcap .endif -CONFIGURE_ARGS+= --with-iconv=${LOCALBASE} -USES= iconv - post-extract: @${FIND} ${WRKDIR} -type d -name CVS | ${XARGS} ${RM} -rf |