Date: Fri, 18 Dec 2015 02:38:56 +0000 (UTC) From: Cy Schubert <cy@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r403951 - head/sysutils/cfengine36 Message-ID: <201512180238.tBI2cuH8097408@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: cy Date: Fri Dec 18 02:38:56 2015 New Revision: 403951 URL: https://svnweb.freebsd.org/changeset/ports/403951 Log: Conditionally set portepoch when not being built by the master port. Modified: head/sysutils/cfengine36/Makefile Modified: head/sysutils/cfengine36/Makefile ============================================================================== --- head/sysutils/cfengine36/Makefile Fri Dec 18 02:17:57 2015 (r403950) +++ head/sysutils/cfengine36/Makefile Fri Dec 18 02:38:56 2015 (r403951) @@ -3,7 +3,10 @@ PORTNAME= cfengine PORTVERSION= 3.6.6 -PORTEPOCH= 2 +.if !defined(MASTERDIR) +PKGNAMESUFFIX= 36 +PORTEPOCH?= 2 +.endif CATEGORIES= sysutils MASTER_SITES= https://cfengine-package-repos.s3.amazonaws.com/tarballs/ DISTFILES= ${PORTNAME}-${PORTVERSION}-2.tar.gz @@ -17,10 +20,6 @@ LICENSE= GPLv3 CPE_VENDOR= gnu -.if !defined(MASTERDIR) -PKGNAMESUFFIX= 36 -.endif - FETCH_BEFORE_ARGS= -o ${DISTDIR}/${DISTFILES} CONFLICTS= cfengine-[234]*
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512180238.tBI2cuH8097408>