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 2DA58138331 for ; Sun, 15 Apr 2018 12:08:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1CFE0E0940; Sun, 15 Apr 2018 12:08:09 +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 EF82BE0940 for ; Sun, 15 Apr 2018 12:08:08 +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 167EE335C7E for ; Sun, 15 Apr 2018 12:08:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DD441279 for ; Sun, 15 Apr 2018 12:08:05 +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: <1523794076.ec10df0f1774e121e2a421003e8b8e95d699e5bb.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-arcade/batrachians/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-arcade/batrachians/batrachians-0.1.6-r1.ebuild X-VCS-Directories: games-arcade/batrachians/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: ec10df0f1774e121e2a421003e8b8e95d699e5bb X-VCS-Branch: master Date: Sun, 15 Apr 2018 12:08:05 +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: d1818327-dfb1-4bf2-9bdc-e84635dcd60d X-Archives-Hash: 8ca18af1b497f0b23d37753c28f941a3 commit: ec10df0f1774e121e2a421003e8b8e95d699e5bb Author: Pacho Ramos gentoo org> AuthorDate: Sun Apr 15 11:56:20 2018 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sun Apr 15 12:07:56 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec10df0f games-arcade/batrachians: Stop using games.eclass Package-Manager: Portage-2.3.28, Repoman-2.3.9 .../batrachians/batrachians-0.1.6-r1.ebuild | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/games-arcade/batrachians/batrachians-0.1.6-r1.ebuild b/games-arcade/batrachians/batrachians-0.1.6-r1.ebuild new file mode 100644 index 00000000000..87491afe0f2 --- /dev/null +++ b/games-arcade/batrachians/batrachians-0.1.6-r1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +GNOME2_EAUTORECONF="yes" + +inherit autotools gnome2 + +DESCRIPTION="A fly-eating frog video game" +HOMEPAGE="http://perso.b2b2c.ca/sarrazip/dev/batrachians.html" +SRC_URI="http://perso.b2b2c.ca/sarrazip/dev/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=">=dev-games/flatzebra-0.1.5" +DEPEND="${RDEPEND} + virtual/pkgconfig +" + +PATCHES=( "${FILESDIR}"/${P}-makefile.patch ) + +src_install() { + emake -C src DESTDIR="${D}" install + doman doc/${PN}.6 + einstalldocs +}