summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGluzskiy Alexandr <sss123next@list.ru>2013-07-15 03:21:26 +0300
committerGluzskiy Alexandr <sss123next@list.ru>2013-07-15 03:21:26 +0300
commitf1bff082bde8e4703f85950fd0d001d64033543b (patch)
treee4afd87c6b47eb0286a559f36079055d47197a98
parent2d6fa23435d96fe338980ae51c07ab8e1b2251fc (diff)
deleted: games-sports/xmoto/Manifest
deleted: games-sports/xmoto/xmoto-9999.ebuild
-rw-r--r--games-sports/xmoto/Manifest2
-rw-r--r--games-sports/xmoto/xmoto-9999.ebuild120
2 files changed, 0 insertions, 122 deletions
diff --git a/games-sports/xmoto/Manifest b/games-sports/xmoto/Manifest
deleted file mode 100644
index c266bb6..0000000
--- a/games-sports/xmoto/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-AUX xmoto_libpng-1.4.patch 388 RMD160 9343f3fcff9dedd1ac2d69db022ac7375c1875af SHA1 19fbcbf7c641180af783ede65ced58a97124108f SHA256 f7cb750535263b1a828bfe8762fa0fcc9a0d4c5b1add6027c5df5f2c4f3270d2
-EBUILD xmoto-9999.ebuild 3112 RMD160 4ff604fb4d8f3422187f8819241b06577b23c160 SHA1 32526f423a5d4baa082eed7e556f6b833fa3a0b4 SHA256 b17796a3077a725cfb2fc00cf2789ee1a87015221063007a0da8e8b02683d128
diff --git a/games-sports/xmoto/xmoto-9999.ebuild b/games-sports/xmoto/xmoto-9999.ebuild
deleted file mode 100644
index 19405fc..0000000
--- a/games-sports/xmoto/xmoto-9999.ebuild
+++ /dev/null
@@ -1,120 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-sports/xmoto/xmoto-0.4.2.ebuild,v 1.4 2008/09/06 13:29:41 nixnut Exp $
-
-inherit eutils games subversion autotools cmake-utils
-
-LVL="inksmoto-0.4.1" #they unfortunately don't release both at the same time
-DESCRIPTION="A challenging 2D motocross platform game"
-HOMEPAGE="http://xmoto.tuxfamily.org"
-SRC_URI=""
-
-ESVN_REPO_URI="svn://svn.tuxfamily.org/svnroot/xmoto/xmoto/trunk"
-ESVN_STORE_DIR="${DISTDIR}/svn-src"
-ESVN_PROJECT="${PN/-svn}"
-#ESVN_BOOTSTRAP="./reconf"
-
-S="${WORKDIR}/${P/_/}"
-
-LICENSE="GPL-2"
-SLOT=""
-KEYWORDS=""
-IUSE="X editor nls" #sdl"
-
-RDEPEND="virtual/jpeg
- media-libs/libpng
- media-libs/libsdl
- media-libs/sdl-mixer
- media-libs/sdl-ttf
- net-misc/curl
- dev-lang/lua
- dev-games/ode
- virtual/opengl
- virtual/glu
- nls? ( virtual/libintl )
- editor? ( >=media-gfx/inkscape-0.45 )"
-DEPEND="${RDEPEND}
- >=dev-db/sqlite-3
- nls? ( sys-devel/gettext )"
-pkg_setup() {
- if has_version ">=dev-lang/lua-5.1.3-r1" && ! built_with_use dev-lang/lua deprecated ; then
- eerror "Re-emerge dev-lang/lua with 'deprecated' USE flag"
- eerror "Check your USE flags, re-emerge the dependencies and then"
- eerror "emerge this package."
- die
- fi
- games_pkg_setup
-}
-src_unpack() {
- subversion_src_unpack
- cd "${S}"
- eautoreconf
- use editor && rm -f "${WORKDIR}"/${LVL}/{bezmisc,inkex}.py
- cd "${S}"
-}
-
-src_compile() {
- #if use sdl ; then
- # ewarn "SDL is known to be broken, if you experience any troubles please"
- # ewarn "try again without this useflag"
- # RENDERER="--with-renderer-sdlGfx=1 --with-renderer-openGl=0"
- #else
- RENDERER="--with-renderer-sdlGfx=0 --with-renderer-openGl=1"
- #fi
- if ! use nls ; then
- NLS="--disable-nls"
- else
- NLS="--with-gettext"
- fi
- egamesconf \
- --disable-dependency-tracking \
- --with-enable-zoom=1 \
- --enable-threads=posix \
- --with-gnu-ld \
- $(use_with X) \
- --with-localesdir=/usr/share/locale \
- --with-internal-xdg=1 \
- ${RENDERER} \
- ${NLS} \
- || die
- emake || die "emake failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- ## if it is not working nice way, we'll do it ugly way
- if use nls ; then
- dodir /usr/share/locale
-
- cd "${S}"/po
- for i in `ls -c1 |grep "\.gmo$"` ; do
- BASE=$(echo ${i} |sed 's/\.gmo$//g')
- msgfmt -v -o ${BASE}.mo ${BASE}.po
-
- insinto /usr/share/locale/${BASE}/LC_MESSAGES
- newins ${BASE}.gmo xmoto.mo
- done;
- fi
- cd "${S}"
- dodoc README TODO NEWS ChangeLog
-
- doicon extra/xmoto.xpm
- domenu extra/xmoto.desktop
-
- prepgamesdirs
-
- if use editor; then
- insinto /usr/share/inkscape/extensions
- doins "${WORKDIR}"/${LVL}/*.{inx,py,xml} || 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=Inkscape-0.4.0"
- elog "You can share your levels on the Xmoto homepage."
- fi
-}