# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI=5 inherit eutils games flag-o-matic SLOT="0" LICENSE="GPL-2" KEYWORDS="~amd64 ~x86" DESCRIPTION="Clone of Boulderdash (a.k.a Emerald Mine on the Amiga) made with SDL library." SRC_URI="http://www.netikka.net/joyr/diamond_girl/${P}.tar.bz2" HOMEPAGE="http://www.netikka.net/joyr/diamond_girl/index.html" IUSE="+mhash compressed-data" RDEPEND="media-libs/sdl-mixer media-libs/sdl-gfx media-libs/sdl-image[png] media-libs/lib3ds >=media-libs/glew-1.6.0-r1 media-libs/openal mhash? ( app-crypt/mhash ) dev-lang/lua" DEPEND="${RDEPEND} media-libs/libmikmod media-gfx/xcftools media-gfx/imagemagick[png] compressed-data? ( media-sound/vorbis-tools media-gfx/optipng ) dev-util/pkgconfig" src_prepare() { sed -i -e 's:${2}:/usr/share/pixmaps:' build_desktop.sh } src_configure() { append-cflags "-DNDEBUG" append-cxxflags "-DNDEBUG" egamesconf $(use_enable compressed-data) } src_install() { emake DESTDIR="${D}" install || die "emake install failed" domenu diamond_girl.desktop doicon themes/default/gfx/diamond_girl.png dodoc CREDITS dodoc Changelog dodoc README.settings dodoc README.sfx dodoc README dosym "diamond_girl" "${GAMES_BINDIR}/diamond-girl" # CREDITS and Welcome.txt files are necessary in # /usr/share/games/diamond_girl rm ${D}${GAMES_DATADIR}/diamond-girl/Changelog rm ${D}${GAMES_DATADIR}/diamond-girl/LIC* rm ${D}${GAMES_DATADIR}/diamond-girl/READM* rm -r ${D}${GAMES_DATADIR}/pixmaps rm -r ${D}${GAMES_DATADIR}/applications prepgamesdirs }