diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2003-07-30 07:36:28 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2003-07-30 07:36:28 +0000 |
commit | 32c57f94b6988ce83484d659acc1aa01b5040f56 (patch) | |
tree | 37917eab1592a5068cc1509635e595e6d7b45360 /net/3proxy/Makefile | |
parent | c90209e91a23d20b71a882911ff7415afb9457b5 (diff) | |
download | ports-32c57f94b6988ce83484d659acc1aa01b5040f56.tar.gz ports-32c57f94b6988ce83484d659acc1aa01b5040f56.zip |
Notes
Diffstat (limited to 'net/3proxy/Makefile')
-rw-r--r-- | net/3proxy/Makefile | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/net/3proxy/Makefile b/net/3proxy/Makefile new file mode 100644 index 000000000000..98512e6832af --- /dev/null +++ b/net/3proxy/Makefile @@ -0,0 +1,44 @@ +# New ports collection makefile for: 3proxy +# Date created: 2003 July 25 +# Whom: tim@relay.nnn.tstu.ru +# +# $FreeBSD$ +# + +PORTNAME= 3proxy +PORTVERSION= 0.4b +CATEGORIES= net +MASTER_SITES= http://www.security.nnov.ru/soft/3proxy/${PORTVERSION}/ +DISTNAME= ${PORTNAME} +EXTRACT_SUFX= .tgz + +MAINTAINER= tim@relay.nnn.tstu.ru +COMMENT= Proxy servers set (support HTTP(S), FTP, SOCKS, POP3, TCP & UDP) + +NO_WRKSUBDIR= yes +MAKE_ENV= PTHREAD_LIBS="${PTHREAD_LIBS}" \ + PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" + +pre-build: + if [ ! -f ${WRKSRC}/Makefile ]; then \ + ${CP} ${WRKSRC}/Makefile.unix ${WRKSRC}/Makefile; \ + fi + +do-install: +.for i in 3proxy dighosts mycrypt pop3p proxy socks tcppm udppm + ${INSTALL_PROGRAM} ${WRKSRC}/${i} ${PREFIX}/bin/ +.endfor + ${INSTALL_DATA} ${WRKSRC}/3proxy.cfg.sample ${PREFIX}/etc + ${SED} -e "s|%%PREFIX%%|${PREFIX}|g" ${FILESDIR}/3proxy.sh \ + > ${WRKSRC}/3proxy.sh + ${INSTALL_SCRIPT} ${WRKSRC}/3proxy.sh ${PREFIX}/etc/rc.d/ + +post-install: +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} +.for i in License Readme Release.notes + ${INSTALL_MAN} ${WRKSRC}/${i} ${DOCSDIR} +.endfor +.endif + +.include <bsd.port.mk> |