blob: 58a96c44bc995ec7721dbbd32a06545a588d62f3 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dialup/capifwd/capifwd-0.6.3.ebuild,v 1.1 2004/11/24 06:04:45 mrness Exp $
inherit eutils
DESCRIPTION="A daemon forwarding CAPI messages to capi20proxy clients"
HOMEPAGE="http://capi20proxy.sourceforge.net/"
SRC_URI="mirror://sourceforge/capi20proxy/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND="net-dialup/capi4k-utils"
S="${WORKDIR}/linux-server"
src_unpack() {
unpack ${A} || die
cd ${S}
epatch "${FILESDIR}/${P}.patch"
#Replace obsolete sys_errlist with strerror
sed -i -e 's:sys_errlist *\[ *errno *\]:strerror(errno):' \
src/capifwd.c src/capi/waitforsignal.c src/auth/auth.c || \
die "failed to replace sys_errlist"
}
src_install() {
einstall || die "einstall failed"
dodoc AUTHORS ChangeLog README
# install init-script
exeinto /etc/init.d
newexe ${FILESDIR}/capifwd.init capifwd
insinto /etc/conf.d
newins ${FILESDIR}/capifwd.conf capifwd
}
|