diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-09-10 06:36:01 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-09-10 06:36:01 +0000 |
commit | 2f7b073c1bc54c873666c4522cd6cd49ac1d59df (patch) | |
tree | 072f3e7b49f6b078b595b1483277009b1f03d0f6 /games-puzzle/groundhog | |
parent | games-puzzle (diff) | |
download | gentoo-2-2f7b073c1bc54c873666c4522cd6cd49ac1d59df.tar.gz gentoo-2-2f7b073c1bc54c873666c4522cd6cd49ac1d59df.tar.bz2 gentoo-2-2f7b073c1bc54c873666c4522cd6cd49ac1d59df.zip |
games-puzzle !@
Diffstat (limited to 'games-puzzle/groundhog')
-rw-r--r-- | games-puzzle/groundhog/ChangeLog | 8 | ||||
-rw-r--r-- | games-puzzle/groundhog/Manifest | 3 | ||||
-rw-r--r-- | games-puzzle/groundhog/files/digest-groundhog-1.4 | 1 | ||||
-rw-r--r-- | games-puzzle/groundhog/groundhog-1.4.ebuild | 29 |
4 files changed, 41 insertions, 0 deletions
diff --git a/games-puzzle/groundhog/ChangeLog b/games-puzzle/groundhog/ChangeLog new file mode 100644 index 000000000000..c613be5a9acb --- /dev/null +++ b/games-puzzle/groundhog/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for app-games/groundhog +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/groundhog/ChangeLog,v 1.1 2003/09/10 06:36:00 vapier Exp $ + +*groundhog-1.4 (07 Mar 2003) + + 07 Mar 2003; Mike Frysinger <vapier@gentoo.org> : + Initial import. Ebuild submitted by Ron <doobedoobedo@quake3world.com> #15654. diff --git a/games-puzzle/groundhog/Manifest b/games-puzzle/groundhog/Manifest new file mode 100644 index 000000000000..0abe1c3decc1 --- /dev/null +++ b/games-puzzle/groundhog/Manifest @@ -0,0 +1,3 @@ +MD5 f21089f28d1aedafb7fb575b0c261764 ChangeLog 384 +MD5 b898d608ab64a97bfa6881a0cd46e8f6 groundhog-1.4.ebuild 719 +MD5 611bda4f6cc27238f83f72d3c3f6adbd files/digest-groundhog-1.4 65 diff --git a/games-puzzle/groundhog/files/digest-groundhog-1.4 b/games-puzzle/groundhog/files/digest-groundhog-1.4 new file mode 100644 index 000000000000..ab92f450548e --- /dev/null +++ b/games-puzzle/groundhog/files/digest-groundhog-1.4 @@ -0,0 +1 @@ +MD5 d350b9c214e4f3743d6f992c1fa72124 groundhog-1.4.tar.gz 221871 diff --git a/games-puzzle/groundhog/groundhog-1.4.ebuild b/games-puzzle/groundhog/groundhog-1.4.ebuild new file mode 100644 index 000000000000..f99913e67aac --- /dev/null +++ b/games-puzzle/groundhog/groundhog-1.4.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/groundhog/groundhog-1.4.ebuild,v 1.1 2003/09/10 06:36:00 vapier Exp $ + +inherit games + +DESCRIPTION="Kids card/puzzle game" +HOMEPAGE="http://home-2.consunet.nl/~cb007736/groundhog.html" +SRC_URI="http://home-2.consunet.nl/~cb007736/${P}.tar.gz" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86" +IUSE="nls" + +DEPEND="virtual/x11 + =x11-libs/gtk+-2* + =dev-libs/glib-2*" + +src_compile() { + egamesconf `use_enable nls` || die + emake CXXFLAGS="${CXXFLAGS}" || die +} + +src_install() { + make install DESTDIR=${D} || die + dodoc README NEWS AUTHORS TODO Changelog + prepgamesdirs +} |