blob: 0f24a72f6666df98065d15efad35810441748afb (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dialup/dwun/dwun-0.96e-r2.ebuild,v 1.1 2009/06/20 10:03:48 mrness Exp $
EAPI="2"
DESCRIPTION="Dialer Without a Useful Name (DWUN)"
HOMEPAGE="http://dwun.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~amd64 x86"
IUSE=""
src_prepare() {
sed -i -e "s:TODO QUICKSTART README UPGRADING ChangeLog COPYING AUTHORS::" "${S}/Makefile.in"
}
src_configure() {
econf --with-docdir=share/doc/${PF} || die "econf failed."
}
src_install() {
einstall || die "install failed."
insinto /etc
newins doc/examples/complete-rcfile dwunrc
newins debian/dwunauth dwunauth
newinitd "${FILESDIR}/dwun" dwun
dodoc AUTHORS ChangeLog QUICKSTART README TODO UPGRADING
}
pkg_postinst() {
elog
elog 'Make sure you have "net-dialup/ppp" merged if you intend to use dwun'
elog "to control a standard PPP network link."
elog "See /usr/share/doc/${P}/QUICKSTART for instructions on"
elog "configuring dwun."
elog
}
|