diff options
author | Jeremy Huddleston <eradicator@gentoo.org> | 2005-02-03 21:37:29 +0000 |
---|---|---|
committer | Jeremy Huddleston <eradicator@gentoo.org> | 2005-02-03 21:37:29 +0000 |
commit | 6bb017ffbe1efe67892a01522575e3f1e4a29734 (patch) | |
tree | 1d8967aec2e834b7e9dd8a1466ac30c6336e04ad /media-libs | |
parent | QA: need-kde after R/DEPEND (diff) | |
download | gentoo-2-6bb017ffbe1efe67892a01522575e3f1e4a29734.tar.gz gentoo-2-6bb017ffbe1efe67892a01522575e3f1e4a29734.tar.bz2 gentoo-2-6bb017ffbe1efe67892a01522575e3f1e4a29734.zip |
Stop caring about the alsa-lib-0.5 crap. Always build shared and static. This was a misuse of the static USE flag.
(Portage version: 2.0.51-r15)
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/alsa-lib/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/alsa-lib/alsa-lib-1.0.8.ebuild | 10 |
2 files changed, 9 insertions, 8 deletions
diff --git a/media-libs/alsa-lib/ChangeLog b/media-libs/alsa-lib/ChangeLog index 74d189747c9d..3b772ac4c058 100644 --- a/media-libs/alsa-lib/ChangeLog +++ b/media-libs/alsa-lib/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/alsa-lib # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.100 2005/01/25 20:05:44 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.101 2005/02/03 21:37:29 eradicator Exp $ + + 03 Feb 2005; Jeremy Huddleston <eradicator@gentoo.org> + alsa-lib-1.0.8.ebuild: + Stop caring about the alsa-lib-0.5 crap. Always build shared and static. + This was a misuse of the static USE flag. 25 Jan 2005; Markus Rothe <corsair@gentoo.org> alsa-lib-1.0.7.ebuild: Stable on ppc64 diff --git a/media-libs/alsa-lib/alsa-lib-1.0.8.ebuild b/media-libs/alsa-lib/alsa-lib-1.0.8.ebuild index 5961e909949e..f35ceebe2d14 100644 --- a/media-libs/alsa-lib/alsa-lib-1.0.8.ebuild +++ b/media-libs/alsa-lib/alsa-lib-1.0.8.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2005 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.8.ebuild,v 1.1 2005/01/23 07:02:21 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.8.ebuild,v 1.2 2005/02/03 21:37:29 eradicator Exp $ -IUSE="static jack doc" +IUSE="jack doc" inherit eutils @@ -31,7 +31,7 @@ src_compile() { # needed to avoid gcc looping internaly use hppa && export CFLAGS="-O1 -pipe" - econf $(use_enable static) --enable-shared=yes || die + econf --enable-static=yes --enable-shared=yes || die emake || die if use doc; then @@ -42,15 +42,11 @@ src_compile() { src_install() { make DESTDIR="${D}" install || die "make install failed" - preserve_old_lib /usr/$(get_libdir)/libasound.so.1 - dodoc ChangeLog COPYING TODO use doc && dohtml -r doc/doxygen/html/* } pkg_postinst() { - preserve_old_lib_notify /usr/$(get_libdir)/libasound.so.1 - einfo "If you are using an emu10k1 based sound card, and you are upgrading" einfo "from a version of alsalib <1.0.6, you will need to recompile packages" einfo "that link against alsa-lib due to some ABI changes between 1.0.5 and" |