diff options
author | bland <bland@FreeBSD.org> | 2007-10-10 21:29:42 +0800 |
---|---|---|
committer | bland <bland@FreeBSD.org> | 2007-10-10 21:29:42 +0800 |
commit | 42758becae4e8e1b3b7cde55666976780cb0443a (patch) | |
tree | 77acbf243d82490467662b3656fe29de45910496 /converters/libiconv | |
parent | ed16d6aec8a51fc1898e538bccf0f7c1cb56b295 (diff) | |
download | freebsd-ports-gnome-42758becae4e8e1b3b7cde55666976780cb0443a.tar.gz freebsd-ports-gnome-42758becae4e8e1b3b7cde55666976780cb0443a.tar.zst freebsd-ports-gnome-42758becae4e8e1b3b7cde55666976780cb0443a.zip |
- Convert to OPTIONS.
- Pet portlint (spaces -> tab).
PR: 117063
Diffstat (limited to 'converters/libiconv')
-rw-r--r-- | converters/libiconv/Makefile | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/converters/libiconv/Makefile b/converters/libiconv/Makefile index 9dddcb811093..f10d1ac4dfa6 100644 --- a/converters/libiconv/Makefile +++ b/converters/libiconv/Makefile @@ -26,11 +26,16 @@ USE_LDCONFIG= yes MAN1= iconv.1 MAN3= iconv.3 iconv_open.3 iconv_close.3 +OPTIONS= EXTRA_ENCODINGS "Include extra character sets" on \ + EXTRA_PATCHES "Apply patches to fix CP932, add EUCJP-MS" off + .ifdef USE_ICONV .error USE_ICONV is defined as an environment variable, or in the arguments \ to "make". Please unset it and restart the build. .endif +.include <bsd.port.pre.mk> + .if !defined(WITHOUT_EXTRA_ENCODINGS) CONFIGURE_ARGS+= --enable-extra-encodings .endif @@ -38,19 +43,12 @@ CONFIGURE_ARGS+= --enable-extra-encodings .if defined(WITH_EXTRA_PATCHES) PATCH_SITES+= http://www2d.biglobe.ne.jp/~msyk/software/libiconv/ PATCH_SITES+= ${MASTER_SITE_LOCAL} -PATCH_SITE_SUBDIR= nork +PATCH_SITE_SUBDIR= nork PATCHFILES+= ${DISTNAME}-cp932.patch.gz PATCH_DIST_STRIP+= -p1 .endif -pre-everything:: - @${ECHO_MSG} "" - @${ECHO_MSG} "libiconv has the following tunable option(s):" - @${ECHO_MSG} " WITHOUT_EXTRA_ENCODINGS=yes Disable extra character sets" - @${ECHO_MSG} " WITH_EXTRA_PATCHES=yes Apply extra patches (fixes cp932, adds EUCJP-MS)" - @${ECHO_MSG} "" - post-patch: @${REINPLACE_CMD} -e 's:ei_ksc5601:ei_euc_kr:g' ${WRKSRC}/lib/aliases.h -.include <bsd.port.mk> +.include <bsd.port.post.mk> |