summaryrefslogtreecommitdiff
blob: db79000356939788f707a614d47c0d7c9dac8cdc (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
57
58
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI=3

inherit games

if [ ${PV} = "9999" ]; then
	EBZR_REPO_URI="lp:s25rttr"
	inherit bzr
	SRC_URI=""
fi

DESCRIPTION="Opensource remake of The Settlers II game"
HOMEPAGE="http://www.siedler25.org/"

if [ ! ${PV} = "9999" ]; then
	S_U="http://launchpad.net/s25rttr/s25client/0.6/+download/${P/-/_}"
	SRC_URI="x86? ( ${S_U}_x86.tar.bz2 )
		amd64? ( ${S_U}_amd64.tar.bz2 )"
fi

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""

RDEPEND="media-libs/libsndfile
	media-libs/libsamplerate
	=media-libs/sdl-mixer-1.2*
	sys-devel/gettext"
#	media-libs/libtimidity"
DEPEND="${RDEPEND}"

S="${WORKDIR}/${P/-/_}"

src_install() {
	into /opt/${PN}
	insinto /opt/${PN}
	dobin bin/s25client
	doins -r lib share
	dodoc *.txt

	cat <<- EOF > s25client
		#!/usr/bin/env bash
		cd /opt/s25rttr
		bin/s25client

	EOF

	dogamesbin s25client
}

pkg_postinst() {
	games_pkg_postinst
	elog "Copy or symlink your original game files to /opt/s25rttr/share/s25rttr/S2/"
}