blob: 46a14d1dce8e8408cdfb1d987e7a23725fcdbb48 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dialup/pptpd/pptpd-1.1.4_beta4.ebuild,v 1.5 2004/12/23 21:29:11 mrness Exp $
S=${WORKDIR}/poptop-1.1.4
DESCRIPTION="Linux Point-to-Point Tunnelling Protocol Server"
SRC_URI="mirror://sourceforge/poptop/pptpd-1.1.4-b4.tar.gz"
HOMEPAGE="http://www.poptop.org/"
DEPEND="virtual/libc
sys-devel/autoconf
sys-devel/automake
net-dialup/ppp
tcpd? ( sys-apps/tcp-wrappers )"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"
IUSE="tcpd"
src_unpack() {
unpack ${A} ; cd ${S}
sed -i "s/^CFLAGS = -O2/CFLAGS = ${CFLAGS}/" Makefile.am || die "sed failed"
}
src_compile() {
ebegin "Updating autotools-generated files"
aclocal && \
automake -a && \
autoconf
eend $?
local myconf
use tcpd && myconf="--with-libwrap"
econf --with-bcrelay \
${myconf} || die
emake || die
}
src_install () {
einstall || die
insinto /etc
doins samples/pptpd.conf
insinto /etc/ppp
doins samples/options.pptpd
exeinto /etc/init.d
newexe ${FILESDIR}/pptpd-init pptpd
insinto /etc/conf.d
newins ${FILESDIR}/pptpd-confd pptpd
dodoc README* AUTHORS COPYING INSTALL TODO ChangeLog
docinto samples
dodoc samples/{options*,chap*,pptp*}
}
|