blob: 6aae47b5d5e29f94ab714d32be9702b4feb98715 (
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-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
DESCRIPTION=""
HOMEPAGE="http://www.kernel.org/pub/linux/kernel/people/jsipek/guilt"
SRC_URI="http://www.kernel.org/pub/linux/kernel/people/jsipek/guilt/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND=""
RDEPEND="dev-util/git
app-shells/bash"
src_compile() {
einfo "Nothing to compile. :-)"
}
src_install() {
make PREFIX=${D}/usr install
dodoc COPYING Documentation/HOWTO
}
|