pkgsrc/net/delegate/Makefile
wiz 154b9daf7c Update to 7.7.1, provided by Hiramatsu Yoshifumi in pkg/14826.
Excerpt of changes since 7.5.3:
7.7.0 011122 socks4.c: supported Socks4A (delegation of hostname resolution)
7.7.0 011121 {service,socks}.c: added FORWARD=socks://host[:port][/[-4][-r]]
7.6.2 011116 sslway.c: added "-ad" option for automatic detection of ClientHello
7.6.2 011110 {http,httpd}.c: customizable HTTPCNF=acc-encoding for Acc-Encoding
7.6.2 011116 http.c: modified default Acc-Enc from empty to identity <masami>
7.6.2 011005 {http,httpd}.c: added HTTPCONF=tout-buff-reqbody <hi>
7.6.2 011105 filter.c: enabled "-tee" for bidirectional filters (FCL,FSV,FMD)
7.6.1 011031 nbio.c: added TIMEOUT=silence:N (applyed to SERVER=tcprelay)
7.6.1 011030 {url,html,http,httpd}.c: added HTTPCONF=kill-tag:listOfTags
7.6.1 011029 httplog.c: added %{fieldName} as format spec. of PROTOLOG<yamahide>
7.6.1 011026 {httpd,http}.c: added HTTPCONF=kill-head:listOfHeaders
7.6.1 011026 http.c: added X-Cache-ID for chained(>=3) cache(obsolete X-Locking)
7.6.1 011026 http.c: supported multiple values in a single Via field
7.6.1 011025 {mount,httphead}.c: extended moved MountOption to moved[=rcode]
7.6.0 011024 conf.c: changed EXPIRE=1h to be default
7.6.0 011021 httplog.c: fixed logging /-_-URL on failure (forbidden)
7.6.0 011016 http.c: changed not to cache response with "Vary:" field
7.6.0 011011 master.c: added FORWARD=proto://host:port-_-proto:dst:src
7.6.0 011011 service.c: added TIMEOUT=dnsinv:N
7.6.0 011011 resolv.c: supported forwarding MX by name (with preference)<zensyo>
7.6.0 011010 *.dhtml: inserted the anchor for mailto: ADMIN
7.6.0 011009 {filter,smtp}.c: supported CFI filter for FTOMD
7.6.0 011009 service.c: changed to do protocol interpreation with FTOMD/CFI
7.6.0 011007 {conf,mount}.c: added DATAPATH for MOUNT to file:relativePath
7.6.0 011005 mount.c: added pri=signedFloatNumber to sort MOUNT list
7.6.0 011004 {access,httphead,http}.c: added AUTH=viagen to generate "Via:"
7.6.0 011004 winserv.c: supported enabling automatic-start at invocation
7.6.0 011003 smtpgate.c: added CONTROL/MYAUTH for NNTP/SMTP gateway
7.6.0 011003 nntp.c: added NNTPCONF=authcom:commandList
7.6.0 010929 ftp.c: added delay on continuous errors
7.6.0 010928 {rident,ddi}.c: added "rident" MountOption
7.6.0 010927 smtp.c: added SMTPCONF=reject:{nofrom,nohelo} (were defaults)
7.6.0 010925 mount.c: added "nocase" MountOption
7.6.0 010921 mount.c: added "qmatch=request-header-pattern" MountOption
7.6.0 010921 smtpgate.c: added CONTROL/Sender to generate envelope "MAIL From"
7.6.0 010828 ftpgw.c: changed link to up-dir be relative URL without SITE part
7.6.0 010828 ftpgw.c: changed to return 302 Moved for FTP URL without trailing /
7.6.0 010821 nntpgw.c: changed to return error for access to non-existent group
And of course, lots of bugfixes.
2001-12-11 14:20:10 +00:00

46 lines
1.7 KiB
Makefile

# $NetBSD: Makefile,v 1.24 2001/12/11 14:20:10 wiz Exp $
# FreeBSD Id: Makefile,v 1.14 1998/11/09 09:24:20 max Exp
#
DISTNAME= ${PKGNAME:S/-//}
PKGNAME= delegate-7.7.1
CATEGORIES= net
MASTER_SITES= ftp://ftp.delegate.org/pub/DeleGate/ \
ftp://etlport.etl.go.jp/pub/DeleGate/ \
ftp://ftp.kyushu-u.ac.jp/pub/Net/WWW/server/delegate/ \
ftp://ftp.nec.co.jp/pub/infosys/WWW/DeleGate/ \
ftp://ftp.fujitsu.co.jp/pub/networking/DeleGate/ \
ftp://ftp.u-aizu.ac.jp/pub/net/DeleGate/delegate.org/ \
ftp://ftp.eni.co.jp/pub/mirrors/delegate/ \
ftp://ftp.ntua.gr/pub/net/gwtools/DeleGate/ \
ftp://ftp.netsw.org/netsw/Network/IP/Firewall/Proxy/delegate/ \
ftp://ftp.ecrc.net/pub/netsw/Network/IP/Firewall/Proxy/delegate/ \
ftp://ftp.ecrc.de/ftp/data/ftp.ecrc.net/pub/netsw/Network/IP/Firewall/Proxy/delegate/
MAINTAINER= rh@NetBSD.ORG
HOMEPAGE= http://www.delegate.org/
COMMENT= General purpose TCP/IP proxy system
DELEGATE_MANAGER?= root@localhost
pre-build:
@${ECHO} "ADMIN=${DELEGATE_MANAGER}" >> ${WRKSRC}/DELEGATE_CONF
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/src/delegated ${PREFIX}/sbin
${SED} -e 's:__PREFIX__:${PREFIX}:g' \
-e 's:__ADMIN__:${DELEGATE_MANAGER}:g' \
${WRKSRC}/delegated.sh.template \
> ${WRKSRC}/delegated.sh.sample
${INSTALL_SCRIPT} ${WRKSRC}/delegated.sh.sample \
${PREFIX}/etc/rc.d
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/delegate
${INSTALL_DATA} ${WRKSRC}/doc/Manual.htm \
${PREFIX}/share/doc/delegate/manual.html
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/delegate
${INSTALL_DATA} ${WRKSRC}/doc/tutor-en.htm \
${PREFIX}/share/doc/delegate/tutorial-en.html
${INSTALL_DATA} ${WRKSRC}/doc/tutor-jp.htm \
${PREFIX}/share/doc/delegate/tutorial-jp.html
.include "../../mk/bsd.pkg.mk"