diff options
author | Steve Price <steve@FreeBSD.org> | 1999-05-01 02:31:46 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 1999-05-01 02:31:46 +0000 |
commit | dbc49d3be4716afc9190c95ffec108fafb6aea41 (patch) | |
tree | ed31e5e26c6839b0dbb3d80aead71741ed1bf068 /ftp | |
parent | 8233cc814c56554cee583a82ede5b8979df41469 (diff) |
Two fixes:
- support "If-Modified-Since"
- fix generation of links when rewriting links in html
PR: 8651
Submitted by: Kensaku Masuda <greg@greg.rim.or.jp>
Notes
Notes:
svn path=/head/; revision=18270
Diffstat (limited to 'ftp')
-rw-r--r-- | ftp/wget-devel/Makefile | 8 | ||||
-rw-r--r-- | ftp/wget/Makefile | 8 |
2 files changed, 12 insertions, 4 deletions
diff --git a/ftp/wget-devel/Makefile b/ftp/wget-devel/Makefile index aab0431fb5bc..3f428ac9585a 100644 --- a/ftp/wget-devel/Makefile +++ b/ftp/wget-devel/Makefile @@ -3,7 +3,7 @@ # Date created: 31 December 1996 # Whom: Thomas Gellekum <tg@FreeBSD.ORG> # -# $Id: Makefile,v 1.11 1999/01/27 07:41:25 fenner Exp $ +# $Id: Makefile,v 1.12 1999/03/20 17:18:04 nectar Exp $ # DISTNAME= wget-1.5.3 @@ -21,10 +21,14 @@ LIB_DEPENDS= intl.1:${PORTSDIR}/devel/gettext GNU_CONFIGURE= yes +INFOFILES= wget.info + post-install: if [ ! -f ${PREFIX}/info/dir ]; then \ ${SED} -ne '1,/Menu:/p' /usr/share/info/dir > ${PREFIX}/info/dir; \ fi - -install-info ${PREFIX}/info/wget.info ${PREFIX}/info/dir +.for i in ${INFOFILES} + install-info ${PREFIX}/info/${i} ${PREFIX}/info/dir +.endfor .include <bsd.port.mk> diff --git a/ftp/wget/Makefile b/ftp/wget/Makefile index aab0431fb5bc..3f428ac9585a 100644 --- a/ftp/wget/Makefile +++ b/ftp/wget/Makefile @@ -3,7 +3,7 @@ # Date created: 31 December 1996 # Whom: Thomas Gellekum <tg@FreeBSD.ORG> # -# $Id: Makefile,v 1.11 1999/01/27 07:41:25 fenner Exp $ +# $Id: Makefile,v 1.12 1999/03/20 17:18:04 nectar Exp $ # DISTNAME= wget-1.5.3 @@ -21,10 +21,14 @@ LIB_DEPENDS= intl.1:${PORTSDIR}/devel/gettext GNU_CONFIGURE= yes +INFOFILES= wget.info + post-install: if [ ! -f ${PREFIX}/info/dir ]; then \ ${SED} -ne '1,/Menu:/p' /usr/share/info/dir > ${PREFIX}/info/dir; \ fi - -install-info ${PREFIX}/info/wget.info ${PREFIX}/info/dir +.for i in ${INFOFILES} + install-info ${PREFIX}/info/${i} ${PREFIX}/info/dir +.endfor .include <bsd.port.mk> |