Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/id3v2/
Date: Fri, 07 Sep 2018 12:13:28
Message-Id: 1536322335.c94dffbcdb11259e49c102b884621144a685bd67.asturm@gentoo
1 commit: c94dffbcdb11259e49c102b884621144a685bd67
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Wed Aug 15 20:04:35 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 7 12:12:15 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c94dffbc
7
8 media-sound/id3v2: add EAPI7 ebuild
9
10 Closes: https://bugs.gentoo.org/663720
11 Closes: https://github.com/gentoo/gentoo/pull/9583
12
13 media-sound/id3v2/id3v2-0.1.12-r1.ebuild | 32 ++++++++++++++++++++++++++++++++
14 1 file changed, 32 insertions(+)
15
16 diff --git a/media-sound/id3v2/id3v2-0.1.12-r1.ebuild b/media-sound/id3v2/id3v2-0.1.12-r1.ebuild
17 new file mode 100644
18 index 00000000000..425d6e7587f
19 --- /dev/null
20 +++ b/media-sound/id3v2/id3v2-0.1.12-r1.ebuild
21 @@ -0,0 +1,32 @@
22 +# Copyright 1999-2018 Gentoo Foundation
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +inherit toolchain-funcs
28 +
29 +DESCRIPTION="A command line editor for id3v2 tags"
30 +HOMEPAGE="http://id3v2.sourceforge.net/"
31 +SRC_URI="mirror://sourceforge/id3v2/${P}.tar.gz"
32 +
33 +LICENSE="LGPL-2.1"
34 +SLOT="0"
35 +KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd"
36 +
37 +DEPEND="media-libs/id3lib"
38 +RDEPEND="${DEPEND}"
39 +
40 +src_prepare() {
41 + default
42 + emake clean
43 +}
44 +
45 +src_configure() {
46 + tc-export CC CXX
47 +}
48 +
49 +src_install() {
50 + dobin id3v2
51 + doman id3v2.1
52 + einstalldocs
53 +}