blob: dc6fc9e0697a6481e16dd728100f6de67a0b8aae (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dialup/wvdial/wvdial-1.54.0.ebuild,v 1.14 2005/02/26 14:30:51 dholm Exp $
inherit flag-o-matic eutils
DESCRIPTION="Excellent program to automatically configure PPP sessions"
HOMEPAGE="http://open.nit.ca/wiki/?page=WvDial"
SRC_URI="http://open.nit.ca/download/${P}.tar.gz"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="x86 sparc alpha amd64 hppa ~ppc"
IUSE=""
DEPEND="virtual/libc
net-dialup/ppp
>=net-libs/wvstreams-4.00"
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/${P}-makefile.patch
}
src_compile() {
[ "${ARCH}" = "alpha" -o "${ARCH}" = "hppa" ] && append-libs -fPIC
emake || die "compile failed"
}
src_install() {
make DESTDIR=${D} install || die "make install failed"
dodoc COPYING.LIB CHANGES FAQ MENUS README TODO
}
pkg_postinst() {
einfo
einfo "Use wvdialconf to automagically generate a configuration file."
einfo
einfo "Users have to be member of the dialout AND the uucp group"
einfo "to use wvdial!"
einfo
}
|