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 0B4DE13832E for ; Fri, 5 Aug 2016 16:35:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DD5B9E0A5F; Fri, 5 Aug 2016 16:35:36 +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 2C62CE0A5F for ; Fri, 5 Aug 2016 16:35:36 +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 1E4A9340A6A for ; Fri, 5 Aug 2016 16:35:35 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 904312444 for ; Fri, 5 Aug 2016 16:35:33 +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: <1470414921.f30bfd47fb595de8f1f145df79af5d74dac7e55e.wizardedit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-kids/gmult/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-kids/gmult/gmult-8.0-r1.ebuild X-VCS-Directories: games-kids/gmult/ X-VCS-Committer: wizardedit X-VCS-Committer-Name: Austin English X-VCS-Revision: f30bfd47fb595de8f1f145df79af5d74dac7e55e X-VCS-Branch: master Date: Fri, 5 Aug 2016 16:35:33 +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: 978d5e93-6bc7-4b52-acca-f6cc0bf87d5d X-Archives-Hash: fce11245a26405e7b4d46b1ef02f7bac commit: f30bfd47fb595de8f1f145df79af5d74dac7e55e Author: Austin English gentoo org> AuthorDate: Fri Aug 5 15:55:06 2016 +0000 Commit: Austin English gentoo org> CommitDate: Fri Aug 5 16:35:21 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f30bfd47 games-kids/gmult: remove deprecated games eclass Also update to EAPI 6 Gentoo-Bug: https://bugs.gentoo.org/574082 Package-Manager: portage-2.3.0 games-kids/gmult/gmult-8.0-r1.ebuild | 40 ++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/games-kids/gmult/gmult-8.0-r1.ebuild b/games-kids/gmult/gmult-8.0-r1.ebuild new file mode 100644 index 0000000..8ab30c9 --- /dev/null +++ b/games-kids/gmult/gmult-8.0-r1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +inherit eutils gnome2-utils flag-o-matic + +DESCRIPTION="Multiplication Puzzle is a simple GTK+ 2 game that emulates the multiplication game found in Emacs" +HOMEPAGE="http://www.mterry.name/gmult/" +SRC_URI="https://launchpad.net/gmult/trunk/${PV}/+download/${P}.tar.bz2" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +RDEPEND="dev-libs/glib:2 + x11-libs/gtk+:3 + virtual/libintl" +DEPEND="${RDEPEND} + sys-devel/gettext + virtual/pkgconfig" + +src_configure() { + append-libs -lm + econf # \ + #--bindir="${GAMES_BINDIR}" +} + +pkg_preinst() { + gnome2_icon_savelist +} + +pkg_postinst() { + gnome2_icon_cache_update +} + +pkg_postrm() { + gnome2_icon_cache_update +}