# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-laptop/omnibook/omnibook-20060126.ebuild,v 1.2 2006/04/08 15:56:39 genstef Exp $ inherit linux-mod eutils DESCRIPTION="Linux kernel module for (but not limited to) HP Omnibook support" HOMEPAGE="http://www.sourceforge.net/projects/omke" SRC_URI="mirror://sourceforge/omke/${P}.tar.gz" LICENSE="GPL-2" KEYWORDS="~x86 -ppc" IUSE="" MODULE_NAMES="omnibook(char:)" BUILD_TARGETS=" " pkg_setup() { linux-mod_pkg_setup BUILD_PARAMS="KERNEL=${KV_MAJOR}.${KV_MINOR} KSRC=${KV_DIR}" } src_unpack() { unpack ${A} cd ${S} epatch ${FILESDIR}/omnibook-fix-obtest-segfault.patch epatch ${FILESDIR}/remove-legacy-isa-fromio.patch convert_to_m Makefile sed -i 's:MODULE_PARM(\([^,]*\), "i");:module_param(\1, int, 0);:' init.c } src_compile() { cd misc/obtest emake || die "make obtest failed" linux-mod_src_compile } src_install() { dosbin misc/obtest/obtest dodoc doc/* docinto misc dodoc misc/*.patch misc/*.txt docinto hotkeys dodoc misc/hotkeys/* linux-mod_src_install }