From owner-svn-ports-head@freebsd.org Thu Jul 13 08:20:36 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5666DD9B4BF; Thu, 13 Jul 2017 08:20:36 +0000 (UTC) (envelope-from eugen@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 mx1.freebsd.org (Postfix) with ESMTPS id 25B3D6E54F; Thu, 13 Jul 2017 08:20:36 +0000 (UTC) (envelope-from eugen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v6D8KZCp055665; Thu, 13 Jul 2017 08:20:35 GMT (envelope-from eugen@FreeBSD.org) Received: (from eugen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v6D8KZ5d055664; Thu, 13 Jul 2017 08:20:35 GMT (envelope-from eugen@FreeBSD.org) Message-Id: <201707130820.v6D8KZ5d055664@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: eugen set sender to eugen@FreeBSD.org using -f From: Eugene Grosbein Date: Thu, 13 Jul 2017 08:20:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r445637 - head/net/openpgm X-SVN-Group: ports-head X-SVN-Commit-Author: eugen X-SVN-Commit-Paths: head/net/openpgm X-SVN-Commit-Revision: 445637 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Jul 2017 08:20:36 -0000 Author: eugen Date: Thu Jul 13 08:20:35 2017 New Revision: 445637 URL: https://svnweb.freebsd.org/changeset/ports/445637 Log: Remove perl from runtime depends: perl is not used by openpgm in runtime, only for build. While here, copy docs and examples only if corresponding options turned on. PR: 217893 Submitted by: Anton Yuzhaninov Approved by: vg (maintainer timeout, 3+ months) Approved by: az (mentor). Modified: head/net/openpgm/Makefile Modified: head/net/openpgm/Makefile ============================================================================== --- head/net/openpgm/Makefile Thu Jul 13 07:48:02 2017 (r445636) +++ head/net/openpgm/Makefile Thu Jul 13 08:20:35 2017 (r445637) @@ -4,7 +4,7 @@ PORTNAME= openpgm DISTVERSIONPREFIX= release- DISTVERSION= 5-2-122 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net devel MAINTAINER= vg@FreeBSD.org @@ -20,6 +20,7 @@ GH_ACCOUNT= steve-o GNU_CONFIGURE= yes USES= autoreconf pathfix perl5 libtool python:build +USE_PERL5= build USE_LDCONFIG= yes WRKSRC_SUBDIR= openpgm/pgm INSTALL_TARGET= install-strip @@ -28,9 +29,11 @@ OPTIONS_DEFINE= DOCS EXAMPLES PORTDOCS= draft-ietf-rmt-bb-pgmcc-03.txt rfc3208.txt PORTEXAMPLES= * -post-install: +post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/../doc/,} ${STAGEDIR}${DOCSDIR} + +post-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} (cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR})