summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2008-03-31 03:15:40 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2008-03-31 03:15:40 +0000
commit5a0262692cd4e13d84c8d4123ea96affff6b53e0 (patch)
tree8678edf1731931a149c03550dcff8bf3ef1ffbc0 /games-action/trackballs
parentStable for HPPA (bug #215371). (diff)
downloadhistorical-5a0262692cd4e13d84c8d4123ea96affff6b53e0.tar.gz
historical-5a0262692cd4e13d84c8d4123ea96affff6b53e0.tar.bz2
historical-5a0262692cd4e13d84c8d4123ea96affff6b53e0.zip
old
Package-Manager: portage-2.1.4.4
Diffstat (limited to 'games-action/trackballs')
-rw-r--r--games-action/trackballs/trackballs-1.1.2.ebuild58
1 files changed, 0 insertions, 58 deletions
diff --git a/games-action/trackballs/trackballs-1.1.2.ebuild b/games-action/trackballs/trackballs-1.1.2.ebuild
deleted file mode 100644
index f23621feed9a..000000000000
--- a/games-action/trackballs/trackballs-1.1.2.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-action/trackballs/trackballs-1.1.2.ebuild,v 1.5 2008/02/29 18:08:34 carlo Exp $
-
-inherit eutils games
-
-DESCRIPTION="simple game similar to the classical game Marble Madness"
-HOMEPAGE="http://trackballs.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz
- mirror://gentoo/${PN}-music-1.2.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
-IUSE="nls"
-
-RDEPEND="virtual/opengl
- virtual/glu
- media-libs/libsdl
- >=dev-scheme/guile-1.6
- media-libs/sdl-mixer
- media-libs/sdl-image
- media-libs/sdl-ttf
- nls? ( virtual/libintl )"
-DEPEND="${RDEPEND}
- nls? ( sys-devel/gettext )"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- sed -i \
- -e 's/icons//' share/Makefile.in \
- || die "sed failed"
- sed -i \
- -e '/^localedir/s:=.*:=/usr/share/locale:' \
- src/Makefile.in \
- po/Makefile.in.in \
- || die "sed failed"
-}
-
-src_compile() {
- egamesconf \
- --disable-dependency-tracking \
- --with-highscores="${GAMES_STATEDIR}/${PN}-highscores" \
- $(use_enable nls) \
- || die
- emake || die "emake failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- insinto "${GAMES_DATADIR}/${PN}/music"
- doins "${WORKDIR}"/tb_*.ogg || die "doins failed"
- dodoc AUTHORS ChangeLog README* NEWS
- doicon share/icons/*png || die "doicon failed"
- make_desktop_entry trackballs "Trackballs" trackballs-48x48
- prepgamesdirs
-}