20 lines
503 B
Bash
20 lines
503 B
Bash
# Copyright 1999-2015 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=5
|
|
|
|
inherit eutils
|
|
|
|
DESCRIPTION="Detects if the current machine is running in a virtual machine"
|
|
HOMEPAGE="https://people.redhat.com/~rjones/virt-what/"
|
|
SRC_URI="https://people.redhat.com/~rjones/virt-what/files/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 hppa ppc ppc64 sparc x86"
|
|
IUSE="dmi"
|
|
|
|
DEPEND="dev-lang/perl"
|
|
RDEPEND="app-shells/bash
|
|
dmi? ( sys-apps/dmidecode )"
|