blob: c50591c66f7dec0d835b9e2171f2120cbf366255 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/abs-guide/abs-guide-2.2.ebuild,v 1.1 2003/11/03 21:07:51 mr_bones_ Exp $
DESCRIPTION="An advanced reference and a tutorial on bash shell scripting"
SRC_URI="http://personal.riverusers.com/~thegrendel/${P}.tar.bz2"
HOMEPAGE="http://www.tldp.org/LDP/abs/html"
S="${WORKDIR}"
KEYWORDS="x86 sparc ppc alpha arm hppa"
LICENSE="FDL-1.1"
SLOT="0"
src_install() {
dodir /usr/share/doc/${P} || die "dodir failed"
cp -R * ${D}/usr/share/doc/${P} || die "cp failed"
}
|