blob: 322a5a50572d335f96b025ff362848bc4ce81bc7 (
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
45
46
47
48
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dialup/capi4k-utils/capi4k-utils-20021026.ebuild,v 1.5 2003/09/29 21:26:45 mholzer Exp $
YEAR_PV=${PV:0:4}
MON_PV=${PV:4:2}
DAY_PV=${PV:6:2}
MY_P=${PN}-${YEAR_PV}-${MON_PV}-${DAY_PV}
S=${WORKDIR}/${PN}
DESCRIPTION="Capi4Linux Utils"
SRC_URI="ftp://ftp.in-berlin.de/pub/capi4linux/OLD/${MY_P}.tar.gz"
HOMEPAGE="ftp://ftp.in-berlin.de/pub/capi4linux/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"
DEPEND="virtual/linux-sources
sys-devel/automake"
src_compile() {
cd ${S}
echo "CONFIG_DATADIR='/usr/share'" >> .config
sed -i -e "s:acinclude.m4::" rcapid/Makefile.in
touch capiinfo/configure capiinfo/aclocal.m4 capiinfo/Makefile.in
touch rcapid/configure rcapid/aclocal.m4
emake subconfig || die
emake || die
}
src_install() {
dodir /dev
make install DESTDIR=${D} || die
rm -rf ${D}/dev
newdoc rcapid/README README.rcapid
newdoc pppdcapiplugin/README README.pppdcapiplugin
docinto examples.pppdcapiplugin; dodoc pppdcapiplugin/examples/*
exeinto /etc/init.d
doexe ${FILESDIR}/capi
}
pkg_postinst() {
einfo "To use isdn4linux with CAPI replace"
einfo "I4L_MODULE=\"hisax\" with I4L_MODULE=\"capidrv\","
einfo "start /etc/init.d/capi and load the module"
einfo "capidrv."
}
|