diff options
author | netchild <netchild@FreeBSD.org> | 2014-01-18 05:41:12 +0800 |
---|---|---|
committer | netchild <netchild@FreeBSD.org> | 2014-01-18 05:41:12 +0800 |
commit | 6713467dde68d0860131d5f4b1c810d9903f290c (patch) | |
tree | d91ab4c8437ce0377e9e612da3dee133e34caeb6 /audio | |
parent | 3b824250c009ae84ad30890720de44826b6f8f65 (diff) | |
download | freebsd-ports-gnome-6713467dde68d0860131d5f4b1c810d9903f290c.tar.gz freebsd-ports-gnome-6713467dde68d0860131d5f4b1c810d9903f290c.tar.zst freebsd-ports-gnome-6713467dde68d0860131d5f4b1c810d9903f290c.zip |
support stagedir
PR: 185565
Submitted by: Takefu <takefu@airport.fm>
Diffstat (limited to 'audio')
-rw-r--r-- | audio/lame/Makefile | 8 | ||||
-rw-r--r-- | audio/lame/pkg-plist | 1 |
2 files changed, 4 insertions, 5 deletions
diff --git a/audio/lame/Makefile b/audio/lame/Makefile index fe0ab01dee76..036da9ccc5c0 100644 --- a/audio/lame/Makefile +++ b/audio/lame/Makefile @@ -11,16 +11,14 @@ MAINTAINER= netchild@FreeBSD.org COMMENT= Fast MP3 encoder kit USES= gmake iconv -NO_STAGE= yes USE_AUTOTOOLS= libtool USE_LDCONFIG= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-nasm --enable-mp3rtp --disable-gtktest +CONFIGURE_ARGS_PREFIX= ${STAGEDIR}${PREFIX} RESTRICTED= patent issues, see http://www.mp3licensing.com/ -MAN1= lame.1 - DOC_FILES= API LICENSE README TODO USAGE .include <bsd.port.pre.mk> @@ -46,9 +44,9 @@ do-install: post-install: install-doc install-doc: - @${MKDIR} ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} .for file in ${DOC_FILES} - @${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} + @${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${DOCSDIR} .endfor .endif diff --git a/audio/lame/pkg-plist b/audio/lame/pkg-plist index 3b093e340282..183d7aa0a3e1 100644 --- a/audio/lame/pkg-plist +++ b/audio/lame/pkg-plist @@ -1,5 +1,6 @@ bin/lame bin/mp3rtp +man/man1/lame.1.gz include/lame/lame.h lib/libmp3lame.a lib/libmp3lame.la |