mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
2db0b247a5
Remove patches integrated since r9. 1/2 of patch-aa was integrated, the second half has been retained. Add new patch (patch-ak) from web site for s5fakehost files. Add new patch (patch-al) to fix long standing telnet failure to build (it is a kludge, so hasn't been submitted to the socks maintainers).
50 lines
1.3 KiB
Makefile
50 lines
1.3 KiB
Makefile
# New ports collection makefile for: socks5
|
|
# Version required: v1.0r10
|
|
# Date created: 24 Apr 1996
|
|
# Whom: pst
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
DISTNAME= socks5-v1.0r10
|
|
PKGNAME= socks5-1.0.10
|
|
CATEGORIES= net security
|
|
EXTRACT_SUFX= .tar.gz
|
|
|
|
MAINTAINER= imp@freebsd.org
|
|
|
|
NO_CDROM= "NEC has a funky license for this software"
|
|
RESTRICTED= "no commercial use"
|
|
|
|
# here are some extra configure args you may wish to use
|
|
# see the readme file before screwing with them
|
|
#
|
|
#EXTRA_CONFIGURE_ARGS= \
|
|
# --with-default-server=socks.mydomain.com \
|
|
# --with-syslog-facility=LOG_AUTH \
|
|
# --with-passwd
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-libconffile=${PREFIX}/etc/libsocks5.conf \
|
|
--with-srvconffile=${PREFIX}/etc/socks5.conf \
|
|
--with-srvpidfile=/var/run/socks5.pid \
|
|
--with-srvidtfile=/var/run/socks5.ident \
|
|
${EXTRA_CONFIGURE_ARGS}
|
|
MAN1= runsocks.1 socks5.1 stopsocks.1 socks5_clients.1
|
|
MAN5= libsocks5.conf.5 socks5.conf.5
|
|
CONFIGURE_ENV= LIBS=-lcrypt
|
|
|
|
do-fetch:
|
|
@if [ ! -f ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX} ]; then \
|
|
${ECHO} ""; \
|
|
${ECHO} "NEC requires that you grab the dist files from their"; \
|
|
${ECHO} "web site at http://www.socks.nec.com. Please make sure"; \
|
|
${ECHO} "you have ${DISTNAME}${EXTRACT_SUFX} in ${DISTDIR}"; \
|
|
${ECHO} "and run make again."; \
|
|
${ECHO} ""; \
|
|
exit 1;\
|
|
fi
|
|
|
|
.include <bsd.port.mk>
|