blob: 81c7c4bcd2713a08794d1d079263a085f7abbee8 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/ketchup/ketchup-9999.ebuild,v 1.2 2011/08/30 10:42:57 psomas Exp $
EAPI="4"
inherit git-2 eutils
DESCRIPTION="tool for updating or switching between versions of the Linux kernel source"
HOMEPAGE="http://github.com/psomas/ketchup"
SRC_URI=""
EGIT_REPO_URI="git://github.com/psomas/ketchup.git"
EGIT_MASTER="experimental"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE=""
DEPEND=""
RDEPEND="${DEPEND}"
src_install() {
dobin "${PN}"
insinto "/etc"
doins "${PN}rc"
doman "${PN}.1"
}
|