diff options
author | vanilla <vanilla@FreeBSD.org> | 2002-03-22 07:32:13 +0000 |
---|---|---|
committer | vanilla <vanilla@FreeBSD.org> | 2002-03-22 07:32:13 +0000 |
commit | 13c9d007a603e99e77d2d94c6813bab97443c21f (patch) | |
tree | d7339beff52ea2b857a14c082ad04c945960dd09 /www/tinyproxy/Makefile | |
parent | b4f12d24bbab8a7317c420c98c97dfe1f89b21a6 (diff) | |
download | FreeBSD-ports-13c9d007a603e99e77d2d94c6813bab97443c21f.zip FreeBSD-ports-13c9d007a603e99e77d2d94c6813bab97443c21f.tar.gz |
Upgrade to 1.4.3.
PR: ports/36049
Submitted by: maintainer
Diffstat (limited to 'www/tinyproxy/Makefile')
-rw-r--r-- | www/tinyproxy/Makefile | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/www/tinyproxy/Makefile b/www/tinyproxy/Makefile index 58f844d..71e4908 100644 --- a/www/tinyproxy/Makefile +++ b/www/tinyproxy/Makefile @@ -6,19 +6,27 @@ # PORTNAME= tinyproxy -PORTVERSION= 1.3.3b +PORTVERSION= 1.4.3 CATEGORIES= www MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} MAINTAINER= mitsuru@riken.go.jp -BUILD_DEPENDS= ${LOCALBASE}/lib/libadns.a:${PORTSDIR}/net/adns - GNU_CONFIGURE= yes USE_GMAKE= yes -CONFIGURE_ARGS= --bindir=${PREFIX}/sbin --with-log-file=/var/log/tinyproxy.log --with-port=8080 --with-user=nobody --with-adns-include=${LOCALBASE}/include --with-adns-lib=${LOCALBASE}/lib +CONFIGURE_ARGS= --bindir=${PREFIX}/sbin --with-config=${PREFIX}/etc/tinyproxy/tinyproxy.conf MAN8= tinyproxy.8 +post-patch: + @cd ${WRKSRC}/doc; f=tinyproxy.8; \ + ${MV} $$f $$f.orig; \ + ${SED} -e s:/etc/tinyproxy/tinyproxy.conf:${PREFIX}/etc/tinyproxy/tinyproxy.conf: \ + < $$f.orig > $$f + +post-install: + ${MKDIR} ${PREFIX}/etc/tinyproxy + ${INSTALL_DATA} ${WRKSRC}/doc/tinyproxy.conf ${PREFIX}/etc/tinyproxy/tinyproxy.conf.sample + .include <bsd.port.mk> |