diff options
author | Samuli Suominen <drac@gentoo.org> | 2008-02-15 16:13:02 +0000 |
---|---|---|
committer | Samuli Suominen <drac@gentoo.org> | 2008-02-15 16:13:02 +0000 |
commit | 78d5e774b69b85da13c9c543414230a5cd2b10f9 (patch) | |
tree | 56940dedc9cb08a824eaa7acb7fbf588ba398db4 /media-libs/tse3 | |
parent | sparc stable wrt #209880 (diff) | |
download | gentoo-2-78d5e774b69b85da13c9c543414230a5cd2b10f9.tar.gz gentoo-2-78d5e774b69b85da13c9c543414230a5cd2b10f9.tar.bz2 gentoo-2-78d5e774b69b85da13c9c543414230a5cd2b10f9.zip |
Remove old.
(Portage version: 2.1.4.4)
Diffstat (limited to 'media-libs/tse3')
-rw-r--r-- | media-libs/tse3/ChangeLog | 5 | ||||
-rw-r--r-- | media-libs/tse3/tse3-0.3.1.ebuild | 54 |
2 files changed, 4 insertions, 55 deletions
diff --git a/media-libs/tse3/ChangeLog b/media-libs/tse3/ChangeLog index 8758b1178619..e9c9d5e0602c 100644 --- a/media-libs/tse3/ChangeLog +++ b/media-libs/tse3/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-libs/tse3 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/tse3/ChangeLog,v 1.26 2008/01/10 19:44:23 nixnut Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/tse3/ChangeLog,v 1.27 2008/02/15 16:13:02 drac Exp $ + + 15 Feb 2008; Samuli Suominen <drac@gentoo.org> -tse3-0.3.1.ebuild: + Remove old. 10 Jan 2008; nixnut <nixnut@gentoo.org> tse3-0.3.1-r1.ebuild: Stable on ppc wrt bug 205101 diff --git a/media-libs/tse3/tse3-0.3.1.ebuild b/media-libs/tse3/tse3-0.3.1.ebuild deleted file mode 100644 index a601bb052de0..000000000000 --- a/media-libs/tse3/tse3-0.3.1.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/tse3/tse3-0.3.1.ebuild,v 1.6 2007/04/13 21:24:47 welp Exp $ - -inherit eutils libtool autotools - -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" - -RDEPEND="alsa? ( media-libs/alsa-lib ) - arts? ( kde-base/arts )" - -DEPEND="${RDEPEND} - sys-devel/automake - sys-devel/autoconf - sys-devel/libtool" - -src_unpack() { - unpack ${A} - - cd "${S}" - # support 64bit machines properly - epatch "${FILESDIR}"/${PN}-0.2.7-size_t-64bit.patch - # gcc-4 patch (bug #100708) - epatch "${FILESDIR}"/${PN}-0.2.7-gcc4.patch - - epatch "${FILESDIR}/${P}-parallelmake.patch" - - eautoreconf - elibtoolize -} - -src_compile() { - local myconf="--without-doc-install" - - use arts || myconf="${myconf} --without-arts" - use alsa || myconf="${myconf} --without-alsa" - use oss || myconf="${myconf} --without-oss" - - econf ${myconf} || die "./configure failed" - emake || die -} - -src_install() { - emake DESTDIR="${D}" install || die - dodoc AUTHORS NEWS README THANKS TODO doc/History - dohtml doc/*.html doc/*.gif doc/*.png -} |