blob: 668c23014b6c0d83868a6d8b29e5f70f9382a4bb (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-sci/comedi/comedi-0.7.67.ebuild,v 1.3 2004/07/13 20:27:36 agriffis Exp $
inherit kernel-mod
DESCRIPTION="Comedi - COntrol and MEasurement Device Interface for Linux"
SRC_URI="ftp://ftp.comedi.org/pub/comedi/${P}.tar.gz"
HOMEPAGE="http://www.comedi.org"
KEYWORDS="x86"
IUSE=""
LICENSE="GPL-2"
SLOT="0"
src_compile()
{
kernel-mod_getversion
./configure --prefix=${D}/usr --with-linuxdir=${KERNEL_DIR}
emake
}
src_install()
{
make install
}
|