diff options
author | jlam <jlam@pkgsrc.org> | 2001-06-12 20:33:00 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-06-12 20:33:00 +0000 |
commit | 328a35f96fe7ec11093e3847c0943eb3a41f2b51 (patch) | |
tree | 154e7feac1d9bd8853bbdc9b7ffa45c13b83f32f /audio | |
parent | 8848ee6991e29c3c0d97e1c89906ee2b34645484 (diff) | |
download | pkgsrc-328a35f96fe7ec11093e3847c0943eb3a41f2b51.tar.gz |
LIBS is automatically added to CONFIGURE_ENV by bsd.pkg.mk if
GNU_CONFIGURE is defined, so simply set LIBS to the appropriate value.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/id3ed/Makefile | 3 | ||||
-rw-r--r-- | audio/kdemultimedia2/Makefile | 4 | ||||
-rw-r--r-- | audio/lame/Makefile | 3 | ||||
-rw-r--r-- | audio/splay/Makefile | 4 |
4 files changed, 6 insertions, 8 deletions
diff --git a/audio/id3ed/Makefile b/audio/id3ed/Makefile index da9a5e684bb..92385811065 100644 --- a/audio/id3ed/Makefile +++ b/audio/id3ed/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2001/06/11 02:05:07 jlam Exp $ +# $NetBSD: Makefile,v 1.12 2001/06/12 20:33:00 jlam Exp $ # DISTNAME= id3ed-1.10.2 @@ -16,7 +16,6 @@ USE_GNU_READLINE= # uses rl_startup_hook .include "../../devel/readline/buildlink.mk" -CONFIGURE_ENV+= LIBS="${LIBS}" LIBS+= ${LDFLAGS} post-extract: diff --git a/audio/kdemultimedia2/Makefile b/audio/kdemultimedia2/Makefile index a2260d06c6e..8eb5582e7ca 100644 --- a/audio/kdemultimedia2/Makefile +++ b/audio/kdemultimedia2/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2001/04/17 16:03:18 skrll Exp $ +# $NetBSD: Makefile,v 1.4 2001/06/12 20:33:00 jlam Exp $ DISTNAME= kdemultimedia-2.1 CATEGORIES= audio kde @@ -10,7 +10,7 @@ DEPENDS+= pth>=1.3.7:../../devel/pth .include "../../x11/kde2/Makefile.part2" -CONFIGURE_ENV+= LIBS="-Wl,--export-dynamic" +LIBS= -Wl,--export-dynamic post-patch: ${CP} ${WRKSRC}/kscd/config.h.std ${WRKSRC}/kscd/config.h diff --git a/audio/lame/Makefile b/audio/lame/Makefile index f29bbbfad3a..785b6ab43b5 100644 --- a/audio/lame/Makefile +++ b/audio/lame/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.13 2001/03/24 20:22:50 zuntum Exp $ +# $NetBSD: Makefile,v 1.14 2001/06/12 20:33:01 jlam Exp $ # VERS= 3.87 @@ -45,7 +45,6 @@ CFLAGS+= -O2 -Wall -fomit-frame-pointer -ffast-math -funroll-loops \ -finline-functions -DFLOAT=double # optimized libffm (free fast math library) LIBS+= -L${PREFIX}/lib -Wl,-R${PREFIX}/lib -lffm -lm -CONFIGURE_ENV+= LIBS="${LIBS}" .endif .include "../../mk/bsd.pkg.mk" diff --git a/audio/splay/Makefile b/audio/splay/Makefile index 7c70d5d01be..0e806590cf7 100644 --- a/audio/splay/Makefile +++ b/audio/splay/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2001/02/16 13:30:50 wiz Exp $ +# $NetBSD: Makefile,v 1.12 2001/06/12 20:33:01 jlam Exp $ # FreeBSD Id: Makefile,v 1.4 1997/08/09 23:37:33 fenner Exp # @@ -21,6 +21,6 @@ NOT_FOR_PLATFORM= *-*-sparc *-*-m68k *-*-macppc *-*-sparc64 GNU_CONFIGURE= yes CONFIGURE_ARGS= --without-xsplay --without-pthread -CONFIGURE_ENV= LIBS="${LIBS} -lossaudio" +LIBS+= -lossaudio .include "../../mk/bsd.pkg.mk" |