0e3f2c3a81
Submitted by: maintainer
37 lines
922 B
Makefile
37 lines
922 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: ssltunnel-server
|
|
# Date created: June 10, 2003
|
|
# Whom: at@rominet.net
|
|
#
|
|
# $Id: Makefile,v 1.3 2003/09/21 16:20:44 thivillon Exp $
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ssltunnel
|
|
PORTVERSION= 1.15
|
|
PORTREVISION= 0
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://www.hsc.fr/ressources/outils/ssltunnel/download/
|
|
PKGNAMESUFFIX= -server
|
|
|
|
MAINTAINER= at@rominet.net
|
|
COMMENT= PPP over SSL virtual private networking (server part)
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --disable-client
|
|
|
|
.if defined(WITH_TCPWRAPPERS)
|
|
CONFIGURE_ARGS+= --with-libwrap
|
|
.endif
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_MAN} ${WRKSRC}/README ${DOCSDIR}
|
|
${INSTALL_MAN} ${WRKSRC}/LISEZ-MOI ${DOCSDIR}
|
|
.endif
|
|
${INSTALL_SCRIPT} ${WRKSRC}/server/pppserver.sh ${PREFIX}/etc/rc.d/ssltunnel.sh.sample
|
|
${INSTALL_DATA} ${WRKSRC}/server/users ${PREFIX}/etc/ssltunnel/users.sample
|
|
|
|
.include <bsd.port.mk>
|