blob: c270cc8d094d64a4883d234a67408df7484c7aee (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-arcade/lbreakout2/lbreakout2-2.5_beta6.ebuild,v 1.2 2004/06/24 22:07:26 agriffis Exp $
inherit flag-o-matic games
MY_P="${P/_beta/beta-}"
DESCRIPTION="Breakout clone written with the SDL library"
HOMEPAGE="http://lgames.sourceforge.net/index.php?project=LBreakout2"
SRC_URI="mirror://sourceforge/lgames/${MY_P}.tar.gz
mirror://gentoo/lbreakout2-levelsets-20040319.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc ~amd64"
IUSE=""
DEPEND="virtual/glibc
media-libs/libpng
sys-libs/zlib
>=media-libs/libsdl-1.1.5
media-libs/sdl-mixer"
S="${WORKDIR}/${MY_P}"
src_unpack() {
unpack ${MY_P}.tar.gz
mkdir "${S}/levels"
cd "${S}/levels"
unpack lbreakout2-levelsets-20040319.tar.gz
}
src_compile() {
filter-flags -O?
egamesconf \
--with-highscore-path="${GAMES_STATEDIR}" \
--with-doc-path="/usr/share/doc/${PF}" \
--datadir="${GAMES_DATADIR_BASE}" \
|| die
emake || die "emake failed"
}
src_install() {
egamesinstall \
inst_dir="${D}/${GAMES_DATADIR}/${PN}" \
hi_dir="${D}/${GAMES_STATEDIR}/" \
doc_dir="${D}/usr/share/doc/${PF}" \
|| die
insinto "${GAMES_DATADIR}/lbreakout2/levels"
doins levels/* || die "doins failed"
dodoc AUTHORS README TODO ChangeLog
mv "${D}/usr/share/doc/${PF}/lbreakout2" "${D}/usr/share/doc/${PF}/html"
prepgamesdirs
}
|