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 C79031382C5 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 E5298E0949; Sun, 15 Apr 2018 09:11:40 +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-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BEFECE094B 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 2E1B9335C85 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 703D1294 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: <1523783487.7204eacc194cb1d00cc12ae5891e2c3ec3ed525c.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.ebuild X-VCS-Directories: games-arcade/ascii-invaders/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 7204eacc194cb1d00cc12ae5891e2c3ec3ed525c 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: 8186aa1d-5988-42a3-bc24-3b69160768dd X-Archives-Hash: 798b7277a45615e6c1c7eafa0f7a39f5 commit: 7204eacc194cb1d00cc12ae5891e2c3ec3ed525c Author: Pacho Ramos gentoo org> AuthorDate: Sun Apr 15 09:03:21 2018 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sun Apr 15 09:11:27 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7204eacc games-arcade/ascii-invaders: Drop old Package-Manager: Portage-2.3.28, Repoman-2.3.9 .../ascii-invaders/ascii-invaders-0.1b.ebuild | 34 ---------------------- 1 file changed, 34 deletions(-) diff --git a/games-arcade/ascii-invaders/ascii-invaders-0.1b.ebuild b/games-arcade/ascii-invaders/ascii-invaders-0.1b.ebuild deleted file mode 100644 index 55e72380380..00000000000 --- a/games-arcade/ascii-invaders/ascii-invaders-0.1b.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit games - -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() { - rm -f Makefile -} - -src_compile() { - emake LDLIBS="$(pkg-config ncurses --libs)" invaders -} - -src_install() { - newgamesbin invaders ${PN} - dodoc TODO - prepgamesdirs -}