blob: 666b557270e55286e83199a5560ce3e388ac6bbe (
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
85
86
87
88
89
90
91
92
93
94
95
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit toolchain-funcs
DESCRIPTION="An X11 clone of the well-known Scrabble"
HOMEPAGE="http://freshmeat.net/projects/xscrabble/?topic_id=80"
SRC_URI="ftp://ftp.ac-grenoble.fr/ge/educational_games/${P}.tgz
l10n_fr? ( ftp://ftp.ac-grenoble.fr/ge/educational_games/xscrabble_fr.tgz )
ftp://ftp.ac-grenoble.fr/ge/educational_games/xscrabble_en.tgz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="l10n_fr"
DEPEND="x11-libs/libXaw"
RDEPEND="
${DEPEND}
acct-group/gamestat
"
BDEPEND="
x11-misc/gccmakedep
x11-misc/imake
"
PATCHES=(
"${FILESDIR}"/${P}-path-fixes.patch
"${FILESDIR}"/${P}-build.patch
"${FILESDIR}"/${P}-implicit-declaration.patch
)
src_unpack() {
unpack ${P}.tgz
cp "${DISTDIR}"/xscrabble_en.tgz . || die
if use l10n_fr ; then
cp "${DISTDIR}"/xscrabble_fr.tgz . || die
fi
}
src_prepare() {
default
# Don't strip binaries
sed -i '/install/s/-s //' build || die
# Respect AR, RANLIB
sed -i 's/CC="${CC}"/& AR="${AR} cq" RANLIB="${RANLIB}"/' build || die
}
src_configure() {
tc-export AR CC RANLIB
}
src_compile() {
./build bin || die "build failed"
}
src_install() {
export DESTDIR="${ED}" LIBDIR="$(get_libdir)"
./build install || die "install failed"
if use l10n_fr ; then
./build lang fr || die "fr failed"
fi
./build lang en || die "en failed"
local f
for f in "${ED}/usr/$(get_libdir)"/X11/app-defaults/* ; do
[[ -L ${f} ]] && continue
sed -i \
-e "s:/usr/games/lib/scrabble/:/usr/share/${PN}/:" \
-e "s:fr/eng:fr/en:" \
${f} || die "sed ${f} failed"
done
dodoc CHANGES README
local paths=( /usr/share/${PN}/en/scrabble_scores )
if use l10n_fr ; then
paths+=( /usr/share/${PN}/fr/scrabble_scores )
fi
local path
for path in ${paths[@]} ; do
fowners root:gamestat ${path}
fperms 660 ${path}
done
fperms g+s /usr/bin/${PN}
}
|