blob: 8446909983226fcf82419568637eb1eccdcb728f (
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
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Achim Gottinger <achim@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/app-doc/man-pages/man-pages-1.30-r1.ebuild,v 1.1 2000/08/07 11:01:57 achim Exp $
P=man-pages-1.30
A="${P}.tar.gz netman-cvs.tar.gz man2.tar.gz"
#A0=man-pages-1.23-spell.patch
S=${WORKDIR}/${P}
CATEGORY="app-doc"
DESCRIPTION="A somewhat comprehensive collection of Linux man pages"
SRC_URI="ftp://ftp.win.tue.nl/pub/linux-local/manpages/man-pages-1.30.tar.gz"
src_compile() {
echo
}
src_unpack() {
unpack ${P}.tar.gz
cd ${S}
tar xzf ${O}/files/netman-cvs.tar.gz
tar xzf ${O}/files/man2.tar.gz
for x in 2 3 4
do
mv *.$x man$x
done
}
src_install() {
for x in 1 2 3 4 5 6 7 8
do
doman man$x/*.[1-9]
done
}
|