forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
daimonin-client-0.10.5.ebuild
65 lines (56 loc) · 1.42 KB
/
daimonin-client-0.10.5.ebuild
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
57
58
59
60
61
62
63
64
65
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit eutils autotools games
MY_P=${PN}-${PV}
DESCRIPTION="a graphical 2D tile-based MMORPG"
HOMEPAGE="http://daimonin.sourceforge.net/"
SRC_URI="http://daimonin.svn.sourceforge.net/viewvc/daimonin/main/client/?view=tar&pathrev=6021
-> daimonin-client-0.10.5.tar.gz
music? ( mirror://sourceforge/daimonin/Addon%20packs/Music/AllMusic.zip
-> daimonin-client-AllMusic-20100827.zip )"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="music debug"
RDEPEND="media-libs/libsdl[sound,video]
media-libs/sdl-mixer[vorbis]
media-libs/sdl-image[png]
dev-games/physfs
net-misc/curl"
DEPEND="${RDEPEND}
music? ( app-arch/unzip )"
S=${WORKDIR}/client/make/linux
src_unpack() {
unpack ${MY_P}.tar.gz
if use music ; then
cd client/media
rm -f *
unpack ${PN}-AllMusic-20100827.zip
fi
}
src_prepare() {
epatch "${FILESDIR}"/${P}-nozlib.patch
rm ../../src/include/z{lib,conf}.h
sed -i \
-e 's:$(d_datadir):$(DESTDIR)$(d_datadir):' \
-e '/PROGRAMS/s:daimonin-updater::' \
Makefile.am \
|| die "sed failed"
eautoreconf
cd ../../src
epatch "${FILESDIR}"/${P}-datadir.patch
}
src_configure() {
egamesconf \
--disable-simplelayout \
$(use_enable debug)
}
src_install() {
default
cd ../..
dodoc README*
newicon bitmaps/pentagram.png ${PN}.png
make_desktop_entry daimonin Daimonin
prepgamesdirs
}