diff options
author | bapt <bapt@FreeBSD.org> | 2013-11-25 02:53:16 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-11-25 02:53:16 +0800 |
commit | 0d65ad2fb28089aeaae7a2db667755a8eff27de9 (patch) | |
tree | 5571b45b2830fcf71c598e59ce3b87ce5953d0ec /audio/bmp-flac | |
parent | d81588ae97c11a3d95e0a9f455efc2034316f583 (diff) | |
download | freebsd-ports-gnome-0d65ad2fb28089aeaae7a2db667755a8eff27de9.tar.gz freebsd-ports-gnome-0d65ad2fb28089aeaae7a2db667755a8eff27de9.tar.zst freebsd-ports-gnome-0d65ad2fb28089aeaae7a2db667755a8eff27de9.zip |
modernize LIB_DEPENDS
Support staging
Diffstat (limited to 'audio/bmp-flac')
-rw-r--r-- | audio/bmp-flac/Makefile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/audio/bmp-flac/Makefile b/audio/bmp-flac/Makefile index 58c81b6e2745..bfedc2248740 100644 --- a/audio/bmp-flac/Makefile +++ b/audio/bmp-flac/Makefile @@ -12,12 +12,11 @@ DISTNAME= ${PORTNAME}-CVS-${PORTVERSION}-with-bmp-plugin MAINTAINER= ports@FreeBSD.org COMMENT= FLAC input plugin for beep-media-player -LIB_DEPENDS= beep.2:${PORTSDIR}/multimedia/beep-media-player \ - FLAC:${PORTSDIR}/audio/flac +LIB_DEPENDS= libbeep.so:${PORTSDIR}/multimedia/beep-media-player \ + libFLAC.so:${PORTSDIR}/audio/flac PLIST_FILES= lib/bmp/Input/libbmp-flac.so -NO_STAGE= yes USES= iconv pkgconfig USE_BZIP2= yes GNU_CONFIGURE= yes @@ -38,8 +37,8 @@ post-configure: # This is to avoid libtool running ldconfig -m ${LOCALBASE}/lib/bmp/Input do-install: - @${MKDIR} ${PREFIX}/lib/bmp/Input - ${INSTALL_DATA} ${WRKSRC}/src/plugin_bmp/.libs/libbmp-flac.so ${PREFIX}/lib/bmp/Input + @${MKDIR} ${STAGEDIR}${PREFIX}/lib/bmp/Input + ${INSTALL_LIB} ${WRKSRC}/src/plugin_bmp/.libs/libbmp-flac.so ${STAGEDIR}${PREFIX}/lib/bmp/Input .include <bsd.port.pre.mk> |