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/pipepanic/pipepanic-0.1.3.ebuild

43 lines
924 B

# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit eutils games
DESCRIPTION="A simple pipe connecting game"
HOMEPAGE="http://www.users.waitrose.com/~thunor/pipepanic/"
SRC_URI="http://www.users.waitrose.com/~thunor/pipepanic/dload/${P}-source.tar.gz"
LICENSE="GPL-2 FreeArt"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
DEPEND="media-libs/libsdl[video]"
RDEPEND="${RDEPEND}"
S=${WORKDIR}/${P}-source
src_prepare() {
epatch "${FILESDIR}"/${P}-gentoo.patch
# change harcoded data paths to match the install directory
sed -i \
-e "s:/opt/QtPalmtop/share/pipepanic/:${GAMES_DATADIR}/${PN}/:" \
main.h \
|| die "sed failed"
}
src_install() {
dogamesbin "${PN}"
insinto "${GAMES_DATADIR}/${PN}"
doins *.bmp
newicon PipepanicIcon64.png ${PN}.png
make_desktop_entry ${PN} "Pipepanic"
dodoc AUTHORS ChangeLog README
prepgamesdirs
}