diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2007-11-12 05:23:01 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2007-11-12 05:23:01 +0000 |
commit | 98dee84af91c9cf364d12fec90a942a337b98ce0 (patch) | |
tree | 52e9bcd7a8a280c26937be830857501252c480c8 /games-board | |
parent | bump music tarball (diff) | |
download | gentoo-2-98dee84af91c9cf364d12fec90a942a337b98ce0.tar.gz gentoo-2-98dee84af91c9cf364d12fec90a942a337b98ce0.tar.bz2 gentoo-2-98dee84af91c9cf364d12fec90a942a337b98ce0.zip |
old
(Portage version: 2.1.3.19)
Diffstat (limited to 'games-board')
-rw-r--r-- | games-board/pouetchess/files/digest-pouetchess-0.2.0 | 3 | ||||
-rw-r--r-- | games-board/pouetchess/pouetchess-0.2.0.ebuild | 71 |
2 files changed, 0 insertions, 74 deletions
diff --git a/games-board/pouetchess/files/digest-pouetchess-0.2.0 b/games-board/pouetchess/files/digest-pouetchess-0.2.0 deleted file mode 100644 index d5dc5c702be3..000000000000 --- a/games-board/pouetchess/files/digest-pouetchess-0.2.0 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 c0454aca11ead9be724d769c521120b1 pouetchess_src_0.2.0.tar.gz 1055338 -RMD160 29611b78ef75b3707ad98752055da775335c0490 pouetchess_src_0.2.0.tar.gz 1055338 -SHA256 fe966ff1b0aa2dd6d0ca2b62692f5b788e3a286050a6a374e58ca0612f68b2ef pouetchess_src_0.2.0.tar.gz 1055338 diff --git a/games-board/pouetchess/pouetchess-0.2.0.ebuild b/games-board/pouetchess/pouetchess-0.2.0.ebuild deleted file mode 100644 index 6fb996363cdc..000000000000 --- a/games-board/pouetchess/pouetchess-0.2.0.ebuild +++ /dev/null @@ -1,71 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/pouetchess/pouetchess-0.2.0.ebuild,v 1.4 2007/03/12 13:51:29 genone Exp $ - -inherit eutils toolchain-funcs games - -MY_PN=${PN/c/C} -DESCRIPTION="3D and open source chess game" -HOMEPAGE="http://pouetchess.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${PN}_src_${PV}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc x86" -IUSE="debug" - -RDEPEND="media-libs/libsdl - media-libs/sdl-image - virtual/opengl" -DEPEND="${RDEPEND} - dev-util/scons" - -S=${WORKDIR}/${PN}_src_${PV} - -pkg_setup() { - games_pkg_setup - elog "If you experience problems building pouetchess with nvidia drivers," - elog "you can try:" - elog "eselect opengl set xorg-x11" - elog "emerge pouetchess" - elog "eselect opengl set nvidia" -} - -src_unpack() { - unpack ${A} - cd "${S}" - epatch \ - "${FILESDIR}"/${P}-sconstruct-sandbox.patch \ - "${FILESDIR}"/${P}-nvidia_glext.patch - - # Fix for LibSDL >= 1.2.10 detection - sed -i \ - -e "s:sdlver.split('.') >= \['1','2','8'\]:sdlver.split('.') >= [1,2,8]:" \ - pouetChess.py \ - || die "sed failed" -} - -src_compile() { - tc-export CC CXX - scons configure \ - strip=false \ - prefix="${GAMES_PREFIX}" \ - datadir="${GAMES_DATADIR}"/${PN} \ - $(use debug && echo debug=1) \ - || die "scons configure failed" - scons || die "scons failed" -} - -src_install() { - dogamesbin bin/${MY_PN} || die "dogamesbin failed" - - insinto "${GAMES_DATADIR}"/${PN} - doins -r data/* || die "doins failed" - - dodoc ChangeLog README - - doicon data/icons/${MY_PN}.png - make_desktop_entry ${MY_PN} ${MY_PN} ${MY_PN}.png "KDE;Qt;Game;BoardGame" - - prepgamesdirs -} |