blob: 8b526ce1d82ef9f16a21d29408d7a7cd94b39137 (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools
DESCRIPTION="An Angband variant, with a Japanese/fantasy theme"
HOMEPAGE="https://hengband.github.io/"
SRC_URI="mirror://sourceforge.jp/hengband/10331/${P}.tar.bz2
mirror://gentoo/${P}-mispellings.patch.gz"
LICENSE="Moria"
SLOT="0"
KEYWORDS="~x86"
IUSE="X l10n_ja"
RDEPEND="
>=sys-libs/ncurses-5:0=
X? ( x11-libs/libX11 )
"
DEPEND="
${RDEPEND}
X? ( x11-libs/libXt )
"
BDEPEND="virtual/pkgconfig"
PATCHES=(
"${FILESDIR}/${PN}-1.6.2-added_faq.patch"
"${FILESDIR}/${PN}-1.6.2-autoconf-ncurses.patch"
"${FILESDIR}/${PN}-1.6.2-ovflfix.patch"
)
src_prepare() {
# Removing Xaw dependency as is not used
sed -i -e '/Xaw/d' src/main-xaw.c || die
# Fix syntax for chown
sed -i -e 's|root\.|root:|' lib/*/Makefile.in || die
# Don't target the games sub-dir, since we're not using games.eclass any
# more
sed -i -e 's:/games/:/:g' configure.in || die
default
mv configure.in configure.ac || die
eautoreconf
}
src_configure() {
local myconf=(
--bindir="${EPREFIX}"/usr/bin
--with-setgid="nobody"
$(use_with X x)
)
use l10n_ja || myconf+=( --disable-japanese )
econf "${myconf[@]}"
}
src_install() {
default
if use l10n_ja ; then
dodoc readme.txt autopick.txt readme_eng.txt autopick_eng.txt
else
newdoc readme_eng.txt readme.txt
newdoc autopick_eng.txt autopick.txt
fi
}
|