From owner-svn-ports-all@freebsd.org Fri Feb 16 15:41:57 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BB92BF1ECF4; Fri, 16 Feb 2018 15:41:57 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 67636809E9; Fri, 16 Feb 2018 15:41:57 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 624837A8E; Fri, 16 Feb 2018 15:41:57 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w1GFfv6N063274; Fri, 16 Feb 2018 15:41:57 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w1GFfvDQ063272; Fri, 16 Feb 2018 15:41:57 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201802161541.w1GFfvDQ063272@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 16 Feb 2018 15:41:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r462024 - in head/net/pptpclient: . files X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/net/pptpclient: . files X-SVN-Commit-Revision: 462024 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Feb 2018 15:41:58 -0000 Author: sunpoet Date: Fri Feb 16 15:41:56 2018 New Revision: 462024 URL: https://svnweb.freebsd.org/changeset/ports/462024 Log: Convert to options target helper - Sort MAKE_ARGS - Sort PLIST_FILES - Update README: use @FreeBSD.org - Take maintainership Modified: head/net/pptpclient/Makefile head/net/pptpclient/files/README Modified: head/net/pptpclient/Makefile ============================================================================== --- head/net/pptpclient/Makefile Fri Feb 16 15:27:55 2018 (r462023) +++ head/net/pptpclient/Makefile Fri Feb 16 15:41:56 2018 (r462024) @@ -7,7 +7,7 @@ CATEGORIES= net MASTER_SITES= SF/${PORTNAME}/pptp/pptp-${PORTVERSION} DISTNAME= pptp-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= PPTP client for establishing a VPN link with an NT server LICENSE= GPLv2+ @@ -15,20 +15,20 @@ LICENSE_FILE= ${WRKSRC}/COPYING USES= perl5 USE_RC_SUBR= pptp -MAKE_ARGS= CC="${CC}" OPTIMIZE="${CFLAGS}" DEBUG="" \ - PPPD="/usr/sbin/ppp" CFLAGS+= -DUSER_PPP +MAKE_ARGS= CC="${CC}" DEBUG="" OPTIMIZE="${CFLAGS}" PPPD=/usr/sbin/ppp -PLIST_FILES= sbin/pptp man/man8/pptp.8.gz +PLIST_FILES= man/man8/pptp.8.gz sbin/pptp 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 + +do-install-EXAMPLES-on: + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${FILESDIR}/README ${FILESDIR}/ppp.conf ${STAGEDIR}${EXAMPLESDIR} .include Modified: head/net/pptpclient/files/README ============================================================================== --- head/net/pptpclient/files/README Fri Feb 16 15:27:55 2018 (r462023) +++ head/net/pptpclient/files/README Fri Feb 16 15:41:56 2018 (r462024) @@ -27,7 +27,7 @@ Kill it with ^C when you're done. If you want to access the remote system from other hosts on your LAN, be sure to turn on IP forwarding on the PPTP client machine. -John Polstra +John Polstra Starting as a service: @@ -38,4 +38,4 @@ Starting as a service: NB: LABEL can be omitted if you used "default" for LABEL in ppp.conf(5). -Devin Teske +Devin Teske