41 lines
1,015 B
Bash
41 lines
1,015 B
Bash
# Copyright 1999-2010 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/games-puzzle/xpired/xpired-1.22.ebuild,v 1.11 2010/10/13 23:37:47 mr_bones_ Exp $
|
|
|
|
EAPI=2
|
|
inherit eutils games
|
|
|
|
DESCRIPTION="A Sokoban-styled puzzle game with lots more action."
|
|
HOMEPAGE="http://xpired.sourceforge.net"
|
|
SRC_URI="mirror://sourceforge/xpired/${P}-linux_source.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~ppc x86"
|
|
IUSE=""
|
|
|
|
DEPEND="media-libs/sdl-gfx
|
|
media-libs/sdl-image[jpeg]
|
|
media-libs/sdl-mixer[mikmod]"
|
|
|
|
S=${WORKDIR}/src
|
|
|
|
PATCHES=( "${FILESDIR}"/${P}-ldflags.patch )
|
|
|
|
src_compile() {
|
|
emake \
|
|
PREFIX=/usr/games \
|
|
SHARE_PREFIX=/usr/share/games/xpired \
|
|
|| die
|
|
}
|
|
|
|
src_install() {
|
|
emake \
|
|
PREFIX="${D}/usr/games" \
|
|
SHARE_PREFIX="${D}/usr/share/games/${PN}" \
|
|
install || die
|
|
newicon img/icon.bmp ${PN}.bmp
|
|
make_desktop_entry xpired Xpired /usr/share/pixmaps/${PN}.bmp
|
|
make_desktop_entry xpiredit "Xpired Level Editor"
|
|
prepgamesdirs
|
|
}
|