# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/games-strategy/glest/glest-2.0.0-r1.ebuild,v 1.5 2006/11/17 08:51:08 nyhm Exp $ WANT_AUTOCONF=latest WANT_AUTOMAKE=latest inherit autotools eutils games L_URI="http://www.glest.org/files/contrib/translations" DESCRIPTION="Cross-platform 3D realtime strategy game" HOMEPAGE="http://www.glest.org/" SRC_URI="mirror://sourceforge/${PN}/${PN}_source_${PV}.zip mirror://sourceforge/${PN}/${PN}_data_${PV}.zip linguas_de? ( ${L_URI}/deutsch_${PV}.zip ) linguas_fr? ( ${L_URI}/francais_${PV}.zip ) linguas_it? ( ${L_URI}/italiano_${PV}.zip ) linguas_pt_BR? ( ${L_URI}/portugues_${PV}.zip ) linguas_sk? ( ${L_URI}/slovak_${PV}.zip )" LICENSE="GPL-2 glest-data" SLOT="0" KEYWORDS="~amd64 -ppc ~x86" # ppc: bug #145478 IUSE="linguas_de linguas_fr linguas_it linguas_pt_BR linguas_sk" RDEPEND=">=media-libs/libsdl-1.2.5 media-libs/libogg media-libs/libvorbis media-libs/openal dev-libs/xerces-c virtual/opengl virtual/glu x11-libs/libX11 x11-libs/libXt media-fonts/font-adobe-utopia-75dpi" DEPEND="${RDEPEND} app-arch/unzip dev-util/jam" S=${WORKDIR}/${PN}_source_${PV}/mk/linux GAMES_USE_SDL="nojoystick" src_unpack() { unpack ${A} cd ${PN}_source_${PV} local file for file in $(find . -type f) ; do edos2unix "${file}" done epatch \ "${FILESDIR}"/${P}-gcc41.patch \ "${FILESDIR}"/${P}-home.patch sed -i \ -e "s:GENTOO_DATADIR:${GAMES_DATADIR}/${PN}:" \ source/glest_game/main/main.cpp \ || die "sed main.cpp failed" cd "${S}" # sometimes they package configure, sometimes they don't if [[ ! -f configure ]] ; then chmod a+x autogen.sh ./autogen.sh || die "autogen failed" fi sed -i 's:-O3 -g3::' Jamrules || die "sed Jamrules failed" } src_compile() { # Fails with wx enabled, bug #130011 egamesconf \ --with-vorbis=/usr \ --with-ogg=/usr \ --with-wx-config=disabled_wx \ || die jam -q || die "jam failed" } src_install() { dogamesbin glest || die "dogamesbin failed" insinto "${GAMES_DATADIR}"/${PN} doins glest.ini || die "doins glest.ini failed" dodoc ../../docs/README.linux cd "${WORKDIR}"/glest_game doins -r data maps techs tilesets || die "doins data failed" dodoc docs/readme.txt make_desktop_entry glest Glest /usr/share/pixmaps/${PN}.bmp newicon techs/magitech/factions/magic/units/archmage/images/archmage.bmp \ ${PN}.bmp insinto "${GAMES_DATADIR}"/${PN}/data/lang local lang for lang in ${LINGUAS} ; do case ${lang} in de) lang=deutsch_2.0.0.lng ;; fr) lang=francais.lng ;; it) lang=italiano2_0_0.lng ;; pt_BR) lang=tradu_pt-br.lng ;; sk) lang=slovak.lng ;; *) continue ;; esac doins "${WORKDIR}"/${lang} || die "doins ${lang} failed" done prepgamesdirs }