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 | a1cd7a40b0dc13ff3bf8b046df6d85b960b480ad (patch) | |
tree | 72401ac672a7d2837afe5702212ae7b8e1b77522 /audio | |
parent | 99134d6047f2d9636bc08f80a0e943ac74ccbf81 (diff) | |
download | pkgsrc-a1cd7a40b0dc13ff3bf8b046df6d85b960b480ad.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')
-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} \ |