summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2014-11-22 16:17:47 +0000
committerPacho Ramos <pacho@gentoo.org>2014-11-22 16:17:47 +0000
commit87b1f5be707be0d93ab531c23ec37d809055e754 (patch)
treea2137b680fe9ed9c22b2d3324017c9132e29ef13 /games-board
parentCleanup old. (diff)
downloadgentoo-2-87b1f5be707be0d93ab531c23ec37d809055e754.tar.gz
gentoo-2-87b1f5be707be0d93ab531c23ec37d809055e754.tar.bz2
gentoo-2-87b1f5be707be0d93ab531c23ec37d809055e754.zip
Bump to eapi5, fix .desktop file and respect LINGUAS
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'games-board')
-rw-r--r--games-board/gnome-mastermind/ChangeLog9
-rw-r--r--games-board/gnome-mastermind/gnome-mastermind-0.3.1-r1.ebuild46
2 files changed, 53 insertions, 2 deletions
diff --git a/games-board/gnome-mastermind/ChangeLog b/games-board/gnome-mastermind/ChangeLog
index c9319274661f..23a4aafb241d 100644
--- a/games-board/gnome-mastermind/ChangeLog
+++ b/games-board/gnome-mastermind/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for games-board/gnome-mastermind
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-board/gnome-mastermind/ChangeLog,v 1.10 2013/10/29 01:36:30 blueness Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-board/gnome-mastermind/ChangeLog,v 1.11 2014/11/22 16:17:47 pacho Exp $
+
+*gnome-mastermind-0.3.1-r1 (22 Nov 2014)
+
+ 22 Nov 2014; Pacho Ramos <pacho@gentoo.org> +gnome-mastermind-0.3.1-r1.ebuild:
+ Bump to eapi5, fix .desktop file and respect LINGUAS
29 Oct 2013; Anthony G. Basile <blueness@gentoo.org>
gnome-mastermind-0.3.1.ebuild:
diff --git a/games-board/gnome-mastermind/gnome-mastermind-0.3.1-r1.ebuild b/games-board/gnome-mastermind/gnome-mastermind-0.3.1-r1.ebuild
new file mode 100644
index 000000000000..bfc046e68991
--- /dev/null
+++ b/games-board/gnome-mastermind/gnome-mastermind-0.3.1-r1.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/games-board/gnome-mastermind/gnome-mastermind-0.3.1-r1.ebuild,v 1.1 2014/11/22 16:17:47 pacho Exp $
+
+EAPI=5
+GCONF_DEBUG="yes"
+
+inherit autotools eutils gnome2
+
+DESCRIPTION="A little Mastermind game for GNOME"
+HOMEPAGE="http://www.autistici.org/gnome-mastermind/"
+SRC_URI="http://download.gna.org/gnome-mastermind/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc ~x86"
+IUSE=""
+
+RDEPEND="
+ gnome-base/gconf:2
+ gnome-base/orbit
+ app-text/gnome-doc-utils
+ dev-libs/atk
+ dev-libs/glib:2
+ x11-libs/pango
+ x11-libs/cairo
+ x11-libs/gtk+:2
+"
+DEPEND="${RDEPEND}
+ virtual/pkgconfig
+ dev-util/intltool
+ sys-devel/gettext
+ app-text/scrollkeeper
+"
+
+src_prepare() {
+ epatch "${FILESDIR}"/${P}-gentoo.patch
+
+ # Fix .desktop file
+ sed -i -e 's/True/true/' desktop/gnome-mastermind.desktop.in || die
+
+ # Regenarate all intltool files to respect LINGUAS
+ eautoreconf
+
+ gnome2_src_prepare
+}