mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-04 06:15:24 +00:00
35eff3e9e8
* Fixed patches to satisfy portlint - Fixed: deadlock on insufficient resources - Fixed: race condition in ssl_plugin - Fixed: minor memory leak on configuration reload - Fixed: recursion detection was not working - Fixed: %n for IPv6 in logging terminates log record - Fixed: reverse PTR validation (required for dnsauth) - Fixed: error on external 0.0.0.0 for NOIPV6 (light version) - Better support for IPv6 in ftppr PR: 223148 Submitted by: t^@gmail.com (maintainer)
44 lines
1.4 KiB
Makefile
44 lines
1.4 KiB
Makefile
# Created by: tim@relay.nnn.tstu.ru
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= 3proxy
|
|
PORTVERSION= 0.8.11
|
|
CATEGORIES= net
|
|
|
|
MAINTAINER= timp87@gmail.com
|
|
COMMENT= Proxy servers set (support HTTP(S), FTP, SOCKS, POP3, TCP & UDP)
|
|
|
|
LICENSE= APACHE20 BSD3CLAUSE GPLv2+ LGPL21+
|
|
LICENSE_COMB= dual
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
MAKEFILE= Makefile.unix
|
|
USE_LDCONFIG= ${PREFIX}/lib/${PORTNAME}
|
|
USE_RC_SUBR= 3proxy
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= z3APA3A
|
|
|
|
PORTDOCS= README
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|%%CFLAGS%%|${CFLAGS}|' ${WRKSRC}/${MAKEFILE}
|
|
|
|
post-build:
|
|
${MV} ${WRKSRC}/src/proxy ${WRKSRC}/src/httppr
|
|
${MV} ${WRKSRC}/man/proxy.8 ${WRKSRC}/man/httppr.8
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/lib/${PORTNAME}/
|
|
cd ${WRKSRC}/src/ && ${INSTALL_PROGRAM} 3proxy dighosts ftppr icqpr mycrypt pop3p httppr smtpp socks tcppm udppm ${STAGEDIR}${PREFIX}/bin/
|
|
cd ${WRKSRC}/cfg/ && ${INSTALL_DATA} 3proxy.cfg.sample ${STAGEDIR}${PREFIX}/etc/
|
|
cd ${WRKSRC}/src/ && ${INSTALL_LIB} PCREPlugin.so StringsPlugin.so TrafficPlugin.so ${STAGEDIR}${PREFIX}/lib/${PORTNAME}/
|
|
cd ${WRKSRC}/man/ && ${INSTALL_MAN} 3proxy.cfg.3 ${STAGEDIR}${PREFIX}/man/man3/
|
|
cd ${WRKSRC}/man/ && ${INSTALL_MAN} 3proxy.8 ftppr.8 pop3p.8 httppr.8 socks.8 tcppm.8 udppm.8 ${STAGEDIR}${PREFIX}/man/man8/
|
|
|
|
do-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}/
|
|
|
|
.include <bsd.port.mk>
|