diff options
author | jmmv <jmmv@pkgsrc.org> | 2005-03-08 17:05:17 +0000 |
---|---|---|
committer | jmmv <jmmv@pkgsrc.org> | 2005-03-08 17:05:17 +0000 |
commit | 2f0dde48d355b91a3393832b0d3f68b5bfd041e8 (patch) | |
tree | 72401ac672a7d2837afe5702212ae7b8e1b77522 /audio/bmp | |
parent | 038c54925c7d1bf02eb3a6b5bb2bf0c65ad2e830 (diff) | |
download | pkgsrc-2f0dde48d355b91a3393832b0d3f68b5bfd041e8.tar.gz |
Add an option (xmms-eq) to enable XMMS's equalizer legacy code (off by
default, so that the package does not change). The new code does strange
things with old presets (dunno if there is a bug or something has really
changed; anyway, it's not our fault, so all we can do is provide an option).
Diffstat (limited to 'audio/bmp')
-rw-r--r-- | audio/bmp/Makefile.common | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/audio/bmp/Makefile.common b/audio/bmp/Makefile.common index 5aea40c71bd..59526353b7e 100644 --- a/audio/bmp/Makefile.common +++ b/audio/bmp/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.6 2004/12/25 15:22:36 jmmv Exp $ +# $NetBSD: Makefile.common,v 1.7 2005/03/08 17:05:17 jmmv Exp $ # DISTNAME= bmp-0.9.7 @@ -30,7 +30,7 @@ CONFIGURE_ARGS+= --disable-vorbis PKGCONFIG_OVERRIDE+= bmp.pc PKG_OPTIONS_VAR= PKG_OPTIONS.bmp -PKG_SUPPORTED_OPTIONS= gnome +PKG_SUPPORTED_OPTIONS= gnome xmms-eq .include "../../mk/bsd.options.mk" .include "../../mk/bsd.prefs.mk" @@ -42,6 +42,10 @@ CONFIGURE_ARGS+= --enable-gnome-vfs . include "../../sysutils/gnome-vfs2/buildlink3.mk" .endif +.if !empty(PKG_OPTIONS:Mxmms-eq) +CONFIGURE_ARGS+= --with-xmms-eq +.endif + .if ${OPSYS} == "NetBSD" RAWPART!= /sbin/sysctl -n kern.rawpartition | ${TR} 0-9 a-j CONFIGURE_ARGS+= --with-dev-dsp=${DEVOSSSOUND} \ |