diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-09-11 05:30:29 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-09-11 05:30:29 +0000 |
commit | bffc55763910573d17b7246c575b7cdad6304b6c (patch) | |
tree | 287ecc6d57d3f8bf631ebfc326a72e0932a35811 /games-arcade | |
parent | file is stupid; punt it #63429 (diff) | |
download | gentoo-2-bffc55763910573d17b7246c575b7cdad6304b6c.tar.gz gentoo-2-bffc55763910573d17b7246c575b7cdad6304b6c.tar.bz2 gentoo-2-bffc55763910573d17b7246c575b7cdad6304b6c.zip |
initial commit - ebuild based on the one provided by Alex Linke via bug #63566
Diffstat (limited to 'games-arcade')
-rw-r--r-- | games-arcade/xbubble/ChangeLog | 10 | ||||
-rw-r--r-- | games-arcade/xbubble/Manifest | 2 | ||||
-rw-r--r-- | games-arcade/xbubble/files/digest-xbubble-0.5.8 | 1 | ||||
-rw-r--r-- | games-arcade/xbubble/metadata.xml | 5 | ||||
-rw-r--r-- | games-arcade/xbubble/xbubble-0.5.8.ebuild | 43 |
5 files changed, 61 insertions, 0 deletions
diff --git a/games-arcade/xbubble/ChangeLog b/games-arcade/xbubble/ChangeLog new file mode 100644 index 000000000000..4ba6bbbfe582 --- /dev/null +++ b/games-arcade/xbubble/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for games-arcade/xbubble +# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-arcade/xbubble/ChangeLog,v 1.1 2004/09/11 05:30:28 mr_bones_ Exp $ + +*xbubble-0.5.8 (10 Sep 2004) + + 10 Sep 2004; Michael Sterrett <mr_bones_@gentoo.org> +metadata.xml, + +xbubble-0.5.8.ebuild: + initial commit - ebuild based on the one provided by Alex Linke via bug #63566 + diff --git a/games-arcade/xbubble/Manifest b/games-arcade/xbubble/Manifest new file mode 100644 index 000000000000..9c75c50e926c --- /dev/null +++ b/games-arcade/xbubble/Manifest @@ -0,0 +1,2 @@ +MD5 bf2900e2f8bd0d7939a152fddbd74481 xbubble-0.5.8.ebuild 530 +MD5 ad5c558fae56fa370b8e01d0d5656c04 files/digest-xbubble-0.5.8 66 diff --git a/games-arcade/xbubble/files/digest-xbubble-0.5.8 b/games-arcade/xbubble/files/digest-xbubble-0.5.8 new file mode 100644 index 000000000000..a8fc59a54a30 --- /dev/null +++ b/games-arcade/xbubble/files/digest-xbubble-0.5.8 @@ -0,0 +1 @@ +MD5 82de55a667ea3bed05967b937f3eace4 xbubble-0.5.8.tar.gz 5544359 diff --git a/games-arcade/xbubble/metadata.xml b/games-arcade/xbubble/metadata.xml new file mode 100644 index 000000000000..d3c2cc926f0b --- /dev/null +++ b/games-arcade/xbubble/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-arcade/xbubble/xbubble-0.5.8.ebuild b/games-arcade/xbubble/xbubble-0.5.8.ebuild new file mode 100644 index 000000000000..1f4eb74f8c54 --- /dev/null +++ b/games-arcade/xbubble/xbubble-0.5.8.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-arcade/xbubble/xbubble-0.5.8.ebuild,v 1.1 2004/09/11 05:30:28 mr_bones_ Exp $ + +inherit games + +DESCRIPTION="a Puzzle Bobble clone similar to Frozen-Bubble" +HOMEPAGE="http://www.nongnu.org/xbubble" +SRC_URI="http://www.ibiblio.org/pub/mirrors/gnu/ftp/savannah/files/xbubble/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86" +IUSE="nls" + +DEPEND="virtual/x11 + media-libs/libpng" + +src_unpack() { + unpack ${A} + cd "${S}" + sed -i \ + -e "/^AM_CFLAGS/d" src/Makefile.in \ + || die "sed failed" +} + +src_compile() { + egamesconf \ + --disable-dependency-tracking \ + $(use_enable nls) \ + || die + emake \ + localedir="/usr/share/locale" \ + || die "emake failed" +} + +src_install() { + make DESTDIR="${D}" \ + localedir="/usr/share/locale" \ + install || die "make install failed" + dodoc AUTHORS ChangeLog NEWS NetworkProtocol README TODO + prepgamesdirs +} |