blob: d00ef1b480158fe7fd43d61bb2e35ff99e5c7291 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-i18n/man-pages-fr/man-pages-fr-1.64.0.ebuild,v 1.2 2005/09/24 18:08:18 truedfx Exp $
MY_P=${P/-pages/}
DESCRIPTION="A somewhat comprehensive collection of french Linux man pages"
HOMEPAGE="http://fr.tldp.org/manfr.php"
SRC_URI="ftp://ftp.win.tue.nl/pub/linux-local/manpages/translations/${P}.tar.bz2"
LICENSE="freedist"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc x86"
IUSE=""
RDEPEND="sys-apps/man"
S=${WORKDIR}/${MY_P}
src_unpack() {
unpack ${A}
cd "${S}"
# Don't trample on lilo's files, closes bug #91314
rm man8/lilo.8 man5/lilo.conf.5
# Also don't touch shadow's files
rm man1/{chsh,groups,passwd}.1
}
src_compile() { :; }
src_install() {
dodoc LISEZ_MOI changements
for x in man? ; do
insinto /usr/share/man/fr/${x}
doins ${x}/* || die "doins ${x}"
done
}
|