blob: 30254c65a101e366535091b60ee8a390c0dc5cc2 (
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
|
# 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-it/man-pages-it-2.65.ebuild,v 1.3 2010/02/21 15:43:25 ulm Exp $
EXTRA_P="man-pages-it-extra-0.5.0"
DESCRIPTION="A somewhat comprehensive collection of Italian Linux man pages"
HOMEPAGE="http://it.tldp.org/man/"
SRC_URI="ftp://ftp.pluto.it/pub/pluto/ildp/man/${P}.tar.gz
ftp://ftp.pluto.it/pub/pluto/ildp/man/${EXTRA_P}.tar.gz"
LICENSE="as-is GPL-2 BSD MIT man-pages-posix"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
RDEPEND="virtual/man"
src_compile() {
:
}
src_install() {
doman -i18n=it man*/*
dodoc \
readme CHANGELOG HOWTOHELP POSIX-COPYRIGHT \
|| die "dodoc failed"
cd "${WORKDIR}/${EXTRA_P}"
doman -i18n=it man*/*
newdoc readme readme.extra
newdoc changelog CHANGELOG.extra
}
|