summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2009-11-07 18:34:40 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2009-11-07 18:34:40 +0000
commitce1fcb27e54f1fb3aebe839773a641354c6e0ecf (patch)
treed233a4dc29468862e371a7dd8d81def580c62cfa /games-puzzle
parentamd64/x86 stable wrt #291945 (diff)
downloadgentoo-2-ce1fcb27e54f1fb3aebe839773a641354c6e0ecf.tar.gz
gentoo-2-ce1fcb27e54f1fb3aebe839773a641354c6e0ecf.tar.bz2
gentoo-2-ce1fcb27e54f1fb3aebe839773a641354c6e0ecf.zip
version bump
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'games-puzzle')
-rw-r--r--games-puzzle/lmarbles/ChangeLog10
-rw-r--r--games-puzzle/lmarbles/files/lmarbles-1.0.8-gentoo.patch15
-rw-r--r--games-puzzle/lmarbles/lmarbles-1.0.8.ebuild31
3 files changed, 54 insertions, 2 deletions
diff --git a/games-puzzle/lmarbles/ChangeLog b/games-puzzle/lmarbles/ChangeLog
index 73e3e1d96a0b..088b6a4ea081 100644
--- a/games-puzzle/lmarbles/ChangeLog
+++ b/games-puzzle/lmarbles/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for games-puzzle/lmarbles
-# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-puzzle/lmarbles/ChangeLog,v 1.5 2007/02/08 21:18:27 wolf31o2 Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-puzzle/lmarbles/ChangeLog,v 1.6 2009/11/07 18:34:40 mr_bones_ Exp $
+
+*lmarbles-1.0.8 (07 Nov 2009)
+
+ 07 Nov 2009; Michael Sterrett <mr_bones_@gentoo.org>
+ +lmarbles-1.0.8.ebuild, +files/lmarbles-1.0.8-gentoo.patch:
+ version bump
08 Feb 2007; Chris Gianelloni <wolf31o2@gentoo.org> ChangeLog:
Regenerate digest in Manifest2 format.
diff --git a/games-puzzle/lmarbles/files/lmarbles-1.0.8-gentoo.patch b/games-puzzle/lmarbles/files/lmarbles-1.0.8-gentoo.patch
new file mode 100644
index 000000000000..160b6d0f79d5
--- /dev/null
+++ b/games-puzzle/lmarbles/files/lmarbles-1.0.8-gentoo.patch
@@ -0,0 +1,15 @@
+diff -ru lmarbles-1.0.8.orig/Makefile.am lmarbles-1.0.8/Makefile.am
+--- lmarbles-1.0.8.orig/Makefile.am 2009-10-26 16:01:08.000000000 -0400
++++ lmarbles-1.0.8/Makefile.am 2009-11-07 13:23:55.994140203 -0500
+@@ -4,11 +4,6 @@
+ README-SDL.txt TODO LMarbles.prj lmarbles32.gif lmarbles48.gif \
+ lmarbles.desktop.in
+
+-desktopdir = $(datadir)/applications
+-desktop_DATA = lmarbles.desktop
+-icondir = $(datadir)/icons
+-icon_DATA = lmarbles48.gif
+-
+ AUTOMAKE_OPTIONS = foreign
+
+ WIN32_TEXT = AUTHORS COPYING ChangeLog INSTALL README README-SDL.txt TODO marbles.spec
diff --git a/games-puzzle/lmarbles/lmarbles-1.0.8.ebuild b/games-puzzle/lmarbles/lmarbles-1.0.8.ebuild
new file mode 100644
index 000000000000..81ec83b9e82d
--- /dev/null
+++ b/games-puzzle/lmarbles/lmarbles-1.0.8.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2009 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/games-puzzle/lmarbles/lmarbles-1.0.8.ebuild,v 1.1 2009/11/07 18:34:40 mr_bones_ Exp $
+
+EAPI=2
+inherit autotools eutils games
+
+DESCRIPTION="puzzle game inspired by Atomix and written in SDL"
+HOMEPAGE="http://lgames.sourceforge.net/index.php?project=LMarbles"
+SRC_URI="mirror://sourceforge/lgames/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE=""
+
+DEPEND="media-libs/libsdl[video]
+ media-libs/sdl-mixer"
+
+src_prepare() {
+ epatch "${FILESDIR}"/${P}-gentoo.patch
+ eautoreconf
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die "make install failed"
+ dodoc AUTHORS ChangeLog README TODO
+ newicon lmarbles48.gif ${PN}.gif
+ make_desktop_entry lmarbles LMarbles /usr/share/pixmaps/${PN}.gif
+ prepgamesdirs
+}