diff options
author | Michael Januszewski <spock@gentoo.org> | 2007-07-26 10:28:24 +0000 |
---|---|---|
committer | Michael Januszewski <spock@gentoo.org> | 2007-07-26 10:28:24 +0000 |
commit | b50d0912162819e1d777077fe5ed93757bee0abe (patch) | |
tree | 4aca7d4ce5076881ed393947d343bec8a59f54b8 /sys-apps/v86d/v86d-0.1_rc4.ebuild | |
parent | * double bump (diff) | |
download | gentoo-2-b50d0912162819e1d777077fe5ed93757bee0abe.tar.gz gentoo-2-b50d0912162819e1d777077fe5ed93757bee0abe.tar.bz2 gentoo-2-b50d0912162819e1d777077fe5ed93757bee0abe.zip |
Initial commit.
(Portage version: 2.1.3_rc9)
Diffstat (limited to 'sys-apps/v86d/v86d-0.1_rc4.ebuild')
-rw-r--r-- | sys-apps/v86d/v86d-0.1_rc4.ebuild | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/sys-apps/v86d/v86d-0.1_rc4.ebuild b/sys-apps/v86d/v86d-0.1_rc4.ebuild new file mode 100644 index 000000000000..59c927613d56 --- /dev/null +++ b/sys-apps/v86d/v86d-0.1_rc4.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/v86d/v86d-0.1_rc4.ebuild,v 1.1 2007/07/26 10:28:24 spock Exp $ + +inherit linux-info + +DESCRIPTION="A daemon to run x86 code in an emulated environment." +HOMEPAGE="http://dev.gentoo.org/~spock/projects/uvesafb/" +SRC_URI="http://dev.gentoo.org/~spock/projects/uvesafb/archive/${P/_/-}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~amd64" +IUSE="" + +DEPEND="dev-libs/klibc + x86? ( sys-libs/lrmi )" +RDEPEND="" + +S="${WORKDIR}/${P//_*/}" + +pkg_setup() { + if [ -z "$(grep V86D /usr/lib/klibc/include/linux/connector.h)" ]; then + eerror "You need to compile klibc against a kernel tree patched with uvesafb" + eerror "prior to merging this package." + die "Kernel not patched with uvesafb." + fi + linux-info_pkg_setup +} + +src_compile() { + cd ${S} + ./configure --with-klibc + make KDIR=${KV_DIR} || die +} + +src_install() { + make DESTDIR=${D} install || die + + dodoc README + + insinto /usr/share/${PN} + doins misc/initramfs +} + +pkg_postinst() { + elog "If you wish to place v86d into an initramfs image, you might want to use" + elog "'/usr/share/${PN}/initramfs' in your kernel's CONFIG_INITRAMFS_SOURCE." +} |