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 A6647138334 for ; Fri, 7 Sep 2018 12:13:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5BA4AE0788; Fri, 7 Sep 2018 12:13:27 +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 38032E0788 for ; Fri, 7 Sep 2018 12:13:26 +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 3E769335CDE for ; Fri, 7 Sep 2018 12:13:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 02D613CF for ; Fri, 7 Sep 2018 12:13:23 +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: <1536322335.c94dffbcdb11259e49c102b884621144a685bd67.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/id3v2/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/id3v2/id3v2-0.1.12-r1.ebuild X-VCS-Directories: media-sound/id3v2/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: c94dffbcdb11259e49c102b884621144a685bd67 X-VCS-Branch: master Date: Fri, 7 Sep 2018 12:13:23 +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-Archives-Salt: ddf1752f-4cda-4e63-8c8a-98c29467de47 X-Archives-Hash: a5da80d3d6b6d0d585e58742931b1c39 commit: c94dffbcdb11259e49c102b884621144a685bd67 Author: Michael Mair-Keimberger gmail com> AuthorDate: Wed Aug 15 20:04:35 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Sep 7 12:12:15 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c94dffbc media-sound/id3v2: add EAPI7 ebuild Closes: https://bugs.gentoo.org/663720 Closes: https://github.com/gentoo/gentoo/pull/9583 media-sound/id3v2/id3v2-0.1.12-r1.ebuild | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/media-sound/id3v2/id3v2-0.1.12-r1.ebuild b/media-sound/id3v2/id3v2-0.1.12-r1.ebuild new file mode 100644 index 00000000000..425d6e7587f --- /dev/null +++ b/media-sound/id3v2/id3v2-0.1.12-r1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +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="~amd64 ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd" + +DEPEND="media-libs/id3lib" +RDEPEND="${DEPEND}" + +src_prepare() { + default + emake clean +} + +src_configure() { + tc-export CC CXX +} + +src_install() { + dobin id3v2 + doman id3v2.1 + einstalldocs +}