blob: a38a49ad9a88684886e255b2ccc0ec09a94e4f61 (
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-2009 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.5.ebuild,v 1.7 2009/04/07 16:46:00 jer 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}/abs"
src_install() {
dodir /usr/share/doc/${P} || die "dodir failed"
cp -R * "${D}"/usr/share/doc/${P} || die "cp failed"
}
|