diff options
author | Emanuel Haupt <ehaupt@FreeBSD.org> | 2014-02-08 21:19:56 +0000 |
---|---|---|
committer | Emanuel Haupt <ehaupt@FreeBSD.org> | 2014-02-08 21:19:56 +0000 |
commit | 069a29a27bf8fd1d77a83e25ae20df8dfc4ec3da (patch) | |
tree | a5a4ebd3cb2732115b316e36162f925ba41e7529 /audio | |
parent | 2fab0630c9ed812c0363c2da643c1f76fe995a58 (diff) |
- Fully support staging (there were some ${STAGEDIR} statements but NO_STAGE
was still defined)
- also strip binaries and shared objects
Notes
Notes:
svn path=/head/; revision=343390
Diffstat (limited to 'audio')
-rw-r--r-- | audio/espeak/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/audio/espeak/Makefile b/audio/espeak/Makefile index be951c8a6a4a..c587c956ba09 100644 --- a/audio/espeak/Makefile +++ b/audio/espeak/Makefile @@ -33,7 +33,6 @@ MAKE_ENV+= PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \ CXXFLAGS+= -I${LOCALBASE}/include USES= gmake -NO_STAGE= yes USE_LDCONFIG= yes USE_ZIP= yes @@ -66,5 +65,7 @@ post-patch: post-install: ${MKDIR} ${STAGEDIR}${DOCSDIR} cd ${WRKSRC}/docs && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libespeak.so* .include <bsd.port.mk> |