blob: eac3b5091932683575d984f6970cc2ba12b3efcd (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dialup/capi4k-utils/capi4k-utils-20041006-r5.ebuild,v 1.4 2005/07/09 18:47:20 swegener Exp $
inherit eutils
YEAR_PV=${PV:0:4}
MON_PV=${PV:4:2}
DAY_PV=${PV:6:2}
MY_P=${PN}-${YEAR_PV}-${MON_PV}-${DAY_PV}
PPPVERSIONS="2.4.2 2.4.3" # versions in portage
DESCRIPTION="CAPI4Linux Utils"
HOMEPAGE="ftp://ftp.in-berlin.de/pub/capi4linux/"
SRC_URI="ftp://ftp.in-berlin.de/pub/capi4linux/${MY_P}.tar.gz
ftp://ftp.in-berlin.de/pub/capi4linux/OLD/${MY_P}.tar.gz
mirror://gentoo/${P}-patches.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~amd64 ~ppc"
IUSE=""
DEPEND="virtual/linux-sources
dev-lang/perl
>=sys-apps/sed-4
virtual/os-headers
sys-devel/automake
sys-devel/autoconf
sys-devel/libtool"
RDEPEND=""
S=${WORKDIR}/${PN}
src_unpack() {
unpack ${A} || die "failed to unpack sources"
cd ${S}
# set our config
cp -f ${FILESDIR}/${PV}/config .config
# fix the little odd bugs
EPATCH_OPTS="-p1"
epatch ${WORKDIR}/${PN}.diff ${WORKDIR}/ppp-2.4.3.diff || die "${PN} patch failed"
# patch includes of all *.c files
sed -i -e "s:linux/capi.h>$:linux/compiler.h>\n#include <linux/capi.h>:g" */*.c || die "sed failed"
# patch all Makefile.am and Rules.make to use our CFLAGS
sed -i -e "s:^CFLAGS\(.*\)-O2:CFLAGS\1${CFLAGS}:g" */Makefile.am */Rules.make || die "sed failed"
# patch capi20/Makefile.am to use -fPIC for shared library
sed -i -e "s:^\(libcapi20_la_CFLAGS = \):\1-fPIC :g" capi20/Makefile.am || die "sed failed"
# patch pppdcapiplugin/Makefile to use only the ppp versions we want
sed -i -e "s:^\(PPPVERSIONS = \).*$:\1${PPPVERSIONS}:g" pppdcapiplugin/Makefile || die "sed failed"
# patch capiinit/capiinit.c to look also in /lib/firmware
sed -i -e "/\"\/usr\/share\/isdn\"/i\"/lib/firmware\"," capiinit/capiinit.c || die "sed failed"
}
src_compile() {
# required by fPIC patch
cd ${S}/capi20 || die "capi20 directory not found"
ebegin "Updating autotools-generated files"
aclocal -I . || die "aclocal failed"
automake -a || die "automake failed"
autoconf || die "autoconf failed"
libtoolize -f -c || die "libtoolize failed"
eend $?
cd ${S}
emake subconfig || die "make subconfig failed"
emake || die "make failed"
}
src_install() {
dodir /dev
make DESTDIR=${D} install || die "make install failed"
# install docs
newdoc rcapid/README README.rcapid
newdoc pppdcapiplugin/README README.pppdcapiplugin
dodoc scripts/makedev.sh ${FILESDIR}/${PV}/README.gentoo
docinto pppdcapiplugin.examples; dodoc pppdcapiplugin/examples/*
# install init-script + init-config
dodir /etc/conf.d # BUG: w/o newconfd failes
newinitd ${FILESDIR}/${PV}/capi.initd capi
newconfd ${FILESDIR}/${PV}/capi.confd capi
# install USB hotplug stuff
insinto /etc/hotplug/blacklist.d
newins ${FILESDIR}/${PV}/capi.blacklist capi
insinto /etc/hotplug/usb
newins ${FILESDIR}/${PV}/capi.usermap capi.usermap
exeinto /etc/hotplug/usb
newexe ${FILESDIR}/${PV}/capi.hotplug capi
# example config
insinto /etc
insopts -m 0600
doins ${FILESDIR}/capi.conf
# rcapid config for xinetd
insinto /etc/xinetd.d
insopts -m 0644
newins ${FILESDIR}/${PV}/rcapid.xinetd rcapid
# very useful tool ;-)
dobin scripts/isdncause
}
pkg_postinst() {
einfo "Please read the instructions in:"
einfo "/usr/share/doc/${PF}/README.gentoo.gz"
einfo
einfo "Annotation for active AVM ISDN boards (B1 ISA/PCI, ...):"
einfo "If you run"
einfo " emerge isdn-firmware"
einfo "you will probably find your board's firmware in /lib/firmware."
einfo
einfo "If you have another active ISDN board, you should create"
einfo "/lib/firmware and copy there your board's firmware."
}
|