diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-01-07 01:36:06 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-01-07 01:36:06 +0000 |
commit | 7e09f89799590f9ba91cea25794e16c4c26e8de4 (patch) | |
tree | 64b2300e0bac18855a8cd115374b5d107de7b89a /media-libs | |
parent | Cleanup arch crap in DEPEND (learn how to use use.mask people) and add arm su... (diff) | |
download | gentoo-2-7e09f89799590f9ba91cea25794e16c4c26e8de4.tar.gz gentoo-2-7e09f89799590f9ba91cea25794e16c4c26e8de4.tar.bz2 gentoo-2-7e09f89799590f9ba91cea25794e16c4c26e8de4.zip |
Remove broken static/pic handling and add arm love.
(Portage version: 2.1_pre3-r1)
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/libsamplerate/ChangeLog | 8 | ||||
-rw-r--r-- | media-libs/libsamplerate/libsamplerate-0.1.2.ebuild | 20 |
2 files changed, 12 insertions, 16 deletions
diff --git a/media-libs/libsamplerate/ChangeLog b/media-libs/libsamplerate/ChangeLog index 5c65f7dcd736..b359aa6d19f2 100644 --- a/media-libs/libsamplerate/ChangeLog +++ b/media-libs/libsamplerate/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-libs/libsamplerate -# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libsamplerate/ChangeLog,v 1.32 2005/09/13 20:17:49 agriffis Exp $ +# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libsamplerate/ChangeLog,v 1.33 2006/01/07 01:36:06 vapier Exp $ + + 07 Jan 2006; Mike Frysinger <vapier@gentoo.org> + libsamplerate-0.1.2.ebuild: + Remove broken static/pic handling and add arm love. 13 Sep 2005; Aron Griffis <agriffis@gentoo.org> libsamplerate-0.1.2.ebuild: diff --git a/media-libs/libsamplerate/libsamplerate-0.1.2.ebuild b/media-libs/libsamplerate/libsamplerate-0.1.2.ebuild index 45aea85bf9d9..4ec482f5e7dc 100644 --- a/media-libs/libsamplerate/libsamplerate-0.1.2.ebuild +++ b/media-libs/libsamplerate/libsamplerate-0.1.2.ebuild @@ -1,29 +1,21 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libsamplerate/libsamplerate-0.1.2.ebuild,v 1.12 2005/09/13 20:17:49 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libsamplerate/libsamplerate-0.1.2.ebuild,v 1.13 2006/01/07 01:36:06 vapier Exp $ DESCRIPTION="Secret Rabbit Code (aka libsamplerate) is a Sample Rate Converter for audio" HOMEPAGE="http://www.mega-nerd.com/SRC/" SRC_URI="http://www.mega-nerd.com/SRC/${P}.tar.gz" + LICENSE="GPL-2" SLOT="0" -KEYWORDS="alpha ~amd64 hppa ia64 ~mips ppc ~ppc-macos ppc64 ~sparc ~x86" -IUSE="sndfile static" +KEYWORDS="alpha ~amd64 arm hppa ia64 ~mips ppc ~ppc-macos ppc64 ~sparc ~x86" +IUSE="sndfile" + RDEPEND=">=sci-libs/fftw-3.0.1 sndfile? ( >=media-libs/libsndfile-1.0.2 )" DEPEND="${RDEPEND} >=dev-util/pkgconfig-0.14.0" -src_compile() { - local myconf=$(use_enable static) - - # Unconditonal use of -fPIC (#55238). - myconf="${myconf} --with-pic" - - econf $myconf || die "./configure failed" - emake || die "emake failed" -} - src_install() { make DESTDIR="${D}" install || die "make install failed" dodoc AUTHORS ChangeLog NEWS README |