diff options
author | Steve Dibb <beandog@gentoo.org> | 2010-07-23 19:38:39 +0000 |
---|---|---|
committer | Steve Dibb <beandog@gentoo.org> | 2010-07-23 19:38:39 +0000 |
commit | b186b775861b0a2fb4bd993b29ebdc401fd5495b (patch) | |
tree | 5189c2baba6535c44756a22197b4a484332e3144 /media-sound/abcde/abcde-2.4.2-r1.ebuild | |
parent | lower eapi (diff) | |
download | gentoo-2-b186b775861b0a2fb4bd993b29ebdc401fd5495b.tar.gz gentoo-2-b186b775861b0a2fb4bd993b29ebdc401fd5495b.tar.bz2 gentoo-2-b186b775861b0a2fb4bd993b29ebdc401fd5495b.zip |
Add atomicparsley dep for AAC tagging; bug 326171
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'media-sound/abcde/abcde-2.4.2-r1.ebuild')
-rw-r--r-- | media-sound/abcde/abcde-2.4.2-r1.ebuild | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/media-sound/abcde/abcde-2.4.2-r1.ebuild b/media-sound/abcde/abcde-2.4.2-r1.ebuild new file mode 100644 index 000000000000..3affc599581c --- /dev/null +++ b/media-sound/abcde/abcde-2.4.2-r1.ebuild @@ -0,0 +1,49 @@ +# 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-r1.ebuild,v 1.1 2010/07/23 19:38:39 beandog 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 + media-video/atomicparsley ) + 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 +} |