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 E9B451382C5 for ; Sun, 22 Apr 2018 19:40:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9812DE08FE; Sun, 22 Apr 2018 19:40:37 +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 7633DE08FE for ; Sun, 22 Apr 2018 19:40:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 A4496335C7D for ; Sun, 22 Apr 2018 19:40:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7DE662B8 for ; Sun, 22 Apr 2018 19:40:32 +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: <1524426006.5b1b38699a92730e0099086bee1e4319ccce7599.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-arcade/notpacman/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-arcade/notpacman/notpacman-1.0.4-r1.ebuild X-VCS-Directories: games-arcade/notpacman/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 5b1b38699a92730e0099086bee1e4319ccce7599 X-VCS-Branch: master Date: Sun, 22 Apr 2018 19:40:32 +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: 4decafbf-94a3-4a1a-9ccf-3bb4076eab94 X-Archives-Hash: 064cbc7eecbed82552a863c2c13c9e01 commit: 5b1b38699a92730e0099086bee1e4319ccce7599 Author: Pacho Ramos gentoo org> AuthorDate: Sun Apr 22 19:35:22 2018 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sun Apr 22 19:40:06 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b1b3869 games-arcade/notpacman: Stop using games.eclass Package-Manager: Portage-2.3.31, Repoman-2.3.9 games-arcade/notpacman/notpacman-1.0.4-r1.ebuild | 47 ++++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/games-arcade/notpacman/notpacman-1.0.4-r1.ebuild b/games-arcade/notpacman/notpacman-1.0.4-r1.ebuild new file mode 100644 index 00000000000..d8e99a5e140 --- /dev/null +++ b/games-arcade/notpacman/notpacman-1.0.4-r1.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit eutils gnome2-utils + +DESCRIPTION="A mashup of \"Not\" and \"Pacman\"" +HOMEPAGE="http://stabyourself.net/notpacman/" +SRC_URI="http://stabyourself.net/dl.php?file=notpacman-1004/notpacman-linux.zip -> ${P}.zip + https://dev.gentoo.org/~hasufell/distfiles/${PN}.png" + +LICENSE="WTFPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +LVSLOT="0.7" +RDEPEND=">=games-engines/love-0.7.2:${LVSLOT} + media-libs/devil[png] +" +DEPEND="app-arch/unzip" + +S="${WORKDIR}" + +src_install() { + local dir=/usr/share/love/${PN} + + exeinto "${dir}" + newexe not_pacman.love ${PN}.love + + einstalldocs + + doicon -s 32 "${DISTDIR}"/${PN}.png + make_wrapper ${PN} "love-${LVSLOT} ${PN}.love" "${dir}" + make_desktop_entry ${PN} +} + +pkg_preinst() { + gnome2_icon_savelist +} + +pkg_postinst() { + gnome2_icon_cache_update +} + +pkg_postrm() { + gnome2_icon_cache_update +}