blob: a6836c96c7620f3f6850a83928ff5e904ee229f6 (
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
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Holger Brueckner <darks@fet.org>
S=${WORKDIR}/${P}
DESCRIPTION="The AFS 3 distributed file system targets the issues critical to
distributed computing environments. AFS performs exceptionally well,
both within small, local work groups of machines and across wide-area
configurations in support of large, collaborative efforts. AFS provides
an architecture geared towards system management, along with the tools
to perform important management tasks. For a user, AFS is a familiar yet
extensive UNIX environment for accessing files easily and quickly."
SRC_URI="http://www.openafs.org/dl/openafs/1.0.3/afs-3.6-doc.tar.gz"
HOMEPAGE="http://www.openafs.org/"
src_unpack() {
echo
}
src_install () {
dodir /usr/share/doc/${PF}
tar -zxf ${DISTDIR}/${A} -C ${D}/usr/share/doc/${PF}
prepalldocs
}
|