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 41CC71382C5 for ; Mon, 16 Apr 2018 20:27:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BFB7BE09E4; Mon, 16 Apr 2018 20:26:56 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 927F0E09E3 for ; Mon, 16 Apr 2018 20:26:56 +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 14FA6335C76 for ; Mon, 16 Apr 2018 20:26:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 41533296 for ; Mon, 16 Apr 2018 20:26:52 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1523910399.e40c6a1c8a43387e19e4afdf84d8e6d3cf4eb787.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-arcade/gnake/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-arcade/gnake/gnake-0.94b-r1.ebuild X-VCS-Directories: games-arcade/gnake/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: e40c6a1c8a43387e19e4afdf84d8e6d3cf4eb787 X-VCS-Branch: master Date: Mon, 16 Apr 2018 20:26:52 +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: d7d2380e-fc5f-43bd-b197-8f69cef1e3c2 X-Archives-Hash: 30851f2bab5d92d6ef34aeea2e519ed0 commit: e40c6a1c8a43387e19e4afdf84d8e6d3cf4eb787 Author: Pacho Ramos gentoo org> AuthorDate: Mon Apr 16 20:07:41 2018 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Mon Apr 16 20:26:39 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e40c6a1c games-arcade/gnake: Stop using games.eclass Package-Manager: Portage-2.3.28, Repoman-2.3.9 games-arcade/gnake/gnake-0.94b-r1.ebuild | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/games-arcade/gnake/gnake-0.94b-r1.ebuild b/games-arcade/gnake/gnake-0.94b-r1.ebuild new file mode 100644 index 00000000000..a1cce857258 --- /dev/null +++ b/games-arcade/gnake/gnake-0.94b-r1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="An ncurses-based Nibbles clone" +HOMEPAGE="http://lightless.org/gnake" +SRC_URI="mirror://gentoo/Gnake.${PV}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~x86-fbsd" +IUSE="" + +RDEPEND="sys-libs/ncurses:0" +DEPEND="${RDEPEND} + virtual/pkgconfig +" + +S="${WORKDIR}/${PN}" + +src_compile() { + emake LDLIBS="$(pkg-config ncurses --libs)" gnake +} + +src_install() { + dobin gnake + einstalldocs +}