diff options
author | Jeremy Huddleston <eradicator@gentoo.org> | 2005-01-11 13:05:45 +0000 |
---|---|---|
committer | Jeremy Huddleston <eradicator@gentoo.org> | 2005-01-11 13:05:45 +0000 |
commit | cf759b1bc9b986dfb4ed48c7e17be6f4618aba86 (patch) | |
tree | b48da9aed347b35e38a427b5eb20236ed2254c53 /media-libs/libsndfile/libsndfile-1.0.10.ebuild | |
parent | epunt_cxx closes bug #76744. (Manifest recommit) (diff) | |
download | gentoo-2-cf759b1bc9b986dfb4ed48c7e17be6f4618aba86.tar.gz gentoo-2-cf759b1bc9b986dfb4ed48c7e17be6f4618aba86.tar.bz2 gentoo-2-cf759b1bc9b986dfb4ed48c7e17be6f4618aba86.zip |
epunt_cxx fixes bug #76746.
Diffstat (limited to 'media-libs/libsndfile/libsndfile-1.0.10.ebuild')
-rw-r--r-- | media-libs/libsndfile/libsndfile-1.0.10.ebuild | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/media-libs/libsndfile/libsndfile-1.0.10.ebuild b/media-libs/libsndfile/libsndfile-1.0.10.ebuild index f5c81f7308b1..5bd1b0c690de 100644 --- a/media-libs/libsndfile/libsndfile-1.0.10.ebuild +++ b/media-libs/libsndfile/libsndfile-1.0.10.ebuild @@ -1,8 +1,10 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.10.ebuild,v 1.10 2004/11/17 22:06:33 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.10.ebuild,v 1.11 2005/01/11 13:05:45 eradicator Exp $ -IUSE="static pic" +IUSE="static" + +inherit eutils DESCRIPTION="A C library for reading and writing files containing sampled sound" HOMEPAGE="http://www.mega-nerd.com/libsndfile/" @@ -14,8 +16,13 @@ KEYWORDS="~alpha amd64 arm hppa ia64 ~mips ~ppc ~ppc64 ~ppc-macos sparc x86" DEPEND="virtual/libc" +src_unpack() { + unpack ${A} + cd ${S} + epunt_cxx +} + src_compile() { - ( use pic || use amd64 ) && myconf="${myconf} --with-pic" myconf="${myconf} $(use_enable static)" econf $myconf || die "./configure failed" |