------BEGIN PGP SIGNED MESSAGE-----
-Hash: SHA1
-
MD5 6728800d72fb8515cd29c2532a339ec2 tse3-0.2.7.ebuild 1095
+MD5 02d5b8b7d9b6a1b3cd1d63e13fb5890c tse3-0.3.0.ebuild 1120
MD5 6ee05386c34f19166c589c8b6bd56f7e ChangeLog 1987
-MD5 f1e66f1d2c29e77ea122bfc19f03171a tse3-0.2.5.ebuild 913
MD5 a1eaeb2ae801daeb712c90c060e922dc metadata.xml 158
MD5 bf413ad8b299236102baab56aff1b7e9 files/tse3-0.2.7-gcc34.patch 3155
+MD5 71287d128bdfd588b7c22645025e4b31 files/tse3-0.2.7-size_t-64bit.patch 1089
MD5 e5b12a211e5880ca3f3a11bd9ec606f4 files/digest-tse3-0.2.7 62
-MD5 43db7a6f8ef547d1b28951bb81a17542 files/digest-tse3-0.2.5 62
+MD5 424eeeed01112957b2e9cec605965440 files/digest-tse3-0.3.0 62
MD5 7a3c4c8d46dfe16a96514a204d2ebead files/tse3-0.2.7-gcc4.patch 290
-MD5 71287d128bdfd588b7c22645025e4b31 files/tse3-0.2.7-size_t-64bit.patch 1089
------BEGIN PGP SIGNATURE-----
-Version: GnuPG v1.4.2 (GNU/Linux)
-
-iD8DBQFDGuYgj5H05b2HAEkRAkRMAKCT4VlPPLqrSnupUnqAmpxdsTty9QCgnKT1
-baziGNO4wsiO5d5SkQdXRtg=
-=lF0r
------END PGP SIGNATURE-----
+++ /dev/null
-MD5 0ae6fd5912ba891ff0412b163bc9ce89 tse3-0.2.5.tar.gz 569597
--- /dev/null
+MD5 fbf5ebe8b96fdc9886758a42d6b1c13a tse3-0.3.0.tar.gz 716430
+++ /dev/null
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/tse3/tse3-0.2.5.ebuild,v 1.6 2005/09/04 12:18:09 flameeyes Exp $
-
-DESCRIPTION="TSE3 Sequencer library"
-HOMEPAGE="http://TSE3.sourceforge.net/"
-SRC_URI="mirror://sourceforge/tse3/${P}.tar.gz"
-
-KEYWORDS="x86"
-SLOT="0"
-LICENSE="GPL-2"
-IUSE="alsa oss arts"
-
-DEPEND="alsa? ( media-libs/alsa-lib )
- arts? ( kde-base/arts )"
-
-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
-}
-
-src_install() {
- make DESTDIR=${D} install || die
- dodoc AUTHORS ChangeLog NEWS README THANKS TODO Version
-}
--- /dev/null
+# Copyright 1999-2005 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/tse3/tse3-0.3.0.ebuild,v 1.1 2005/09/20 03:09:08 vanquirius Exp $
+
+inherit eutils
+
+DESCRIPTION="TSE3 Sequencer library"
+HOMEPAGE="http://TSE3.sourceforge.net/"
+SRC_URI="mirror://sourceforge/tse3/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+IUSE="alsa oss arts"
+
+DEPEND="alsa? ( media-libs/alsa-lib )
+ arts? ( kde-base/arts )"
+
+src_unpack() {
+ unpack ${A}
+
+ cd ${S}
+ # support 64bit machines properly
+ epatch ${FILESDIR}/${PN}-0.2.7-size_t-64bit.patch
+ # gcc-3.4 patch
+ epatch ${FILESDIR}/${PN}-0.2.7-gcc34.patch
+ # gcc-4 patch (bug #100708)
+ epatch ${FILESDIR}/${PN}-0.2.7-gcc4.patch
+}
+
+src_compile() {
+ local myconf=""
+
+ 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
+ dodoc AUTHORS ChangeLog NEWS README THANKS TODO Version
+}