diff options
author | Sebastian Pipping <sping@gentoo.org> | 2013-01-27 23:04:10 +0000 |
---|---|---|
committer | Sebastian Pipping <sping@gentoo.org> | 2013-01-27 23:04:10 +0000 |
commit | 30aecc488864a3352d3c3b7fc795b94b64fba025 (patch) | |
tree | 1826585aefc56a9b59cf16de9c9ae85301d123d7 /media-sound | |
parent | Stable for ppc, wrt bug #450678 (diff) | |
download | gentoo-2-30aecc488864a3352d3c3b7fc795b94b64fba025.tar.gz gentoo-2-30aecc488864a3352d3c3b7fc795b94b64fba025.tar.bz2 gentoo-2-30aecc488864a3352d3c3b7fc795b94b64fba025.zip |
media-sound/mp3splt: 2.5.1
(Portage version: 2.1.11.40/cvs/Linux x86_64, signed Manifest commit with key 0x401A1600)
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/mp3splt/ChangeLog | 7 | ||||
-rw-r--r-- | media-sound/mp3splt/mp3splt-2.5.1.ebuild | 31 |
2 files changed, 37 insertions, 1 deletions
diff --git a/media-sound/mp3splt/ChangeLog b/media-sound/mp3splt/ChangeLog index 030765a3f86c..06d6f2d415db 100644 --- a/media-sound/mp3splt/ChangeLog +++ b/media-sound/mp3splt/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-sound/mp3splt # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/mp3splt/ChangeLog,v 1.51 2013/01/20 10:20:53 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/mp3splt/ChangeLog,v 1.52 2013/01/27 23:04:10 sping Exp $ + +*mp3splt-2.5.1 (27 Jan 2013) + + 27 Jan 2013; Sebastian Pipping <sping@gentoo.org> +mp3splt-2.5.1.ebuild: + Bump to 2.5.1 20 Jan 2013; Agostino Sarubbo <ago@gentoo.org> mp3splt-2.4.3.ebuild: Stable for alpha, wrt bug #448164 diff --git a/media-sound/mp3splt/mp3splt-2.5.1.ebuild b/media-sound/mp3splt/mp3splt-2.5.1.ebuild new file mode 100644 index 000000000000..173474b14623 --- /dev/null +++ b/media-sound/mp3splt/mp3splt-2.5.1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/mp3splt/mp3splt-2.5.1.ebuild,v 1.1 2013/01/27 23:04:10 sping Exp $ + +EAPI=2 +inherit multilib + +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="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86" +IUSE="" + +RDEPEND=">=media-libs/libmp3splt-0.8.1" +DEPEND="${RDEPEND} + sys-devel/gettext" + +src_configure() { + econf \ + --disable-dependency-tracking \ + --with-mp3splt-libraries=/usr/$(get_libdir) \ + --with-mp3splt-includes=/usr/include/lib${PN} +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc AUTHORS ChangeLog NEWS README TODO +} |