Date: Sat, 4 Jan 2014 17:56:05 +0000 (UTC) From: Baptiste Daroussin <bapt@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r338656 - head/audio/libtremor Message-ID: <201401041756.s04Hu55a026853@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bapt Date: Sat Jan 4 17:56:05 2014 New Revision: 338656 URL: http://svnweb.freebsd.org/changeset/ports/338656 Log: Support stage Strip binaries Modified: head/audio/libtremor/Makefile Modified: head/audio/libtremor/Makefile ============================================================================== --- head/audio/libtremor/Makefile Sat Jan 4 17:52:04 2014 (r338655) +++ head/audio/libtremor/Makefile Sat Jan 4 17:56:05 2014 (r338656) @@ -15,7 +15,6 @@ COMMENT= Integer-only fully Ogg Vorbis c SNAP_DATE= 02132004 WRKSRC= ${WRKDIR}/Tremor USE_AUTOTOOLS= automake autoconf libtool -NO_STAGE= yes GNU_CONFIGURE= yes USE_LDCONFIG= yes @@ -28,17 +27,18 @@ pre-configure: do-install: for i in ${WRKSRC}/.libs/libvorbisidec.so.1 \ - ${WRKSRC}/.libs/libvorbisidec.so \ - ${WRKSRC}/.libs/libvorbisidec.a ; do \ - ${INSTALL_SCRIPT} $$i ${PREFIX}/lib ; \ + ${WRKSRC}/.libs/libvorbisidec.so; do \ + ${INSTALL_LIB} $$i ${STAGEDIR}${PREFIX}/lib ; \ done - @${MKDIR} ${PREFIX}/include/tremor + ${INSTALL_DATA} ${WRKSRC}/.libs/libvorbisidec.a \ + ${STAGEDIR}${PREFIX}/lib + @${MKDIR} ${STAGEDIR}${PREFIX}/include/tremor for i in ${WRKSRC}/config_types.h \ ${WRKSRC}/ivorbiscodec.h \ ${WRKSRC}/ivorbisfile.h \ ${WRKSRC}/ogg.h \ ${WRKSRC}/os_types.h ; do \ - ${INSTALL_SCRIPT} $$i ${PREFIX}/include/tremor ; \ + ${INSTALL_SCRIPT} $$i ${STAGEDIR}${PREFIX}/include/tremor ; \ done .include <bsd.port.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201401041756.s04Hu55a026853>