blob: 1e9cb8b4dd2f9a5224c54e9c521747be7def1cf1 (
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
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="A somewhat comprehensive collection of man page translations"
HOMEPAGE="https://manpages-l10n-team.pages.debian.net/manpages-l10n/"
SRC_URI="https://salsa.debian.org/manpages-l10n-team/${PN/-}/-/archive/${PV}/${P/-}.tar.bz2"
S="${WORKDIR}/${P/-}"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux"
# fa and ko omitted because of build failures (patches are welcome!)
MY_L10N=(cs da de el es fi fr hu id it mk nb nl pl pt-BR ro ru sr sv uk vi)
IUSE="${MY_L10N[@]/#/l10n_}"
REQUIRED_USE="|| ( ${MY_L10N[@]/#/l10n_} )"
RDEPEND="virtual/man
l10n_it? ( !app-i18n/man-pages-it )
l10n_ru? ( !app-i18n/man-pages-ru )"
BDEPEND="app-text/po4a
dev-lang/perl"
DOCS=(AUTHORS.md CHANGES.md CONTRIBUTING.md COPYRIGHT.md README.md)
src_prepare() {
default
sed -i -e "/^SUBDIRS/s/=.*/= ${L10N//-/_}/" po/Makefile.{am,in} || die
# some packages have their own translations
local f noinst_manpages=(
# app-arch/xz-utils
xz.1
xzdec.1
xzdiff.1
xzgrep.1
xzless.1
xzmore.1
# sys-apps/shadow
groups.1
su.1
# sys-apps/sysvinit
last.1
mesg.1
mountpoint.1
utmpdump.1
wall.1
halt.8
killall5.8
runlevel.8
shutdown.8
sulogin.8
# sys-process/procps
free.1
pgrep.1
pmap.1
ps.1
pwdx.1
tload.1
uptime.1
sysctl.conf.5
sysctl.8
vmstat.8
# sys-process/psmisc
fuser.1
killall.1
peekfd.1
prtstat.1
pslog.1
pstree.1
)
for f in "${noinst_manpages[@]}"; do
rm po/*/"man${f##*.}/${f}.po" || die
done
}
src_configure() {
econf --enable-compression=none
}
|