openbsd-ports/security/socks5/Makefile

53 lines
1.5 KiB
Makefile
Raw Normal View History

# $OpenBSD: Makefile,v 1.11 1999/04/09 04:11:56 brad Exp $
1999-03-13 20:40:24 -05:00
DISTNAME= socks5-v1.0r9
PKGNAME= socks5-1.0.9
CATEGORIES= security
MAINTAINER= ports@openbsd.org
NO_CDROM= "NEC has a funky license for this software"
RESTRICTED= "no commercial use"
1998-12-16 17:16:00 -05:00
MIRROR_DISTFILE=no
1998-08-05 17:59:31 -04:00
IS_INTERACTIVE= yes
# 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
1998-07-28 22:57:18 -04:00
ETCDIR?= /etc
WRKSRC= ${WRKDIR}/${DISTNAME}
GNU_CONFIGURE= yes
1998-07-28 22:57:18 -04:00
CONFIGURE_ARGS= --with-libconffile=${ETCDIR}/libsocks5.conf \
--with-srvconffile=${ETCDIR}/socks5.conf \
--with-srvpidfile=/var/run/socks5.pid \
--with-srvidtfile=/var/run/socks5.ident \
${EXTRA_CONFIGURE_ARGS}
1999-03-13 20:40:24 -05:00
MAN1= runsocks.1 socks5.1 stopsocks.1 socks5_clients.1
MAN5= libsocks5.conf.5 socks5.conf.5
1998-07-28 22:57:18 -04:00
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"; \
1998-07-28 22:57:18 -04:00
${ECHO} "you have ${DISTNAME}${EXTRACT_SUFX} in ${DISTDIR}"; \
${ECHO} "and run make again."; \
${ECHO} ""; \
exit 1;\
fi
post-install:
1999-03-13 20:40:24 -05:00
${MKDIR} ${PREFIX}/lib/socks
${MKDIR} ${PREFIX}/share/doc/socks
${INSTALL_DATA} ${WRKSRC}/examples/* ${PREFIX}/lib/socks
${INSTALL_DATA} ${WRKSRC}/doc/* ${PREFIX}/share/doc/socks
${LDCONFIG} -m ${PREFIX}/lib
.include <bsd.port.mk>