blob: 470cc01104711e4ca057bbb9e5e8e68e75638270 (
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.5.ebuild,v 1.2 2008/12/07 03:41:04 dirtyepic 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"
}
|