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/id3ed/
Date: Sun, 10 Feb 2019 16:17:06
Message-Id: 1549815404.6f92f92780d3cbc45e4553808e12d71854e15a77.asturm@gentoo
1 commit: 6f92f92780d3cbc45e4553808e12d71854e15a77
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Sun Feb 10 11:51:39 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 10 16:16:44 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f92f927
7
8 media-sound/id3ed: EAPI7 revbump
9
10 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 media-sound/id3ed/id3ed-1.10.4-r1.ebuild | 35 ++++++++++++++++++++++++++++++++
14 1 file changed, 35 insertions(+)
15
16 diff --git a/media-sound/id3ed/id3ed-1.10.4-r1.ebuild b/media-sound/id3ed/id3ed-1.10.4-r1.ebuild
17 new file mode 100644
18 index 00000000000..f1c44b65157
19 --- /dev/null
20 +++ b/media-sound/id3ed/id3ed-1.10.4-r1.ebuild
21 @@ -0,0 +1,35 @@
22 +# Copyright 1999-2019 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +inherit toolchain-funcs
28 +
29 +DESCRIPTION="ID3 tag editor for mp3 files"
30 +HOMEPAGE="http://code.fluffytapeworm.com/projects/id3ed"
31 +SRC_URI="http://code.fluffytapeworm.com/projects/${PN}/${P}.tar.gz"
32 +
33 +LICENSE="GPL-2+"
34 +SLOT="0"
35 +KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
36 +
37 +DEPEND="sys-libs/ncurses:0=
38 + sys-libs/readline:0="
39 +RDEPEND="${DEPEND}"
40 +
41 +src_prepare() {
42 + default
43 + sed -i \
44 + -e '/install/s:-s::' \
45 + -e 's:$(CXX) $(CXXFLAGS):$(CXX) $(LDFLAGS) $(CXXFLAGS):' \
46 + Makefile.in || die
47 +}
48 +
49 +src_compile() {
50 + emake CXX="$(tc-getCXX)" CFLAGS="${CFLAGS} -I./" || die
51 +}
52 +
53 +src_install() {
54 + dodir /usr/bin /usr/share/man/man1
55 + default
56 +}