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 68DEB1382C5 for ; Sun, 15 Apr 2018 09:11:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 64332E0932; Sun, 15 Apr 2018 09:11:38 +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 3A14DE0922 for ; Sun, 15 Apr 2018 09:11:38 +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 27DDF335C7B for ; Sun, 15 Apr 2018 09:11:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 95809288 for ; Sun, 15 Apr 2018 09:11:35 +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: <1523783472.97e48392c0abdb3facf073a4234d59f8bdc76a15.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-arcade/afternoonstalker/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-arcade/afternoonstalker/afternoonstalker-1.1.5-r1.ebuild X-VCS-Directories: games-arcade/afternoonstalker/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 97e48392c0abdb3facf073a4234d59f8bdc76a15 X-VCS-Branch: master Date: Sun, 15 Apr 2018 09:11:35 +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: 9578c190-9e46-4efd-81f6-189b6193c186 X-Archives-Hash: 07ccdc53b7b2334c5ea8930eb1253fc4 commit: 97e48392c0abdb3facf073a4234d59f8bdc76a15 Author: Pacho Ramos gentoo org> AuthorDate: Sun Apr 15 08:28:49 2018 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sun Apr 15 09:11:12 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97e48392 games-arcade/afternoonstalker: Stop using games.eclass Package-Manager: Portage-2.3.28, Repoman-2.3.9 .../afternoonstalker-1.1.5-r1.ebuild | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/games-arcade/afternoonstalker/afternoonstalker-1.1.5-r1.ebuild b/games-arcade/afternoonstalker/afternoonstalker-1.1.5-r1.ebuild new file mode 100644 index 00000000000..f7f3afc9f23 --- /dev/null +++ b/games-arcade/afternoonstalker/afternoonstalker-1.1.5-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit autotools + +DESCRIPTION="Clone of the 1981 Night Stalker video game by Mattel Electronics" +HOMEPAGE="http://perso.b2b2c.ca/sarrazip/dev/afternoonstalker.html" +SRC_URI="http://perso.b2b2c.ca/sarrazip/dev/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~x86-fbsd" +IUSE="" + +RDEPEND=">=dev-games/flatzebra-0.1.6" +DEPEND="${RDEPEND} + virtual/pkgconfig +" + +src_prepare() { + default + sed -i \ + -e "/^pkgsounddir/ s:sounds.*:\$(PACKAGE)/sounds:" \ + -e "/^desktopentrydir/ s:=.*:=/usr/share/applications:" \ + -e "/^pixmapdir/ s:=.*:=/usr/share/pixmaps:" \ + src/Makefile.am || die + eautoreconf +} + +src_install() { + emake -C src DESTDIR="${D}" install + doman doc/${PN}.6 + einstalldocs +}