diff options
3 files changed, 56 insertions, 1 deletions
diff --git a/games-board/gnome-mastermind/ChangeLog b/games-board/gnome-mastermind/ChangeLog index cf5f820c1444..6e20ca624dea 100644 --- a/games-board/gnome-mastermind/ChangeLog +++ b/games-board/gnome-mastermind/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for games-board/gnome-mastermind # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/gnome-mastermind/ChangeLog,v 1.4 2008/03/20 00:00:22 nyhm Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-board/gnome-mastermind/ChangeLog,v 1.5 2008/04/27 02:25:32 mr_bones_ Exp $ + +*gnome-mastermind-0.3.1 (27 Apr 2008) + + 27 Apr 2008; Michael Sterrett <mr_bones_@gentoo.org> + +files/gnome-mastermind-0.3.1-gentoo.patch, + +gnome-mastermind-0.3.1.ebuild: + version bump 19 Mar 2008; Tristan Heaven <nyhm@gentoo.org> gnome-mastermind-0.3.ebuild: Drop games eclass usage diff --git a/games-board/gnome-mastermind/files/gnome-mastermind-0.3.1-gentoo.patch b/games-board/gnome-mastermind/files/gnome-mastermind-0.3.1-gentoo.patch new file mode 100644 index 000000000000..ba14e592ae16 --- /dev/null +++ b/games-board/gnome-mastermind/files/gnome-mastermind-0.3.1-gentoo.patch @@ -0,0 +1,11 @@ +--- Makefile.in.old 2007-08-25 01:12:01.000000000 +0200 ++++ Makefile.in 2007-08-25 01:14:29.000000000 +0200 +@@ -685,7 +685,7 @@ + + info-am: + +-install-data-am: install-pkgdataDATA ++install-data-am: + + install-exec-am: + diff --git a/games-board/gnome-mastermind/gnome-mastermind-0.3.1.ebuild b/games-board/gnome-mastermind/gnome-mastermind-0.3.1.ebuild new file mode 100644 index 000000000000..91b5d9bd64ef --- /dev/null +++ b/games-board/gnome-mastermind/gnome-mastermind-0.3.1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2008 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.ebuild,v 1.1 2008/04/27 02:25:32 mr_bones_ Exp $ + +inherit eutils gnome2 + +DESCRIPTION="A little Mastermind game for GNOME" +HOMEPAGE="http://www5.autistici.org/gnome-mastermind/" +SRC_URI="http://download.gna.org/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +RDEPEND="gnome-base/gconf + gnome-base/orbit + app-text/gnome-doc-utils + dev-libs/atk + dev-libs/glib + x11-libs/pango + x11-libs/cairo + x11-libs/gtk+" +DEPEND="${RDEPEND} + dev-util/pkgconfig + dev-util/intltool + sys-devel/gettext + app-text/scrollkeeper" + +src_unpack() { + gnome2_src_unpack + epatch "${FILESDIR}"/${P}-gentoo.patch +} + +src_install() { + DOCS="AUTHORS ChangeLog NEWS TODO" gnome2_src_install +} |