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 86286138335 for ; Mon, 22 Apr 2019 19:43:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 445D5E0864; Mon, 22 Apr 2019 19:43:42 +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 2BA1FE0864 for ; Mon, 22 Apr 2019 19:43:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 75AF63420BA for ; Mon, 22 Apr 2019 19:43:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E0C7F5C0 for ; Mon, 22 Apr 2019 19:43:38 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1555962215.e51fa3cecdf855fcc6e03b6c55ae1ace66da1617.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-cdr/cdw/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-cdr/cdw/cdw-0.8.1-r1.ebuild X-VCS-Directories: app-cdr/cdw/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: e51fa3cecdf855fcc6e03b6c55ae1ace66da1617 X-VCS-Branch: master Date: Mon, 22 Apr 2019 19:43:38 +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: 63ff66cc-54fd-41b2-9a9f-65d4cda480eb X-Archives-Hash: e5163d708f356c7f196a44d36d16f411 commit: e51fa3cecdf855fcc6e03b6c55ae1ace66da1617 Author: Zamarin Arthur gmail com> AuthorDate: Thu Apr 18 16:41:55 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Apr 22 19:43:35 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e51fa3ce app-cdr/cdw: EAPI=7 bump bump to EAPI=7 fix rebuild on SLOT for dev-libs/libcdio Package-Manager: Portage-2.3.63, Repoman-2.3.12 Signed-off-by: Zamarin Arthur gmail.com> Signed-off-by: Michał Górny gentoo.org> app-cdr/cdw/cdw-0.8.1-r1.ebuild | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/app-cdr/cdw/cdw-0.8.1-r1.ebuild b/app-cdr/cdw/cdw-0.8.1-r1.ebuild new file mode 100644 index 00000000000..2e0b7596745 --- /dev/null +++ b/app-cdr/cdw/cdw-0.8.1-r1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit toolchain-funcs + +DESCRIPTION="An ncurses based console frontend for cdrtools and dvd+rw-tools" +HOMEPAGE="http://cdw.sourceforge.net" +SRC_URI="mirror://sourceforge/cdw/${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" + +RDEPEND=" + app-cdr/dvd+rw-tools + dev-libs/libburn + dev-libs/libcdio:=[-minimal] + sys-libs/ncurses:0=[unicode] + virtual/cdrtools +" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +DOCS=( AUTHORS ChangeLog NEWS README THANKS cdw.conf ) + +src_configure() { + econf LIBS="$( $(tc-getPKG_CONFIG) --libs ncurses )" +}