diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2001-09-11 13:17:09 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2001-09-11 13:17:09 +0000 |
commit | 8da1d9c0174dfed6847942f46a592f3e02e5a8a3 (patch) | |
tree | e2fed9d8ea15085be36f01d7a908b32562b973d2 /ftp/wget | |
parent | 2498d0c51043d8bba35f6bf69e28e4c72640d162 (diff) |
Notes
Diffstat (limited to 'ftp/wget')
-rw-r--r-- | ftp/wget/Makefile | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/ftp/wget/Makefile b/ftp/wget/Makefile index 16fc2c00eb2e..201749c2d0a0 100644 --- a/ftp/wget/Makefile +++ b/ftp/wget/Makefile @@ -23,8 +23,8 @@ PATCH_DIST_STRIP= -p1 MAINTAINER= sf@FreeBSD.org +BUILD_DEPENDS= msgfmt-new:${PORTSDIR}/devel/gettext-devel LIB_DEPENDS= intl.1:${PORTSDIR}/devel/gettext -BUILD_DEPENDS= giconv:${PORTSDIR}/converters/libiconv .if !defined(WITHOUT_SSL) USE_OPENSSL= yes @@ -33,21 +33,15 @@ CONFIGURE_ARGS= --with-ssl=${OPENSSLBASE} USE_GMAKE= yes GNU_CONFIGURE= yes CONFIGURE_ENV+= CPPFLAGS=-I${LOCALBASE}/include \ - LIBS=-L${LOCALBASE}/lib + LIBS=-L${LOCALBASE}/lib \ + MSGFMT=${LOCALBASE}/bin/msgfmt-new \ + XGETTEXT=${LOCALBASE}/bin/xgettext-new MAN1= wget.1 post-patch: # made by broken KAME patch. Already contacted. @${RM} -f ${WRKSRC}/po/zh.po* -# convert utf-8 to Big5 for FreeBSD's default old fashioned gettext. - (cd ${WRKSRC}; \ - ${MV} po/zh_TW.po po/zh_TW.po.utf-8; \ - ${LOCALBASE}/bin/giconv -f UTF-8 -t BIG5 po/zh_TW.po.utf-8 |\ - ${SED} -e 's/utf-8/big5/' |\ - ${PERL} -p -e 's{([\x81-\xfe])\\}{$$1\\\\}g' |\ - ${PERL} -p -e 's,\\\\([nt\"]),\\$$1,g' \ - > po/zh_TW.po) pre-build: @${RM} -f ${WRKSRC}/doc/wget.info* |