summaryrefslogtreecommitdiff
blob: e8e1fd59668758a1c1ab9048eddb6dbded53efeb (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

EAPI=6
inherit eutils flag-o-matic user

DESCRIPTION="Online multiplayer real-time roguelike game, derived from Angband."
HOMEPAGE="http://www.mangband.org"
SRC_URI="http://www.mangband.org/download/${P}.tar.gz"

#RESTRICT=nomirror # for ebuild debugging

LICENSE="Moria"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="ncurses sdl X"

# Remove this once we hit MAngband 1.2:
S="${WORKDIR}/${P}"/src

RDEPEND="
	ncurses? ( sys-libs/ncurses:= )
	sdl? ( media-libs/libsdl )
	X? ( x11-libs/libX11 )"
DEPEND="${RDEPEND}"

PATCHES=( "${FILESDIR}/${P}-strchr.patch"
	  "${FILESDIR}/${P}-paths.patch" )

MY_DATADIR=/usr/share/"${PN}"
MY_STATEDIR=/var/lib/"${PN}"
MY_SYSCONFDIR=/etc

src_configure() {
	append-cflags "-DDEFAULT_PATH='\"${MY_DATADIR}\"' -DDEFAULT_PATH_W='\"${MY_STATEDIR}\"'"
	econf \
		$(use_with ncurses gcu) \
		$(use_with X x11) \
		$(use_with sdl)
}

pkg_setup() {
	# mangband server uses own user/group:
	enewgroup mangband
	enewuser mangband -1 -1 -1 "mangband"
}

src_install() {
# Newer versions of MAngband have "make install", so we could use..
#    emake DESTDIR="${D}" install
#    dodoc NEWS README INSTALL AUTHORS
#..but not yet

	dobin mangband mangclient

	# Read-only data
	insinto "${MY_DATADIR}"
	doins -r "${WORKDIR}/${P}"/lib/{edit,file,help,text,xtra,user}

	# Server config
	insinto "${MY_SYSCONFDIR}"
	doins "${WORKDIR}/${P}"/mangband.cfg

	# Read-write data
	insinto "${MY_STATEDIR}"
	doins -r "${WORKDIR}/${P}"/lib/{data,save,user}

	fowners -R mangband:mangband "${MY_STATEDIR}"/{data,save,user}
	fperms -R 2664 "${MY_STATEDIR}"/{data,save,user}
	fperms 2775 "${MY_STATEDIR}"/{data,save,user}

	# Docs
	#dodoc ${WORKDIR}/${P}/LICENSE
}

pkg_postinst() {
	echo
	elog "Make sure LibDir is either unset in ~/.mangrc or points to"
	elog " ${MY_DATADIR} for 'mangclient' to pick it up."
	elog "Server binary is called 'mangband', and must be run under user"
	elog " mangband, i.e. 'sudo -u mangband mangband' "
	echo
}