diff options
author | Jeremy Huddleston <eradicator@gentoo.org> | 2004-10-08 09:51:50 +0000 |
---|---|---|
committer | Jeremy Huddleston <eradicator@gentoo.org> | 2004-10-08 09:51:50 +0000 |
commit | 144865c444386e2891ade1579687a620c0b066c1 (patch) | |
tree | 38966a6316c5f18fc6ccf7552a6bb3a59da7ac85 /media-libs/tse3 | |
parent | regenerating manifest plus removing mips from 0.23 (diff) | |
download | historical-144865c444386e2891ade1579687a620c0b066c1.tar.gz historical-144865c444386e2891ade1579687a620c0b066c1.tar.bz2 historical-144865c444386e2891ade1579687a620c0b066c1.zip |
multilib fixes. Stable amd64.
Diffstat (limited to 'media-libs/tse3')
-rw-r--r-- | media-libs/tse3/ChangeLog | 5 | ||||
-rw-r--r-- | media-libs/tse3/tse3-0.2.7.ebuild | 20 |
2 files changed, 12 insertions, 13 deletions
diff --git a/media-libs/tse3/ChangeLog b/media-libs/tse3/ChangeLog index 81391045c9df..d8c71e646c66 100644 --- a/media-libs/tse3/ChangeLog +++ b/media-libs/tse3/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-libs/tse3 # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/tse3/ChangeLog,v 1.9 2004/09/01 17:31:36 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/tse3/ChangeLog,v 1.10 2004/10/08 09:51:50 eradicator Exp $ + + 08 Oct 2004; Jeremy Huddleston <eradicator@gentoo.org> tse3-0.2.7.ebuild: + multilib fixes. 01 Sep 2004; Jeremy Huddleston <eradicator@gentoo.org> tse3-0.2.7.ebuild: Stable amd64, sparc. diff --git a/media-libs/tse3/tse3-0.2.7.ebuild b/media-libs/tse3/tse3-0.2.7.ebuild index 61c925950185..5649be67296f 100644 --- a/media-libs/tse3/tse3-0.2.7.ebuild +++ b/media-libs/tse3/tse3-0.2.7.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/tse3/tse3-0.2.7.ebuild,v 1.12 2004/09/01 17:31:36 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/tse3/tse3-0.2.7.ebuild,v 1.13 2004/10/08 09:51:50 eradicator Exp $ IUSE="alsa oss arts" @@ -35,19 +35,15 @@ src_unpack() { src_compile() { local myconf="" - use arts || myconf="$myconf --without-arts" - use alsa || myconf="$myconf --without-alsa" - use oss || myconf="$myconf --without-oss" - ./configure \ - --host=${CHOST} \ - --prefix=/usr \ - --infodir=/usr/share/info \ - --mandir=/usr/share/man \ - $myconf || die "./configure failed" - make || die + use arts || myconf="${myconf} --without-arts" + use alsa || myconf="${myconf} --without-alsa" + use oss || myconf="${myconf} --without-oss" + + econf ${myconf} || die "./configure failed" + emake -j1 || die } src_install() { - make DESTDIR=${D} install || die + make DESTDIR="${D}" install || die dodoc AUTHORS ChangeLog COPYING INSTALL NEWS README THANKS TODO Version } |