svn commit: r354397 - head/audio/pms

Thomas Zander riggs at FreeBSD.org
Sun May 18 07:12:26 UTC 2014


Author: riggs
Date: Sun May 18 07:12:26 2014
New Revision: 354397
URL: http://svnweb.freebsd.org/changeset/ports/354397
QAT: https://qat.redports.org/buildarchive/r354397/

Log:
  - Introduce OPTION for using boost_regex
  - Fix stripping of installed binaries
  - USE_* -> USES
  - Bump PORTREVISION
  
  Approved by:	thierry (mentor)

Modified:
  head/audio/pms/Makefile

Modified: head/audio/pms/Makefile
==============================================================================
--- head/audio/pms/Makefile	Sun May 18 06:54:46 2014	(r354396)
+++ head/audio/pms/Makefile	Sun May 18 07:12:26 2014	(r354397)
@@ -3,7 +3,7 @@
 
 PORTNAME=	pms
 PORTVERSION=	0.42
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	audio
 MASTER_SITES=	SF
 MASTER_SITE_SUBDIR=	${PORTNAME}/${PORTNAME}/${PORTVERSION}
@@ -13,19 +13,23 @@ COMMENT=	A ncurses-based client for the 
 
 LICENSE=	GPLv3
 
-LIB_DEPENDS=	libboost_regex.so:${PORTSDIR}/devel/boost-libs
-
-USES=		pkgconfig
-USE_BZIP2=	yes
+USES=		pkgconfig tar:bzip2
 GNU_CONFIGURE=	yes
 USE_GNOME=	glib20
 
 PLIST_FILES=	bin/${PORTNAME} \
 		man/man1/pms.1.gz
 
-CONFIGURE_ENV=	STRIP=${STRIP_CMD}
-
 CPPFLAGS+=	-I${LOCALBASE}/include
 LDFLAGS+=	-L${LOCALBASE}/lib
 
+OPTIONS_DEFINE=	REGEX
+
+REGEX_DESC=	Support boost regex pattern matching
+
+REGEX_LIB_DEPENDS=	libboost_regex.so:${PORTSDIR}/devel/boost-libs
+REGEX_CONFIGURE_ENABLE=	regex
+
+INSTALL_TARGET=	install-strip
+
 .include <bsd.port.mk>


More information about the svn-ports-all mailing list