diff options
author | FUJISHIMA Satsuki <sf@FreeBSD.org> | 2002-01-05 10:41:15 +0000 |
---|---|---|
committer | FUJISHIMA Satsuki <sf@FreeBSD.org> | 2002-01-05 10:41:15 +0000 |
commit | 3c235f227d9a373c6ab467bd8f0a6a19590ea821 (patch) | |
tree | fb9301319ee9d7ae0eacd64d64b6ea36b6e10ae1 /ftp/wget-devel/Makefile | |
parent | 52c8b6b11d92f9315f9acdbf620280abf02c299a (diff) | |
download | ports-3c235f227d9a373c6ab467bd8f0a6a19590ea821.tar.gz ports-3c235f227d9a373c6ab467bd8f0a6a19590ea821.zip |
Notes
Diffstat (limited to 'ftp/wget-devel/Makefile')
-rw-r--r-- | ftp/wget-devel/Makefile | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/ftp/wget-devel/Makefile b/ftp/wget-devel/Makefile index c532a9e08910..f5aad87039f9 100644 --- a/ftp/wget-devel/Makefile +++ b/ftp/wget-devel/Makefile @@ -6,38 +6,46 @@ # PORTNAME= wget -PORTVERSION= 1.8 -PORTREVISION= 2 +PORTVERSION= 1.8.1 CATEGORIES= ftp www MASTER_SITES= ${MASTER_SITE_GNU} \ ftp://ftp.dl.ac.uk/ccp14/ftp-mirror/wget/pub/unix/util/wget/ \ ftp://ftp.informatik.hu-berlin.de/gnu/wget/ \ ftp://ftp.uni-mainz.de/pub/gnu/wget/ \ - ftp://ftp.max.irk.ru/unix/net/www/wget/ + ftp://ftp.max.irk.ru/unix/net/www/wget/ \ + http://www3.big.or.jp/~sian/linux/products/ MASTER_SITE_SUBDIR= wget +DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} \ + ${EXTRA_PO} +EXTRACT_ONLY= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} MAINTAINER= sf@FreeBSD.org LIB_DEPENDS= intl.1:${PORTSDIR}/devel/gettext +USE_GMAKE= yes +GNU_CONFIGURE= yes + .if !defined(WITHOUT_SSL) USE_OPENSSL= yes CONFIGURE_ARGS= --with-ssl=${OPENSSLBASE} .endif -USE_GMAKE= yes -USE_AUTOCONF= yes CONFIGURE_ENV+= CPPFLAGS=-I${LOCALBASE}/include \ LIBS=-L${LOCALBASE}/lib MAN1= wget.1 +EXTRA_PO= ${PORTNAME}-${PORTVERSION}.ja.po.gz + +post-extract: + ${RM} -f ${WRKSRC}/po/ja.po + ${GZIP_CMD} -dc ${DISTDIR}/${EXTRA_PO} > ${WRKSRC}/po/ja.po + post-patch: + ${RM} -f ${WRKSRC}/doc/wget.info* # we don't need to run autoconf. ${TOUCH} ${WRKSRC}/configure -pre-build: - @${RM} -f ${WRKSRC}/doc/wget.info* - post-install: install-info ${PREFIX}/info/wget.info ${PREFIX}/info/dir |