diff options
author | Alexis Ballier <aballier@gentoo.org> | 2010-04-12 09:54:58 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2010-04-12 09:54:58 +0000 |
commit | e48927a9d29c5a17bbd715ee3fe37e7979d6a845 (patch) | |
tree | 116babf829a3ad714df9a2ce79bdabdc12c4a4f7 /media-sound/id3v2 | |
parent | Mask latest mutt snapshot since it seems to segfault while opening certain me... (diff) | |
download | gentoo-2-e48927a9d29c5a17bbd715ee3fe37e7979d6a845.tar.gz gentoo-2-e48927a9d29c5a17bbd715ee3fe37e7979d6a845.tar.bz2 gentoo-2-e48927a9d29c5a17bbd715ee3fe37e7979d6a845.zip |
version bump, by Adam Grissom <grissoma@gmail.com>, bug #314457
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'media-sound/id3v2')
-rw-r--r-- | media-sound/id3v2/ChangeLog | 9 | ||||
-rw-r--r-- | media-sound/id3v2/id3v2-0.1.12.ebuild | 33 |
2 files changed, 40 insertions, 2 deletions
diff --git a/media-sound/id3v2/ChangeLog b/media-sound/id3v2/ChangeLog index e873588a9454..a28e34d75807 100644 --- a/media-sound/id3v2/ChangeLog +++ b/media-sound/id3v2/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-sound/id3v2 -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/id3v2/ChangeLog,v 1.26 2007/08/19 16:46:38 drac Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/id3v2/ChangeLog,v 1.27 2010/04/12 09:54:58 aballier Exp $ + +*id3v2-0.1.12 (12 Apr 2010) + + 12 Apr 2010; Alexis Ballier <aballier@gentoo.org> +id3v2-0.1.12.ebuild: + version bump, by Adam Grissom <grissoma@gmail.com>, bug #314457 19 Aug 2007; Samuli Suominen <drac@gentoo.org> id3v2-0.1.11.ebuild: Fix license from GPL-2 to LGPL-2.1. diff --git a/media-sound/id3v2/id3v2-0.1.12.ebuild b/media-sound/id3v2/id3v2-0.1.12.ebuild new file mode 100644 index 000000000000..f4bb1b19b2c9 --- /dev/null +++ b/media-sound/id3v2/id3v2-0.1.12.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/id3v2/id3v2-0.1.12.ebuild,v 1.1 2010/04/12 09:54:58 aballier Exp $ + +EAPI=2 + +inherit toolchain-funcs + +DESCRIPTION="A command line editor for id3v2 tags." +HOMEPAGE="http://id3v2.sourceforge.net/" +SRC_URI="mirror://sourceforge/id3v2/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="" + +DEPEND="media-libs/id3lib" +RDEPEND="${DEPEND}" + +src_prepare() { + emake clean || die +} + +src_configure() { + tc-export CC CXX +} + +src_install() { + dobin id3v2 + doman id3v2.1 + dodoc README +} |