Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 13 Jan 2014 18:44:46 +0000 (UTC)
From:      Matthias Andree <mandree@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r339619 - head/devel/protobuf
Message-ID:  <201401131844.s0DIikZq012532@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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)
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201401131844.s0DIikZq012532>