blob: 6d4d167216c9813445c3bac1b2bd2c737e0cb143 (
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
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit autotools eutils games
DESCRIPTION="Test your typing speed, and get your fingers CPS"
HOMEPAGE="http://typespeed.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 ~ppc64 x86"
IUSE="nls"
RDEPEND="sys-libs/ncurses:0
nls? ( virtual/libintl )"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )"
src_prepare() {
sed -i \
-e 's/testsuite//' \
-e 's/doc//' \
Makefile.am || die
sed -i -e '/^CC =/d' src/Makefile.am || die
epatch "${FILESDIR}"/${P}-musl.patch
rm -rf m4 #417265
eautoreconf
}
src_configure() {
egamesconf \
--localedir=/usr/share/locale \
--docdir=/usr/share/doc/${PF} \
--with-highscoredir="${GAMES_STATEDIR}" \
$(use_enable nls)
}
src_install() {
default
dodoc doc/README
prepgamesdirs
}
|