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 6D03F139694 for ; Sat, 11 Mar 2017 20:47:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C556CE0CE9; Sat, 11 Mar 2017 20:47:33 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A6CBCE0CE9 for ; Sat, 11 Mar 2017 20:47:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DD26333FE7D for ; Sat, 11 Mar 2017 20:47:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 86E8764E2 for ; Sat, 11 Mar 2017 20:47:25 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1489265234.6a898fff45993a04ecd991c29c15c92b86400c4e.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/rexima/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/rexima/rexima-1.4-r1.ebuild media-sound/rexima/rexima-1.4.ebuild X-VCS-Directories: media-sound/rexima/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 6a898fff45993a04ecd991c29c15c92b86400c4e X-VCS-Branch: master Date: Sat, 11 Mar 2017 20:47:25 +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: dc351054-637f-4c22-8c30-7e3d23dd2a84 X-Archives-Hash: 6cde95668ef36d21fe4c14a61cd53c08 commit: 6a898fff45993a04ecd991c29c15c92b86400c4e Author: David Seifert gentoo org> AuthorDate: Sat Mar 11 20:45:11 2017 +0000 Commit: David Seifert gentoo org> CommitDate: Sat Mar 11 20:47:14 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a898fff media-sound/rexima: Modernise to EAPI 6 Package-Manager: Portage-2.3.4, Repoman-2.3.2 .../{rexima-1.4.ebuild => rexima-1.4-r1.ebuild} | 26 +++++++++++++--------- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/media-sound/rexima/rexima-1.4.ebuild b/media-sound/rexima/rexima-1.4-r1.ebuild similarity index 59% rename from media-sound/rexima/rexima-1.4.ebuild rename to media-sound/rexima/rexima-1.4-r1.ebuild index cdfc20bdfad..cd78692ee67 100644 --- a/media-sound/rexima/rexima-1.4.ebuild +++ b/media-sound/rexima/rexima-1.4-r1.ebuild @@ -1,6 +1,8 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 +EAPI=6 + inherit toolchain-funcs DESCRIPTION="A curses-based interactive mixer which can also be used from the command-line" @@ -12,18 +14,22 @@ SLOT="0" KEYWORDS="amd64 ppc sparc x86" IUSE="" -RDEPEND="sys-libs/ncurses" -DEPEND="${RDEPEND}" +RDEPEND="sys-libs/ncurses:0=" +DEPEND="${RDEPEND} + virtual/pkgconfig" -src_compile() { +src_configure() { tc-export CC - echo "LDLIBS=-lncurses" > Makefile - echo "all: rexima" >> Makefile - emake || die "emake failed" + + cat > Makefile <<- _EOF_ || die + LDLIBS=$($(tc-getPKG_CONFIG) --libs ncurses) + all: rexima + _EOF_ } src_install () { - dobin rexima || die - doman rexima.1 || die - dodoc NEWS README ChangeLog + dobin rexima + + einstalldocs + doman rexima.1 }