summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2010-11-07 22:37:36 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2010-11-07 22:37:36 +0000
commit52dadf97a00096e0b521d8a8654082e2163597f8 (patch)
treec261998d462fe8d3fdaba88f32510c74d34ef53d /games-sports
parentRemove pmask of sci-chemistry/validation and sci-chemistry/maxit (gone from t... (diff)
downloadhistorical-52dadf97a00096e0b521d8a8654082e2163597f8.tar.gz
historical-52dadf97a00096e0b521d8a8654082e2163597f8.tar.bz2
historical-52dadf97a00096e0b521d8a8654082e2163597f8.zip
old
Package-Manager: portage-2.1.8.3/cvs/Linux i686
Diffstat (limited to 'games-sports')
-rw-r--r--games-sports/xmoto/Manifest4
-rw-r--r--games-sports/xmoto/files/xmoto-0.5.2-64bit.patch33
-rw-r--r--games-sports/xmoto/xmoto-0.5.2.ebuild94
3 files changed, 0 insertions, 131 deletions
diff --git a/games-sports/xmoto/Manifest b/games-sports/xmoto/Manifest
index a60363f46eaf..d41d1625e4f3 100644
--- a/games-sports/xmoto/Manifest
+++ b/games-sports/xmoto/Manifest
@@ -1,9 +1,5 @@
-AUX xmoto-0.5.2-64bit.patch 954 RMD160 1cac31931069d9ef855d8af731df17d6b1864edd SHA1 170cb0d1bb204893ae58fd4509585ddb0abce20e SHA256 1c6c5a0a31037b27ea9ed5f3f8e8b3aaae22bd699cca460a20737e63792988a8
-DIST inksmoto-0.6.0.tar.gz 2493402 RMD160 6cf76101e70e764aa74e8eeff90abe266d36f855 SHA1 8f318a0b1ac01054b879fd5510e2f27784896416 SHA256 d85b81b2b299c3a18c7f81ef69f44786218c409e8d90a6dd7661e1b15eba8b77
DIST inksmoto-0.7.0.tar.gz 2628941 RMD160 af6eb2c6698bae394c5a7a664d8d61920a4a9391 SHA1 ab47beb5f41706d355ddab6a7365cc24706fb893 SHA256 60bd1369d4c347e127886a5813af13daf39b56ce818c9f8b2fc7d4bba0af7e11
-DIST xmoto-0.5.2-src.tar.gz 38170502 RMD160 a8323336814261b0c2bb0acf13d5e65ac92e921d SHA1 aa819872f06beb114025c490cea8e229cd85135d SHA256 a8c91378ed439b640157267981b423dceea3584a439d25eea8aa28181458058f
DIST xmoto-0.5.3-src.tar.gz 52385576 RMD160 52e10637713b6c48c980032057a0da562c11b912 SHA1 7a2d8ab30b514932ce6907e5e0a7e926ee20cf8a SHA256 ce3b76792acec91d8b62c70830ee114318b8a62a1e6353834e869483490f1ff7
-EBUILD xmoto-0.5.2.ebuild 2597 RMD160 1d09dd967e69bdfc2724f3c2ac8a3568b5a42040 SHA1 1f6069d1b94eeca9d4f2809e439cca92dd8cf58f SHA256 69a5383ad26c250045a5b9c7f83663b2f402d0277cbd550b4b554144f1629a7a
EBUILD xmoto-0.5.3-r1.ebuild 2558 RMD160 96ca06142fb1d3af3a40fd6196d95d4908212dfe SHA1 14644e340b96c47d495aecd6c7f25768b2747995 SHA256 55eee1eff2a80c8cffdcd01901dbba5094589000836bb68342b1c00466f9bded
MISC ChangeLog 6924 RMD160 6b1a660d85cb33e45f1c290cae278a844280b4d0 SHA1 2dcb7ba2adc0f4086a36843a31cd7b3b4e302527 SHA256 5ac102eefd1f43fcdaadd395d62e9459f5b273c081f586e37cbc9c8d87bac388
MISC metadata.xml 270 RMD160 c447b9b1cea1f49ca7c00bab1f8aa6cdeb395afb SHA1 d0119628b902f2d7d0c56e532122df260eede5bf SHA256 43229adb28ae299ec42c09c8e7dc0f10eceba4af19d5094741471070094f5c57
diff --git a/games-sports/xmoto/files/xmoto-0.5.2-64bit.patch b/games-sports/xmoto/files/xmoto-0.5.2-64bit.patch
deleted file mode 100644
index 01afb15e0115..000000000000
--- a/games-sports/xmoto/files/xmoto-0.5.2-64bit.patch
+++ /dev/null
@@ -1,33 +0,0 @@
---- src/DBuffer.h.org 2009-09-10 11:58:28.000000000 +0200
-+++ src/DBuffer.h 2009-09-10 12:07:30.000000000 +0200
-@@ -69,6 +69,8 @@
- void operator >>(unsigned char &c);
- void operator <<(unsigned int n);
- void operator >>(unsigned int &n);
-+ void operator <<(unsigned long n);
-+ void operator >>(unsigned long &n);
- void operator <<(float n);
- void operator >>(float &n);
- void operator <<(std::string s);
-
---- src/DBuffer.cpp.org 2009-09-10 11:58:38.000000000 +0200
-+++ src/DBuffer.cpp 2009-09-10 12:08:18.000000000 +0200
-@@ -210,6 +210,18 @@
- n = (unsigned int) sn;
- }
-
-+ void DBuffer::operator <<(unsigned long n) {
-+ int sn;
-+ sn = (int) (n);
-+ *this << sn;
-+ }
-+
-+ void DBuffer::operator >>(unsigned long &n) {
-+ int sn;
-+ *this >> sn;
-+ n = (unsigned long) sn;
-+ }
-+
- void DBuffer::operator <<(float n) {
- writeBuf_LE((char *)&n, sizeof(float));
- }
diff --git a/games-sports/xmoto/xmoto-0.5.2.ebuild b/games-sports/xmoto/xmoto-0.5.2.ebuild
deleted file mode 100644
index cb501aaea295..000000000000
--- a/games-sports/xmoto/xmoto-0.5.2.ebuild
+++ /dev/null
@@ -1,94 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-sports/xmoto/xmoto-0.5.2.ebuild,v 1.8 2010/03/10 20:22:33 ssuominen Exp $
-
-EAPI=2
-inherit eutils flag-o-matic games
-
-LVL_PV="0.6.0" #they unfortunately don't release both at the same time, why ~ as separator :(
-LVL="inksmoto-${LVL_PV}"
-DESCRIPTION="A challenging 2D motocross platform game"
-HOMEPAGE="http://xmoto.tuxfamily.org"
-SRC_URI="http://download.tuxfamily.org/${PN}/${PN}/${PV}/${P}-src.tar.gz
- editor? ( http://download.tuxfamily.org/xmoto/svg2lvl/${LVL_PV}/${LVL}.tar.gz )"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="editor nls"
-
-RDEPEND="
- dev-db/sqlite:3
- dev-games/ode
- dev-lang/lua[deprecated]
- media-libs/jpeg:0
- media-libs/libpng
- media-libs/libsdl[joystick]
- media-libs/sdl-mixer[vorbis]
- media-libs/sdl-ttf
- media-libs/sdl-net
- net-misc/curl
- app-arch/bzip2
- virtual/opengl
- virtual/glu
- media-fonts/dejavu
- nls? ( virtual/libintl )"
-DEPEND="${RDEPEND}
- !=dev-db/sqlite-3.6.2
- nls? ( sys-devel/gettext )"
-RDEPEND="${RDEPEND}
- editor? ( media-gfx/inkscape )"
-
-src_prepare() {
- use editor && rm -vf "${WORKDIR}"/extensions/{bezmisc,inkex}.py
- sed -i \
- -e '/^gettextsrcdir/s:=.*:= @localedir@/gettext/po:' \
- po/Makefile.in.in || die
- sed -i \
- -e 's:png_set_gray_1_2_4_to_8:png_set_expand_gray_1_2_4_to_8:' \
- src/image/tim_png.cpp || die
- epatch "${FILESDIR}"/${P}-64bit.patch
-}
-
-src_configure() {
- # bug #289792
- filter-flags -DdDOUBLE
- has_version 'dev-games/ode[double-precision]' && append-flags -DdDOUBLE
-
- egamesconf \
- --disable-dependency-tracking \
- --with-enable-zoom=1 \
- --enable-threads=posix \
- $(use_enable nls) \
- --localedir=/usr/share/locale \
- --with-localesdir=/usr/share/locale \
- --with-renderer-sdlGfx=0 \
- --with-renderer-openGl=1
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- dodoc README TODO NEWS ChangeLog
-
- rm -f "${D}${GAMES_DATADIR}/${PN}"/Textures/Fonts/DejaVuSans.ttf
- dosym /usr/share/fonts/dejavu/DejaVuSans.ttf "${GAMES_DATADIR}/${PN}"/Textures/Fonts/
- doicon extra/xmoto.xpm
- make_desktop_entry ${PN} Xmoto
-
- prepgamesdirs
-
- if use editor; then
- insinto /usr/share/inkscape/
- doins -r "${WORKDIR}"/extensions/ || die "doins failed"
- fi
-}
-
-pkg_postinst() {
- games_pkg_postinst
- if use editor; then
- elog "If you want to know how to create Xmoto levels"
- elog "have a look at this Tutorial:"
- elog "http://wiki.xmoto.tuxfamily.org/index.php?title=Inksmoto-${LVL_PV}"
- elog "You can share your levels on the Xmoto homepage."
- fi
-}