svn commit: r339619 - head/devel/protobuf

Matthias Andree mandree at FreeBSD.org
Mon Jan 13 18:44:46 UTC 2014


Author: mandree
Date: Mon Jan 13 18:44:45 2014
New Revision: 339619
URL: http://svnweb.freebsd.org/changeset/ports/339619

Log:
  - USE_GMAKE->USES [1]
  - Add missing STRIP_CMD for .so files to please stage-qa in DEVELOPER=yes mode.
  
  Approved by:	portmgr@ (implicit, blanket) [1]

Modified:
  head/devel/protobuf/Makefile   (contents, props changed)

Modified: head/devel/protobuf/Makefile
==============================================================================
--- head/devel/protobuf/Makefile	Mon Jan 13 18:21:51 2014	(r339618)
+++ head/devel/protobuf/Makefile	Mon Jan 13 18:44:45 2014	(r339619)
@@ -10,17 +10,21 @@ MASTER_SITES=	${MASTER_SITE_GOOGLE_CODE}
 MAINTAINER=	vanilla at FreeBSD.org
 COMMENT=	A data interchange format library
 
-USE_GMAKE=	yes
 USE_BZIP2=	yes
 GNU_CONFIGURE=	yes
 USE_LDCONFIG=	yes
-USES=		pathfix pkgconfig
+USES=		gmake pathfix pkgconfig
 ONLY_FOR_ARCHS=	i386 amd64
 
 # clang will generate code that just doesn't work with clementine-player
 # if this isn't compiled as though it were C99.
 CFLAGS+=	-std=c99
 
+post-install:
+	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libprotobuf-lite.so.8
+	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libprotobuf.so.8
+	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libprotoc.so.8
+
 tests: build
 	@(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} check)
 


More information about the svn-ports-all mailing list