You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/games-puzzle/twindistress/twindistress-1.1.0.ebuild

60 lines
1.5 KiB

# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-puzzle/twindistress/twindistress-1.1.0.ebuild,v 1.6 2010/10/19 07:48:33 mr_bones_ Exp $
EAPI=2
inherit eutils games
MY_P="twind-${PV}"
DESCRIPTION="Match and remove all of the blocks before time runs out"
HOMEPAGE="http://twind.sourceforge.net/"
SRC_URI="mirror://sourceforge/twind/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
DEPEND="media-libs/libsdl[video]
media-libs/sdl-mixer
media-libs/sdl-image[png]"
S=${WORKDIR}/${MY_P}
src_prepare() {
sed -i \
-e '/^CC/d' \
-e "/^CFLAGS/s:-g:${CFLAGS}:" \
-e "/^DATA_PREFIX/s:/.*$:${GAMES_DATADIR}/${PN}/:" \
-e "/^HIGH_SCORE_PREFIX/s:/.*$:${GAMES_STATEDIR}/${PN}/:" \
Makefile || die "sed failed"
epatch \
"${FILESDIR}"/${P}-ldflags.patch \
"${FILESDIR}"/${P}-warnings.patch
}
src_install() {
dogamesbin twind || die "dogamesbin failed"
insinto "${GAMES_DATADIR}/${PN}"
doins -r graphics music sound || die "doins failed"
doicon graphics/twind.png
make_desktop_entry twind "Twin Distress"
dodoc AUTHORS ChangeLog CREDITS NEWS README TODO
dodir "${GAMES_STATEDIR}/${PN}"
touch "${D}/${GAMES_STATEDIR}/${PN}/twind.hscr"
fperms 660 "${GAMES_STATEDIR}/${PN}/twind.hscr"
prepgamesdirs
}
pkg_postinst() {
games_pkg_postinst
if ! has_version "media-libs/sdl-mixer[vorbis]" ; then
ewarn "Music support will be disabled since sdl-mixer"
ewarn "wasn't built with USE=vorbis"
fi
}