diff options
author | Alexis Ballier <aballier@gentoo.org> | 2008-09-08 04:29:59 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2008-09-08 04:29:59 +0000 |
commit | 94b66f7170574742fdbfedb7e76eb56fb47f9709 (patch) | |
tree | 0b412d21a81a3cd4bf2733add7a130c23be151e2 /media-libs/libmp3splt | |
parent | version bump (diff) | |
download | gentoo-2-94b66f7170574742fdbfedb7e76eb56fb47f9709.tar.gz gentoo-2-94b66f7170574742fdbfedb7e76eb56fb47f9709.tar.bz2 gentoo-2-94b66f7170574742fdbfedb7e76eb56fb47f9709.zip |
version bump
(Portage version: 2.2_rc8/cvs/Linux 2.6.26.3 x86_64)
Diffstat (limited to 'media-libs/libmp3splt')
-rw-r--r-- | media-libs/libmp3splt/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/libmp3splt/libmp3splt-0.5.ebuild | 31 |
2 files changed, 37 insertions, 1 deletions
diff --git a/media-libs/libmp3splt/ChangeLog b/media-libs/libmp3splt/ChangeLog index 1433b837526e..9bb9fd61f7e5 100644 --- a/media-libs/libmp3splt/ChangeLog +++ b/media-libs/libmp3splt/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/libmp3splt # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libmp3splt/ChangeLog,v 1.4 2008/05/15 18:08:37 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libmp3splt/ChangeLog,v 1.5 2008/09/08 04:29:59 aballier Exp $ + +*libmp3splt-0.5 (08 Sep 2008) + + 08 Sep 2008; Alexis Ballier <aballier@gentoo.org> +libmp3splt-0.5.ebuild: + version bump 15 May 2008; Jeroen Roovers <jer@gentoo.org> libmp3splt-0.4_rc1.ebuild: Marked ~hppa (bug #221989). diff --git a/media-libs/libmp3splt/libmp3splt-0.5.ebuild b/media-libs/libmp3splt/libmp3splt-0.5.ebuild new file mode 100644 index 000000000000..d00b25b1eaad --- /dev/null +++ b/media-libs/libmp3splt/libmp3splt-0.5.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libmp3splt/libmp3splt-0.5.ebuild,v 1.1 2008/09/08 04:29:59 aballier Exp $ + +inherit autotools + +DESCRIPTION="a library for mp3splt to split mp3 and ogg files without decoding." +HOMEPAGE="http://mp3splt.sourceforge.net" +SRC_URI="mirror://sourceforge/mp3splt/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ppc64 ~sparc ~x86" +IUSE="" + +RDEPEND="media-libs/libmad + media-libs/libvorbis media-libs/libogg + media-libs/libid3tag" +DEPEND="${RDEPEND}" + +src_unpack() { + unpack ${A} + cd "${S}" + # Can't get it to link properly to libltdl without eautoreconfing it + eautoreconf +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed." + dodoc AUTHORS ChangeLog LIMITS NEWS README TODO +} |