blob: 4ffe7c26e2c265f379904f8783069144325135ba (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-laptop/smcinit/smcinit-0.4.ebuild,v 1.3 2005/01/01 14:48:42 eradicator Exp $
IUSE=""
MY_PV="0.4-1"
MY_P="${PN}-${MY_PV}"
DESCRIPTION="A set of utilities to initialize a SMC-IRCC based IrDA subsystem on laptops where the BIOS does not handle it"
HOMEPAGE="http://irda.sourceforge.net/smcinit/"
SRC_URI="mirror://sourceforge/irda/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
DEPEND=">=sys-apps/pciutils-2.1.11-r1"
S=${WORKDIR}/${MY_P}
src_compile()
{
econf || die "Configuration failed"
emake CFLAGS="${CFLAGS}" || die "Compilation failed"
}
src_install()
{
# First goes the software...
einstall PREFIX="${D}/usr" || die "Installation failed"
# ...then documentation...
dodoc AUTHORS CHANGELOG.Peri ChangeLog INSTALL README README.Peri README.Rob README.Tom
dohtml RobMiller-irda.html
# ...after that an init script...
exeinto /etc/init.d
newexe ${FILESDIR}/${PN}.initscript ${PN}
# ...and finally its config file
insinto /etc/conf.d
newins ${FILESDIR}/${PN}.conf ${PN}
}
|