blob: b940c747c2c6f5503c00c3ac238b70b57848d7d8 (
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
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
MY_PV="${PV}-1"
DESCRIPTION="A somewhat comprehensive collection of French Linux man pages"
HOMEPAGE="https://traduc.org/perkamon"
SRC_URI="
https://gitlab.com/perkamon/${PN}/-/archive/${MY_PV}/${PN}-${MY_PV}.tar.gz -> ${PN}-${MY_PV}-${PR}.tar.gz
https://gitlab.com/perkamon/man-pages/-/archive/${PV}/man-pages-${PV}.tar.gz -> perkamon-man-pages-${PV}.tar.gz
https://mirrors.edge.kernel.org/pub/linux/docs/man-pages/Archive/man-pages-${PV}.tar.xz
"
LICENSE="BSD GPL-2+ man-pages"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
BDEPEND="app-text/po4a"
RDEPEND="virtual/man"
S="${WORKDIR}/${PN}-${MY_PV}"
PATCHES=(
"${FILESDIR}/${PF}-fix-unpack.patch"
)
src_unpack() {
unpack "${PN}-${MY_PV}-${PR}.tar.gz"
cd "${S}" || die
unpack "perkamon-man-pages-${PV}.tar.gz"
mv "man-pages-${PV}" "perkamon" || die
cd "perkamon" || die
unpack "man-pages-${PV}.tar.xz"
mv "man-pages-${PV}" "man-pages" || die
}
src_compile() {
emake translate
}
src_install() {
einstalldocs
doman -i18n=fr build/fr/man*/*
}
|