summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <drac@gentoo.org>2008-05-13 19:48:23 +0000
committerSamuli Suominen <drac@gentoo.org>2008-05-13 19:48:23 +0000
commit34a124166a01e8b0733721b36a28ed1f05d10d01 (patch)
tree1e6ed64d6347b18348dc3a67d771e24f1cf963cf /media-sound/mp3splt
parentInitial commit for new mp3splt release candidate. (diff)
downloadgentoo-2-34a124166a01e8b0733721b36a28ed1f05d10d01.tar.gz
gentoo-2-34a124166a01e8b0733721b36a28ed1f05d10d01.tar.bz2
gentoo-2-34a124166a01e8b0733721b36a28ed1f05d10d01.zip
Version bump.
(Portage version: 2.1.5_rc10)
Diffstat (limited to 'media-sound/mp3splt')
-rw-r--r--media-sound/mp3splt/ChangeLog9
-rw-r--r--media-sound/mp3splt/mp3splt-2.2_rc1.ebuild24
2 files changed, 31 insertions, 2 deletions
diff --git a/media-sound/mp3splt/ChangeLog b/media-sound/mp3splt/ChangeLog
index dab58033a60d..469d4485b4e8 100644
--- a/media-sound/mp3splt/ChangeLog
+++ b/media-sound/mp3splt/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for media-sound/mp3splt
-# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/mp3splt/ChangeLog,v 1.25 2007/02/22 01:16:03 peper Exp $
+# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/mp3splt/ChangeLog,v 1.26 2008/05/13 19:48:23 drac Exp $
+
+*mp3splt-2.2_rc1 (13 May 2008)
+
+ 13 May 2008; Samuli Suominen <drac@gentoo.org> +mp3splt-2.2_rc1.ebuild:
+ Version bump.
22 Feb 2007; Piotr Jaroszyński <peper@gentoo.org> ChangeLog:
Transition to Manifest2.
diff --git a/media-sound/mp3splt/mp3splt-2.2_rc1.ebuild b/media-sound/mp3splt/mp3splt-2.2_rc1.ebuild
new file mode 100644
index 000000000000..b769e2e27567
--- /dev/null
+++ b/media-sound/mp3splt/mp3splt-2.2_rc1.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2008 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/mp3splt/mp3splt-2.2_rc1.ebuild,v 1.1 2008/05/13 19:48:23 drac Exp $
+
+DESCRIPTION="a command line utility to split mp3 and ogg files without decoding."
+HOMEPAGE="http://mp3splt.sourceforge.net"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND="media-libs/libmp3splt"
+
+src_compile() {
+ econf --disable-dependency-tracking
+ emake || die "emake failed."
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die "emake install failed."
+ dodoc AUTHORS ChangeLog README
+}