diff options
author | 2010-07-17 18:31:34 +0000 | |
---|---|---|
committer | 2010-07-17 18:31:34 +0000 | |
commit | e15ffc4adf6d64ab1b28a0e99aa2de54bcf5b8b6 (patch) | |
tree | f48cd715cda90ea61b8b3f54cd97d17271aa7f73 /media-sound | |
parent | Automated update of use.local.desc (diff) | |
download | gentoo-2-e15ffc4adf6d64ab1b28a0e99aa2de54bcf5b8b6.tar.gz gentoo-2-e15ffc4adf6d64ab1b28a0e99aa2de54bcf5b8b6.tar.bz2 gentoo-2-e15ffc4adf6d64ab1b28a0e99aa2de54bcf5b8b6.zip |
Version bump wrt #324297 by Tim Harder.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/abcde/ChangeLog | 7 | ||||
-rw-r--r-- | media-sound/abcde/abcde-2.4.2.ebuild | 48 |
2 files changed, 54 insertions, 1 deletions
diff --git a/media-sound/abcde/ChangeLog b/media-sound/abcde/ChangeLog index 7e73576fe20e..1225d8a72235 100644 --- a/media-sound/abcde/ChangeLog +++ b/media-sound/abcde/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-sound/abcde # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/abcde/ChangeLog,v 1.49 2010/07/17 17:31:02 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/abcde/ChangeLog,v 1.50 2010/07/17 18:31:34 ssuominen Exp $ + +*abcde-2.4.2 (17 Jul 2010) + + 17 Jul 2010; Samuli Suominen <ssuominen@gentoo.org> +abcde-2.4.2.ebuild: + Version bump wrt #324297 by Tim Harder. 17 Jul 2010; Raúl Porcel <armin76@gentoo.org> abcde-2.4.1.ebuild: sparc stable wrt #322861 diff --git a/media-sound/abcde/abcde-2.4.2.ebuild b/media-sound/abcde/abcde-2.4.2.ebuild new file mode 100644 index 000000000000..512914ce948d --- /dev/null +++ b/media-sound/abcde/abcde-2.4.2.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/abcde/abcde-2.4.2.ebuild,v 1.1 2010/07/17 18:31:34 ssuominen Exp $ + +EAPI=2 +inherit eutils + +DESCRIPTION="A command line CD encoder" +HOMEPAGE="http://code.google.com/p/abcde/" +SRC_URI="http://abcde.googlecode.com/files/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="aac cdparanoia flac id3 lame normalize replaygain speex vorbis" + +RDEPEND="media-sound/cd-discid + net-misc/wget + virtual/eject + aac? ( media-libs/faac ) + cdparanoia? ( media-sound/cdparanoia ) + flac? ( media-libs/flac ) + id3? ( + >=media-sound/id3-0.12 + media-sound/id3v2 + ) + lame? ( media-sound/lame ) + normalize? ( >=media-sound/normalize-0.7.4 ) + replaygain? ( + vorbis? ( media-sound/vorbisgain ) + lame? ( media-sound/mp3gain ) + ) + speex? ( media-libs/speex ) + vorbis? ( media-sound/vorbis-tools )" + +src_prepare() { + epatch "${FILESDIR}"/m4a-tagging.patch + sed -i \ + -e 's:/etc/abcde.conf:/etc/abcde/abcde.conf:g' \ + abcde || die +} + +src_install() { + emake DESTDIR="${D}" etcdir="${D}etc/abcde" install || die + dodoc changelog FAQ README TODO USEPIPES || die + docinto examples + dodoc examples/* || die +} |