blob: 73ef88b8ea8fca4143e3f573ab12324ef0644208 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dialup/diald/diald-1.0-r1.ebuild,v 1.8 2005/08/29 05:35:48 mrness Exp $
# You need SLIP in your kernel to run diald.
DESCRIPTION="Daemon that provides on demand IP links via SLIP or PPP"
HOMEPAGE="http://diald.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
DEPEND="sys-libs/pam
sys-apps/tcp-wrappers"
RDEPEND="net-dialup/ppp"
SLOT="0"
LICENSE="as-is"
KEYWORDS="x86"
IUSE=""
src_unpack() {
unpack ${A} ; cd ${S}
patch -p0 < ${FILESDIR}/${P}-c-files.patch || die
patch -p0 < ${FILESDIR}/${P}-gentoo.patch || die
}
src_compile() {
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--mandir=/usr/share/man \
--host=${CHOST} || die "bad ./configure"
emake || die "compile problem"
}
src_install() {
dodir /etc/pam.d
make \
DESTDIR=${D} \
sysconfdir=/etc \
bindir=/usr/bin \
sbindir=/usr/sbin \
mandir=/usr/share/man \
libdir=/usr/lib/diald \
BINGRP=root \
ROOTUID=root \
ROOTGRP=root \
install || die
dodir /var/cache/diald
mknod -m 0660 ${D}/var/cache/diald/diald.ctl p
dodoc BUGS CHANGES LICENSE NOTES README* \
THANKS TODO TODO.budget doc/diald-faq.txt
docinto setup ; cp -pPR setup/* ${D}/usr/share/doc/${PF}/setup
docinto contrib ; cp -pPR contrib/* ${D}/usr/share/doc/${PF}/contrib
prepalldocs
insinto /etc/diald ; doins ${FILESDIR}/{diald.conf,diald.filter}
exeinto /etc/init.d ; newexe ${FILESDIR}/diald-init diald
}
|