diff options
author | Nick Hadaway <raker@gentoo.org> | 2002-10-23 23:52:11 +0000 |
---|---|---|
committer | Nick Hadaway <raker@gentoo.org> | 2002-10-23 23:52:11 +0000 |
commit | f154df70421ba411c7e03f78d38b9d431d4c3bff (patch) | |
tree | 678498d1dca20b8b9b643ed7cdf7a825be343a31 /media-libs | |
parent | added ppc to keywords (diff) | |
download | gentoo-2-f154df70421ba411c7e03f78d38b9d431d4c3bff.tar.gz gentoo-2-f154df70421ba411c7e03f78d38b9d431d4c3bff.tar.bz2 gentoo-2-f154df70421ba411c7e03f78d38b9d431d4c3bff.zip |
fix for some alsa-lib linking problems.
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/alsa-lib/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/alsa-lib/alsa-lib-0.9.0_rc4.ebuild | 8 |
2 files changed, 13 insertions, 2 deletions
diff --git a/media-libs/alsa-lib/ChangeLog b/media-libs/alsa-lib/ChangeLog index 810cc3edf774..e0981e99d734 100644 --- a/media-libs/alsa-lib/ChangeLog +++ b/media-libs/alsa-lib/ChangeLog @@ -1,9 +1,14 @@ # ChangeLog for media-libs/alsa-lib # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.8 2002/10/23 20:07:21 agenkin Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.9 2002/10/23 23:52:11 raker Exp $ *alsa-lib-0.9.0_rc4 (23 Oct 2002) + 23 Oct 2002: Nick Hadaway <raker@gentoo.org> alsa-lib-0.9.0_rc4 : + updated ebuild to run libtoolize --copy --force and aclocal before + configuring and installing. The linking problems appear to disappear + after this. + 23 Oct 2002; Arcady Genkin <agenkin@gentoo.org> alsa-lib-0.9.0_rc4 Quick update to rc4. diff --git a/media-libs/alsa-lib/alsa-lib-0.9.0_rc4.ebuild b/media-libs/alsa-lib/alsa-lib-0.9.0_rc4.ebuild index 3b19f90b07cf..ec372f3ea0ff 100644 --- a/media-libs/alsa-lib/alsa-lib-0.9.0_rc4.ebuild +++ b/media-libs/alsa-lib/alsa-lib-0.9.0_rc4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-0.9.0_rc4.ebuild,v 1.1 2002/10/23 20:07:36 agenkin Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-0.9.0_rc4.ebuild,v 1.2 2002/10/23 23:52:11 raker Exp $ MY_P=${P/_rc/rc} S=${WORKDIR}/${MY_P} @@ -18,6 +18,12 @@ LICENSE="GPL-2 LGPL-2.1" src_compile() { + # added to resolve linking problems. + # See... + # http://sourceforge.net/mailarchive/forum.php?thread_id=1220474&forum_id=1752 + libtoolize --copy --force + aclocal + econf || die "./configure failed" make || die "make failed" |