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 C1A8113832F for ; Mon, 1 Aug 2016 21:10:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B2A3321C0B2; Mon, 1 Aug 2016 21:10:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id F412A21C0E7 for ; Mon, 1 Aug 2016 21:10:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2310F340BFD for ; Mon, 1 Aug 2016 21:10:06 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 361A02424 for ; Mon, 1 Aug 2016 21:10:04 +0000 (UTC) From: "Austin English" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Austin English" Message-ID: <1470085793.ddd13ecf6fe2eb5d3a6f9e59101ae6330c66a458.wizardedit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-board/simsu/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-board/simsu/simsu-1.2.3-r1.ebuild X-VCS-Directories: games-board/simsu/ X-VCS-Committer: wizardedit X-VCS-Committer-Name: Austin English X-VCS-Revision: ddd13ecf6fe2eb5d3a6f9e59101ae6330c66a458 X-VCS-Branch: master Date: Mon, 1 Aug 2016 21:10:04 +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: f3612337-48e7-4693-a9e4-2c750bef2a87 X-Archives-Hash: 557bfb243d776681a2d5ab5e467e2632 commit: ddd13ecf6fe2eb5d3a6f9e59101ae6330c66a458 Author: Austin English gentoo org> AuthorDate: Mon Aug 1 20:52:49 2016 +0000 Commit: Austin English gentoo org> CommitDate: Mon Aug 1 21:09:53 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ddd13ecf games-board/simsu: remove deprecated games eclass Also update to EAPI 6 Gentoo-Bug: https://bugs.gentoo.org/574082 Package-Manager: portage-2.3.0 games-board/simsu/simsu-1.2.3-r1.ebuild | 44 +++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/games-board/simsu/simsu-1.2.3-r1.ebuild b/games-board/simsu/simsu-1.2.3-r1.ebuild new file mode 100644 index 0000000..7dd5333 --- /dev/null +++ b/games-board/simsu/simsu-1.2.3-r1.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit eutils gnome2-utils qmake-utils + +DESCRIPTION="A basic sudoku game" +HOMEPAGE="http://gottcode.org/simsu/" +SRC_URI="http://gottcode.org/${PN}/${P}-src.tar.bz2" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="dev-qt/qtgui:4" +RDEPEND=${DEPEND} + +src_configure() { + eqmake4 +} + +src_install() { + dobin ${PN} + insinto /usr/share/${PN}/translations + doins translations/*qm + dodoc ChangeLog + doicon -s scalable icons/hicolor/scalable/apps/${PN}.svg + domenu icons/${PN}.desktop +} + +pkg_preinst() { + gnome2_icon_savelist +} + +pkg_postinst() { + gnome2_icon_cache_update +} + +pkg_postrm() { + gnome2_icon_cache_update +}