blob: 88e11aec280043f217426b1cce8332c3d9868219 (
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-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dialup/penggy/penggy-0.2.1.ebuild,v 1.16 2007/10/12 03:29:26 dberkholz Exp $
inherit eutils autotools
DESCRIPTION="Provide access to Internet using the AOL/Compuserve network."
HOMEPAGE="http://savannah.nongnu.org/projects/pengfork/"
SRC_URI="mirror://gentoo/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND=">=dev-scheme/guile-1.4.0"
pkg_setup() {
if ! built_with_use --missing true dev-scheme/guile deprecated; then
local msg="${PN} requires guile to be rebuilt with the deprecated flag."
eerror "${msg}"
die "${msg}"
fi
}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-as-needed.patch"
epatch "${FILESDIR}/${P}-nostrip.patch"
eautoconf
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
newinitd "${FILESDIR}/rc_net.aol" net.aol
}
pkg_postinst() {
elog
elog "The penggy AOL/Compuserve IP tunneling package has been installed."
elog
elog "You now need to configure it by editing penggy.cfg, aol-secrets, and phonetab in /etc/penggy."
elog "Also you will need to have tuntap, built into your kernel or compiled as a module."
elog
ewarn "IMPORTANT: Penggy is neither endorsed by or affiliated with AOL."
}
|