blob: 30f67c4d8827d4d58a320492250b35b24f64e538 (
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
27
28
29
30
31
32
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Maintainer: Zach Forrest <zach@disinformation.ca>
# $Header: /var/cvsroot/gentoo-x86/dev-util/ebuilder/ebuilder-0.4-r1.ebuild,v 1.1 2002/05/16 21:42:16 karltk Exp $
S="${WORKDIR}/${P}"
DESCRIPTION="Package Builder for Gentoo Linux"
SRC_URI="http://www.disinformation.ca/gentoo/${P}.tar.gz"
HOMEPAGE="http://www.disinformation.ca/gentoo"
DEPEND="net-misc/wget"
RDEPEND="$DEPEND"
LICENSE="GPL-2"
SLOT="0"
src_compile() {
echo "Nothing to compile for ${P}."
}
src_install () {
dodir /usr/share/ebuilder
dodir /usr/share/ebuilder/templates
insinto /usr/share/ebuilder/templates
doins templates/beginner.ebuild
doins templates/expert.ebuild
dosbin ebuilder
doman man/ebuilder.1
# Install documentation.
dodoc AUTHORS ChangeLog COPYING NEWS README TODO
}
|