f6b6062096
* Add detailed option descriptions to pptp(8) man page. * Move OpenBSD configuration examples from text file ${PREFIX}/share/doc/pptp/USING into pptp(8) man page, and remove patch to ${WRKSRC}/USING. Extend and revise examples while at it. * Add patch to ${WRKSRC}/util.c to make pptp log normal informational messages with level LOG_INFO instead of LOG_NOTICE. * Update pkg/DESCR with a new description based on upstream web site. * Fix URL to list of pptp security flaws in pkg/MESSAGE. * [Re-]Create patches with `make update-patches'. * Add patch to ${WRKSRC}/pptp_gre.c to automatically enable the net.inet.gre.allow sysctl before trying to bind the GRE socket. * Remove '@sysctl net.inet.gre.allow=1' from PLIST. From: maintainer Stefan Sperling
43 lines
1.1 KiB
Makefile
43 lines
1.1 KiB
Makefile
# $OpenBSD: Makefile,v 1.18 2007/10/23 22:13:38 naddy Exp $
|
|
# $NetBSD: Makefile,v 1.1.1.1 2000/04/10 01:14:01 jtk Exp $
|
|
|
|
COMMENT= PPTP client package for Microsoft VPN servers
|
|
|
|
DISTNAME= pptp-1.7.1
|
|
PKGNAME= ${DISTNAME}p0
|
|
CATEGORIES= net
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=pptpclient/}
|
|
|
|
HOMEPAGE= http://pptpclient.sf.net
|
|
|
|
MAINTAINER= Stefan Sperling <stsp@stsp.name>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
WANTLIB= c util
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
MAKE_ENV+= PPPD=/usr/sbin/ppp
|
|
CFLAGS+= -DUSER_PPP
|
|
|
|
DIRS= Documentation Reference
|
|
|
|
post-patch:
|
|
@cd ${WRKSRC}; sed -e s,PREFIX,${PREFIX}, < \
|
|
${FILESDIR}/pptp_8 > pptp.8
|
|
@perl -pi -e "s,PREFIX,${PREFIX}," ${WRKSRC}/USING
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/pptp ${PREFIX}/sbin
|
|
${INSTALL_MAN} ${WRKSRC}/pptp.8 ${PREFIX}/man/man8
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/pptp
|
|
${INSTALL_DATA} ${WRKSRC}/USING ${PREFIX}/share/doc/pptp/
|
|
@cd ${WRKSRC} && \
|
|
tar cf - ${DIRS} | (cd ${PREFIX}/share/doc/pptp && tar -xf -)
|
|
|
|
.include <bsd.port.mk>
|