summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2007-01-29 22:24:00 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2007-01-29 22:24:00 +0000
commit0ac639988370f37c4ea353660d08ac0a1cdbf8ae (patch)
tree0755aa71526ebc679fa44e099112e32a73e98ae2 /games-puzzle
parentRemove xine-lib mask. (diff)
downloadgentoo-2-0ac639988370f37c4ea353660d08ac0a1cdbf8ae.tar.gz
gentoo-2-0ac639988370f37c4ea353660d08ac0a1cdbf8ae.tar.bz2
gentoo-2-0ac639988370f37c4ea353660d08ac0a1cdbf8ae.zip
version bump
(Portage version: 2.1.1-r2)
Diffstat (limited to 'games-puzzle')
-rw-r--r--games-puzzle/xblockout/ChangeLog10
-rw-r--r--games-puzzle/xblockout/files/digest-xblockout-1.1.53
-rw-r--r--games-puzzle/xblockout/xblockout-1.1.5.ebuild54
3 files changed, 65 insertions, 2 deletions
diff --git a/games-puzzle/xblockout/ChangeLog b/games-puzzle/xblockout/ChangeLog
index d513bac8bc82..939926415bdf 100644
--- a/games-puzzle/xblockout/ChangeLog
+++ b/games-puzzle/xblockout/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for games-puzzle/xblockout
-# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-puzzle/xblockout/ChangeLog,v 1.13 2006/12/06 17:20:50 wolf31o2 Exp $
+# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-puzzle/xblockout/ChangeLog,v 1.14 2007/01/29 22:24:00 mr_bones_ Exp $
+
+*xblockout-1.1.5 (29 Jan 2007)
+
+ 29 Jan 2007; Michael Sterrett <mr_bones_@gentoo.org>
+ +xblockout-1.1.5.ebuild:
+ version bump
06 Dec 2006; Chris Gianelloni <wolf31o2@gentoo.org>
xblockout-1.1.3.ebuild:
diff --git a/games-puzzle/xblockout/files/digest-xblockout-1.1.5 b/games-puzzle/xblockout/files/digest-xblockout-1.1.5
new file mode 100644
index 000000000000..c6f9362b9e27
--- /dev/null
+++ b/games-puzzle/xblockout/files/digest-xblockout-1.1.5
@@ -0,0 +1,3 @@
+MD5 f618cb6fc20314683c20679d063e1b37 xbl-1.1.5.tar.gz 136508
+RMD160 30cf9f6b1c251b267f0ebe0b85f349e9dce3dd44 xbl-1.1.5.tar.gz 136508
+SHA256 5628e4a70709e3d996f4adf635a1760d96fad3ded0dd32d32205bdccde1e2cad xbl-1.1.5.tar.gz 136508
diff --git a/games-puzzle/xblockout/xblockout-1.1.5.ebuild b/games-puzzle/xblockout/xblockout-1.1.5.ebuild
new file mode 100644
index 000000000000..c612c5185550
--- /dev/null
+++ b/games-puzzle/xblockout/xblockout-1.1.5.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/games-puzzle/xblockout/xblockout-1.1.5.ebuild,v 1.1 2007/01/29 22:24:00 mr_bones_ Exp $
+
+inherit flag-o-matic games
+
+DESCRIPTION="X Window block dropping game in 3 Dimension"
+HOMEPAGE="http://www710.univ-lyon1.fr/ftp/xbl/xbl.html"
+SRC_URI="http://www710.univ-lyon1.fr/~exco/XBL/xbl-${PV}.tar.gz"
+
+LICENSE="GPL-1"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE=""
+
+DEPEND="x11-libs/libXext"
+
+S=${WORKDIR}/xbl-${PV}
+
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+
+ sed -i \
+ -e 's:-lm:-lm -lX11:' \
+ -e '/DGROUP_GID/d' \
+ -e "s:-g$:${CFLAGS}:" \
+ Makefile.in || die "sed failed"
+}
+
+src_compile() {
+ # Don't know about other archs. --slarti
+ use amd64 && filter-flags "-fweb"
+
+ egamesconf || die
+ emake \
+ USE_SETGID= \
+ SCOREDIR="${GAMES_DATADIR}/${PN}" \
+ RESOURCEDIR="${GAMES_DATADIR}/${PN}" \
+ || die "emake failed"
+}
+
+src_install() {
+ newgamesbin bl xbl || die "newgamesbin failed"
+
+ insinto "${GAMES_DATADIR}"/${PN}
+ newins Xbl.ad Xbl || die "doins failed"
+
+ newman xbl.man xbl.6
+ dodoc README xbl-README
+ dohtml *.html *.gif
+
+ prepgamesdirs
+}