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 078591382C5 for ; Sun, 15 Apr 2018 09:11:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 926DBE0943; Sun, 15 Apr 2018 09:11:40 +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 736F7E0943 for ; Sun, 15 Apr 2018 09:11:40 +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 10D47335C82 for ; Sun, 15 Apr 2018 09:11:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5D5D9293 for ; Sun, 15 Apr 2018 09:11:36 +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: <1523783485.8a0f15c994f4d27231cad05905f983f00b2d49c4.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-arcade/ascii-invaders/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-arcade/ascii-invaders/ascii-invaders-0.1b-r1.ebuild X-VCS-Directories: games-arcade/ascii-invaders/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 8a0f15c994f4d27231cad05905f983f00b2d49c4 X-VCS-Branch: master Date: Sun, 15 Apr 2018 09:11:36 +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: 5aeed8f2-0a4e-4400-8286-bc75ebb8c003 X-Archives-Hash: 9f273425632f735cb35a678f05b502d7 commit: 8a0f15c994f4d27231cad05905f983f00b2d49c4 Author: Pacho Ramos gentoo org> AuthorDate: Sun Apr 15 09:03:12 2018 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sun Apr 15 09:11:25 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a0f15c9 games-arcade/ascii-invaders: Stop using games.eclass Package-Manager: Portage-2.3.28, Repoman-2.3.9 .../ascii-invaders/ascii-invaders-0.1b-r1.ebuild | 33 ++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/games-arcade/ascii-invaders/ascii-invaders-0.1b-r1.ebuild b/games-arcade/ascii-invaders/ascii-invaders-0.1b-r1.ebuild new file mode 100644 index 00000000000..5c6a25c0ed4 --- /dev/null +++ b/games-arcade/ascii-invaders/ascii-invaders-0.1b-r1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="Space invaders clone, using ncurses library" +HOMEPAGE="https://packages.gentoo.org/package/games-arcade/ascii-invaders" +SRC_URI="mirror://gentoo/invaders${PV}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~mips ~ppc64 ~x86 ~x86-fbsd ~ppc-macos" +IUSE="" + +RDEPEND="sys-libs/ncurses:0" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +S="${WORKDIR}/invaders" + +src_prepare() { + default + rm -f Makefile +} + +src_compile() { + emake LDLIBS="$(pkg-config ncurses --libs)" invaders +} + +src_install() { + newbin invaders ${PN} + einstalldocs +}