svn commit: r403951 - head/sysutils/cfengine36

Cy Schubert cy at FreeBSD.org
Fri Dec 18 02:38:57 UTC 2015


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]*


More information about the svn-ports-head mailing list