From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7CEF8138334 for ; Sun, 10 Feb 2019 16:17:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 65A32E0956; Sun, 10 Feb 2019 16:17:04 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4160FE0956 for ; Sun, 10 Feb 2019 16:17:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1ED61335D1C for ; Sun, 10 Feb 2019 16:17:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7C68D53C for ; Sun, 10 Feb 2019 16:17:01 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1549815404.6f92f92780d3cbc45e4553808e12d71854e15a77.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/id3ed/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/id3ed/id3ed-1.10.4-r1.ebuild X-VCS-Directories: media-sound/id3ed/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 6f92f92780d3cbc45e4553808e12d71854e15a77 X-VCS-Branch: master Date: Sun, 10 Feb 2019 16:17:01 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 8a990083-36f3-4d34-b939-05adbd422778 X-Archives-Hash: cde715826b4e0394966b1381f3dc4ead commit: 6f92f92780d3cbc45e4553808e12d71854e15a77 Author: Michael Mair-Keimberger gmail com> AuthorDate: Sun Feb 10 11:51:39 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Feb 10 16:16:44 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f92f927 media-sound/id3ed: EAPI7 revbump Signed-off-by: Michael Mair-Keimberger gmail.com> Signed-off-by: Andreas Sturmlechner gentoo.org> media-sound/id3ed/id3ed-1.10.4-r1.ebuild | 35 ++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/media-sound/id3ed/id3ed-1.10.4-r1.ebuild b/media-sound/id3ed/id3ed-1.10.4-r1.ebuild new file mode 100644 index 00000000000..f1c44b65157 --- /dev/null +++ b/media-sound/id3ed/id3ed-1.10.4-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +DESCRIPTION="ID3 tag editor for mp3 files" +HOMEPAGE="http://code.fluffytapeworm.com/projects/id3ed" +SRC_URI="http://code.fluffytapeworm.com/projects/${PN}/${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" + +DEPEND="sys-libs/ncurses:0= + sys-libs/readline:0=" +RDEPEND="${DEPEND}" + +src_prepare() { + default + sed -i \ + -e '/install/s:-s::' \ + -e 's:$(CXX) $(CXXFLAGS):$(CXX) $(LDFLAGS) $(CXXFLAGS):' \ + Makefile.in || die +} + +src_compile() { + emake CXX="$(tc-getCXX)" CFLAGS="${CFLAGS} -I./" || die +} + +src_install() { + dodir /usr/bin /usr/share/man/man1 + default +}