blob: e71f410f0f749434d4810b2c90b14317d0b151d0 (
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
|
# Copyright 1999-2010 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-2.39.0.ebuild,v 1.3 2010/02/21 00:33:16 ulm Exp $
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="as-is GPL-2 BSD MIT LDP-1"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
RDEPEND="virtual/man"
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
}
|