svn commit: r347785 - in head/misc: . ossp-uuid ossp-uuid-perl

Frederic Culot culot at FreeBSD.org
Mon Mar 10 17:13:45 UTC 2014


Author: culot
Date: Mon Mar 10 17:13:44 2014
New Revision: 347785
URL: http://svnweb.freebsd.org/changeset/ports/347785
QAT: https://qat.redports.org/buildarchive/r347785/

Log:
  - Add misc/ossp-uuid-perl, a stub port of misc/ossp-uuid with Perl
    bindings enabled. This is required for the upcoming new
    devel/p5-Iodef-Pb-Simple port
  - Register CONFLICTS and PKGNAMESUFFIX in misc/ossp-uuid
  
  Approved by:	vd@ (maintainer, via email)

Added:
  head/misc/ossp-uuid-perl/
  head/misc/ossp-uuid-perl/Makefile   (contents, props changed)
Modified:
  head/misc/Makefile
  head/misc/ossp-uuid/Makefile

Modified: head/misc/Makefile
==============================================================================
--- head/misc/Makefile	Mon Mar 10 17:01:36 2014	(r347784)
+++ head/misc/Makefile	Mon Mar 10 17:13:44 2014	(r347785)
@@ -287,6 +287,7 @@
     SUBDIR += openr2
     SUBDIR += orville-write
     SUBDIR += ossp-uuid
+    SUBDIR += ossp-uuid-perl
     SUBDIR += otter
     SUBDIR += p5-Acme-ButFirst
     SUBDIR += p5-Array-Compare

Added: head/misc/ossp-uuid-perl/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/ossp-uuid-perl/Makefile	Mon Mar 10 17:13:44 2014	(r347785)
@@ -0,0 +1,10 @@
+# Created by: Frederic Culot <culot at FreeBSD.org>
+# $FreeBSD$
+
+COMMENT=	ossp-uuid with Perl bindings
+
+MASTERDIR=	${.CURDIR}/../ossp-uuid
+
+WITH_PERL=	yes
+
+.include "${MASTERDIR}/Makefile"

Modified: head/misc/ossp-uuid/Makefile
==============================================================================
--- head/misc/ossp-uuid/Makefile	Mon Mar 10 17:01:36 2014	(r347784)
+++ head/misc/ossp-uuid/Makefile	Mon Mar 10 17:13:44 2014	(r347785)
@@ -3,7 +3,7 @@
 
 PORTNAME=	uuid
 PORTVERSION=	1.6.2
-PORTREVISION=	4
+PORTREVISION=	5
 CATEGORIES=	misc devel
 MASTER_SITES=	${MASTER_SITE_OSSP}
 MASTER_SITE_SUBDIR=	lib/${PORTNAME}
@@ -20,6 +20,8 @@ CONFIGURE_ARGS=	--disable-shared --enabl
 		--includedir=${PREFIX}/include/ossp
 
 .if defined(WITH_PERL)
+PKGNAMESUFFIX=	-perl
+CONFLICTS=	ossp-uuid-[0-9]*
 MAKE_JOBS_UNSAFE=	yes
 USES+=		perl5
 CONFIGURE_ENV+=	PERL=${PERL5}
@@ -30,6 +32,7 @@ CONFIGURE_ARGS+=--with-perl
 MAKE_ARGS+=	WITH_PERL=yes
 PLIST_SUB+=	WITH_PERL=''
 .else
+CONFLICTS=	ossp-uuid-perl-[0-9]*
 PLIST_SUB+=	WITH_PERL='@comment '
 .endif
 


More information about the svn-ports-head mailing list