mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-19 03:52:17 +00:00
b809998b00
Released 29th November 2016 - close a memory leak in pqueue, - avoid spurious error about /bin/ip on FreeBSD, - fix compiler warnings, - avoid clobbering heap (RHBZ #1183627), - fix use after free in call close request handler, - make clean to clean pptpsetup.8 (Debian #831032), - add --missing-window option (Debian #680455, Ubuntu #681617), - randomise call-id (Debian #721963), - replace gethostbyname(3) with getaddrinfo(3), - fix typo in pptp_ctrl manpage, - place pptpsetup manpage in correct section, - don't set build flags; use defaults, - remove pptpsetup.8 from source as it is generated, - fix for (null) in "pptp: GRE-to-PPP gateway on (null)".
34 lines
868 B
Makefile
34 lines
868 B
Makefile
# Created by: John Polstra <jdp@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pptpclient
|
|
PORTVERSION= 1.9.0
|
|
CATEGORIES= net
|
|
MASTER_SITES= SF/${PORTNAME}/pptp/pptp-${PORTVERSION}
|
|
DISTNAME= pptp-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= PPTP client for establishing a VPN link with an NT server
|
|
|
|
LICENSE= GPLv2+
|
|
|
|
USES= perl5
|
|
USE_RC_SUBR= pptp
|
|
MAKE_ARGS= CC="${CC}" OPTIMIZE="${CFLAGS}" DEBUG="" \
|
|
PPPD="/usr/sbin/ppp"
|
|
CFLAGS+= -DUSER_PPP
|
|
|
|
PLIST_FILES= sbin/pptp man/man8/pptp.8.gz
|
|
PORTEXAMPLES= README ppp.conf
|
|
|
|
OPTIONS_DEFINE= EXAMPLES
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/pptp ${STAGEDIR}${PREFIX}/sbin
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${FILESDIR}/README ${STAGEDIR}${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${FILESDIR}/ppp.conf ${STAGEDIR}${EXAMPLESDIR}
|
|
${INSTALL_MAN} ${WRKSRC}/pptp.8 ${STAGEDIR}${MANPREFIX}/man/man8
|
|
|
|
.include <bsd.port.mk>
|