summaryrefslogtreecommitdiff
blob: f2881dfef2626678f57b2ab13428c05c2e96dc44 (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-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dialup/rp-l2tp/rp-l2tp-0.3-r1.ebuild,v 1.1 2003/11/17 19:56:46 lanius Exp $

inherit eutils

DESCRIPTION="RP-L2TP is a user-space implementation of L2TP for Linux and other UNIX systems"
HOMEPAGE="http://sourceforge.net/projects/rp-l2tp/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz
	mirror://gentoo/${P}-gentoo.diff.bz2"
DEPEND="virtual/glibc"
LICENSE="GPL-2"
KEYWORDS="x86 amd64"
SLOT="0"
IUSE=""

src_unpack() {
	unpack ${A} || die
	cd ${S} || die
	epatch ../${P}-gentoo.diff
}

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

src_install() {
	make RPM_INSTALL_ROOT=${D} install || die

	dodoc README
	newdoc l2tp.conf rp-l2tpd.conf
	cp -a libevent/Doc ${D}/usr/share/doc/${PF}/libevent

	exeinto /etc/init.d
	newexe ${FILESDIR}/rp-l2tpd-init rp-l2tpd
}