diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-03-08 07:43:31 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-03-08 07:43:31 +0000 |
commit | 7760eb1b5823a9f7bcbaf52a1cff8ff3bb337c8f (patch) | |
tree | 3c270309e2d78e4f1fb19e1a240107ea3c64deec /games-puzzle/skoosh | |
parent | new package. fixes #43903 submitted by Nyari Zoltan (diff) | |
download | gentoo-2-7760eb1b5823a9f7bcbaf52a1cff8ff3bb337c8f.tar.gz gentoo-2-7760eb1b5823a9f7bcbaf52a1cff8ff3bb337c8f.tar.bz2 gentoo-2-7760eb1b5823a9f7bcbaf52a1cff8ff3bb337c8f.zip |
initial commit; ebuild submitted by Robert Morris via bug #43927
Diffstat (limited to 'games-puzzle/skoosh')
-rw-r--r-- | games-puzzle/skoosh/ChangeLog | 9 | ||||
-rw-r--r-- | games-puzzle/skoosh/Manifest | 2 | ||||
-rw-r--r-- | games-puzzle/skoosh/files/digest-skoosh-2.0.8 | 1 | ||||
-rw-r--r-- | games-puzzle/skoosh/metadata.xml | 5 | ||||
-rw-r--r-- | games-puzzle/skoosh/skoosh-2.0.8.ebuild | 27 |
5 files changed, 44 insertions, 0 deletions
diff --git a/games-puzzle/skoosh/ChangeLog b/games-puzzle/skoosh/ChangeLog new file mode 100644 index 000000000000..945e12fd9ab3 --- /dev/null +++ b/games-puzzle/skoosh/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for games-puzzle/skoosh +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/skoosh/ChangeLog,v 1.1 2004/03/08 07:43:31 mr_bones_ Exp $ + +*skoosh-2.0.8 (07 Mar 2004) + + 07 Mar 2004; Michael Sterrett <mr_bones_@gentoo.org> skoosh-2.0.8.ebuild: + initial commit; ebuild submitted by Robert Morris via bug #43927 + diff --git a/games-puzzle/skoosh/Manifest b/games-puzzle/skoosh/Manifest new file mode 100644 index 000000000000..1b1886040dea --- /dev/null +++ b/games-puzzle/skoosh/Manifest @@ -0,0 +1,2 @@ +MD5 42df0e8f4fc1876b2b21e460866131e9 skoosh-2.0.8.ebuild 639 +MD5 60eb3ec9d6c4a530fb39e27cbd7b8941 files/digest-skoosh-2.0.8 64 diff --git a/games-puzzle/skoosh/files/digest-skoosh-2.0.8 b/games-puzzle/skoosh/files/digest-skoosh-2.0.8 new file mode 100644 index 000000000000..bc4d41208512 --- /dev/null +++ b/games-puzzle/skoosh/files/digest-skoosh-2.0.8 @@ -0,0 +1 @@ +MD5 73c584c797554f85c38e2074f83bca41 skoosh-2.0.8.tar.gz 210024 diff --git a/games-puzzle/skoosh/metadata.xml b/games-puzzle/skoosh/metadata.xml new file mode 100644 index 000000000000..d3c2cc926f0b --- /dev/null +++ b/games-puzzle/skoosh/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>games</herd> +</pkgmetadata> diff --git a/games-puzzle/skoosh/skoosh-2.0.8.ebuild b/games-puzzle/skoosh/skoosh-2.0.8.ebuild new file mode 100644 index 000000000000..7d3a63e4ca69 --- /dev/null +++ b/games-puzzle/skoosh/skoosh-2.0.8.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/skoosh/skoosh-2.0.8.ebuild,v 1.1 2004/03/08 07:43:31 mr_bones_ Exp $ + +inherit gnome2 + +DESCRIPTION="Sliding tile puzzle for Gnome 2" +HOMEPAGE="http://homepages.ihug.co.nz/~trmusson/programs.html" +SRC_URI="http://homepages.ihug.co.nz/~trmusson/stuff/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86" +IUSE="nls" + +DEPEND=">=gnome-base/gconf-2 + >=gnome-base/libgnomeui-2" + +RDEPEND="${DEPEND} + nls? ( sys-devel/gettext )" + +src_unpack() { + unpack ${A} + # Need to apply omf fix or else we get access + # violation errors related to sandbox. + gnome2_omf_fix "${S}/help/C/Makefile.in" +} |