blob: 685ec691b1521bb05e60e159c2409ad2a1d329de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EGIT_REPO_URI="git://pkgcore.org/kvm-tools"
inherit git-2
DESCRIPTION="Kvm and qemu init scripts"
SRC_URI=''
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
PDEPEND="|| ( app-emulation/qemu-kvm app-emulation/qemu )"
src_install() {
newinitd "${FILESDIR}"/kvm-init-script kvm
newconfd "${FILESDIR}"/kvm-conf.example kvm.conf.example
newsbin "${FILESDIR}"/qtap-manipulate qtap-manipulate
}
|