blob: cf39e5eb87bd9ba1df8ea50e8c6d57b8d3125619 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-arcade/pengupop/pengupop-2.2.5.ebuild,v 1.4 2010/06/14 17:18:49 mr_bones_ Exp $
EAPI=2
inherit eutils games
DESCRIPTION="Networked multiplayer-only Puzzle Bubble clone"
HOMEPAGE="http://freshmeat.net/projects/pengupop"
SRC_URI="mirror://gentoo/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ppc x86"
IUSE=""
DEPEND="media-libs/libsdl[audio,video]
sys-libs/zlib"
src_prepare() {
sed -i \
-e 's/-g -Wall -O2/-Wall/' \
Makefile.in \
|| die "sed failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS ChangeLog README
domenu pengupop.desktop
doicon pengupop.png
prepgamesdirs
}
|