diff options
author | 2007-07-29 20:17:22 +0000 | |
---|---|---|
committer | 2007-07-29 20:17:22 +0000 | |
commit | 0084f0f02cdc4496e0d1ea3261ff6774c8391bc0 (patch) | |
tree | 60041b4163ae19f9b93ab4f91e0db3d32b6111b0 /media-libs/alsa-lib | |
parent | Finally adding the move from net-www/apache to www-servers/apache (#78622). (diff) | |
download | gentoo-2-0084f0f02cdc4496e0d1ea3261ff6774c8391bc0.tar.gz gentoo-2-0084f0f02cdc4496e0d1ea3261ff6774c8391bc0.tar.bz2 gentoo-2-0084f0f02cdc4496e0d1ea3261ff6774c8391bc0.zip |
Fixing #186365, enabling the PCM plugins asym, dmix, empty, iec958, ioplug, plug, softvol by default till upstream fixes that issue. Thanks to William L. Thomson Jr.
(Portage version: 2.1.3_rc9)
Diffstat (limited to 'media-libs/alsa-lib')
-rw-r--r-- | media-libs/alsa-lib/ChangeLog | 8 | ||||
-rw-r--r-- | media-libs/alsa-lib/alsa-lib-1.0.14a-r1.ebuild | 9 |
2 files changed, 12 insertions, 5 deletions
diff --git a/media-libs/alsa-lib/ChangeLog b/media-libs/alsa-lib/ChangeLog index d7b0a15c14af..304b621e0fd0 100644 --- a/media-libs/alsa-lib/ChangeLog +++ b/media-libs/alsa-lib/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-libs/alsa-lib # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.235 2007/07/01 16:41:31 phreak Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.236 2007/07/29 20:17:22 phreak Exp $ + + 29 Jul 2007; Christian Heim <phreak@gentoo.org> + alsa-lib-1.0.14a-r1.ebuild: + Fixing #186365, enabling the PCM plugins asym, dmix, empty, iec958, ioplug, + plug, softvol by default till upstream fixes that issue. Thanks to William + L. Thomson Jr. *alsa-lib-1.0.14a-r1 (01 Jul 2007) diff --git a/media-libs/alsa-lib/alsa-lib-1.0.14a-r1.ebuild b/media-libs/alsa-lib/alsa-lib-1.0.14a-r1.ebuild index 872137d4eedf..e8779e915738 100644 --- a/media-libs/alsa-lib/alsa-lib-1.0.14a-r1.ebuild +++ b/media-libs/alsa-lib/alsa-lib-1.0.14a-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.14a-r1.ebuild,v 1.1 2007/07/01 16:41:31 phreak Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.14a-r1.ebuild,v 1.2 2007/07/29 20:17:22 phreak Exp $ WANT_AUTOCONF="latest" WANT_AUTOMAKE="1.9" @@ -23,8 +23,7 @@ RDEPEND=">=media-sound/alsa-headers-${PV/14a/14}" DEPEND="${RDEPEND} doc? ( >=app-doc/doxygen-1.2.6 )" -IUSE_PCM_PLUGIN="copy linear route mulaw alaw adpcm rate plug multi shm file null empty share meter hooks lfloat ladspa dmix dshare dsnoop asym iec958 -softvol extplug ioplug" +IUSE_PCM_PLUGIN="adpcm alaw copy dshare dsnoop extplug file hooks ladspa lfloat linear meter mulaw multi null rate route share shm" for plugin in ${IUSE_PCM_PLUGIN}; do IUSE="${IUSE} alsa_pcm_plugins_${plugin}" @@ -45,6 +44,8 @@ src_compile() { # needed to avoid gcc looping internaly use hppa && export CFLAGS="-O1 -pipe" + # Enabling asym, dmix, empty, iec958, ioplug, plug, softvol for now by + # _DEFAULT_ since alsa seems to need it. econf \ --enable-static \ --enable-shared \ @@ -53,7 +54,7 @@ src_compile() { $(use_enable alisp) \ $(use_enable midi instr) \ $(use_enable midi seq) $(use_enable midi aload) \ - "--with-pcm-plugins=${ALSA_PCM_PLUGINS}" \ + "--with-pcm-plugins=asym dmix empty iec958 ioplug plug softvol ${ALSA_PCM_PLUGINS}" \ --disable-dependency-tracking \ || die "configure failed" |