blob: 5c4e6f8a244dcbd0067ab17090a73e788f4edd16 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/abs-guide/abs-guide-5.4.ebuild,v 1.4 2008/11/29 17:52:30 armin76 Exp $
KEYWORDS="alpha ~amd64 hppa ~mips ppc sparc x86"
DESCRIPTION="An advanced reference and a tutorial on bash shell scripting"
HOMEPAGE="http://www.tldp.org/LDP/abs/html"
# Upstream likes to repackage the tarball without changing the name.
SRC_URI="mirror://gentoo/${P}.tar.bz2"
LICENSE="OPL"
IUSE=""
SLOT="0"
DEPEND=""
RDEPEND=""
S="${WORKDIR}"
src_install() {
dodir /usr/share/doc/${P} || die "dodir failed"
cp -R * "${D}"/usr/share/doc/${P} || die "cp failed"
}
|