summaryrefslogtreecommitdiff
blob: 4af6e3185718e3cfc822e71b6ab539a83787e5e1 (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
# 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.3.ebuild,v 1.6 2004/06/24 22:31:35 agriffis Exp $

S=${WORKDIR}/pptpd-1.1.3
DESCRIPTION="Linux Point-to-Point Tunnelling Protocol Server"
SRC_URI="http://unc.dl.sourceforge.net/sourceforge/poptop/pptpd-1.1.3.tar.gz"
HOMEPAGE="http://sourceforge.net/projects/poptop/"

DEPEND="virtual/glibc net-dialup/ppp"

SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"

src_compile() {
	econf || die
	emake || die
}

src_install () {
	make \
	DESTDIR=${D} \
	man_prefix=/usr/share/man \
	install || die

	insinto /etc
	doins ${FILESDIR}/1.1.3/pptpd.conf
	insinto /etc/ppp
	dodir /etc/ppp
	insinto /etc/ppp
	doins ${FILESDIR}/1.1.3/options.pptpd

	dodoc README* AUTHORS COPYING INSTALL TODO ChangeLog
	docinto samples; dodoc samples/*
}