blob: 313791ed888de097f738ca5f763de1b2cd78dc51 (
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools prefix
MY_PV=$(ver_cut 1-2)
# 11.2_p8_p1 -> 11.2-8.1
MY_DEB_PV="${MY_PV}-$(ver_cut 4).$(ver_cut 6)"
DESCRIPTION="Console based chess interface"
HOMEPAGE="http://sjeng.sourceforge.net/"
SRC_URI="
https://downloads.sourceforge.net/sjeng/Sjeng-Free-${MY_PV}.tar.gz
mirror://debian/pool/main/s/sjeng/sjeng_${MY_DEB_PV}.diff.gz
"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~arm64 ~loong ~riscv ~x86"
SLOT="0"
RDEPEND="sys-libs/gdbm:0="
DEPEND="${RDEPEND}"
S="${WORKDIR}/Sjeng-Free-${MY_PV}"
PATCHES=(
"${WORKDIR}/sjeng_${MY_DEB_PV}.diff"
"${S}/debian/patches"
)
src_prepare() {
default
hprefixify book.c rcfile.c
# Files generated with ancient autotools, regenerate to respect CC.
mv configure.{in,ac} || die
eautoreconf
}
src_install() {
default
insinto /etc
doins sjeng.rc
insinto /usr/share/games/sjeng
doins books/*.opn
}
|