diff options
author | Alin Năstac <mrness@gentoo.org> | 2006-05-30 20:54:12 +0000 |
---|---|---|
committer | Alin Năstac <mrness@gentoo.org> | 2006-05-30 20:54:12 +0000 |
commit | 41c68a37282fc6fb1a24c9b33f9c17981d103f77 (patch) | |
tree | de30d3f63bee10639bb54c3eb8715ebeaa815b68 /net-dialup/xl2tpd/xl2tpd-1.04.ebuild | |
parent | Added patch that allows to compile on systems with broken fnmatch function (l... (diff) | |
download | gentoo-2-41c68a37282fc6fb1a24c9b33f9c17981d103f77.tar.gz gentoo-2-41c68a37282fc6fb1a24c9b33f9c17981d103f77.tar.bz2 gentoo-2-41c68a37282fc6fb1a24c9b33f9c17981d103f77.zip |
Initial import from bug #134029.
(Portage version: 2.0.54-r2)
Diffstat (limited to 'net-dialup/xl2tpd/xl2tpd-1.04.ebuild')
-rw-r--r-- | net-dialup/xl2tpd/xl2tpd-1.04.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/net-dialup/xl2tpd/xl2tpd-1.04.ebuild b/net-dialup/xl2tpd/xl2tpd-1.04.ebuild new file mode 100644 index 000000000000..0c14ede66136 --- /dev/null +++ b/net-dialup/xl2tpd/xl2tpd-1.04.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/xl2tpd/xl2tpd-1.04.ebuild,v 1.1 2006/05/30 20:54:12 mrness Exp $ + +DESCRIPTION="A modern version of the Layer 2 Tunneling Protocol (L2TP) daemon" +HOMEPAGE="http://www.xelerance.com/software/xl2tpd/" +SRC_URI="http://www.xelerance.com/software/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="!net-dialup/l2tpd + net-dialup/ppp" + +S="${WORKDIR}/xl2tp-${PV}" + +src_install() { + dosbin l2tpd + doman doc/*.[85] + + dodoc BUGS CHANGELOG CREDITS README TODO \ + doc/rfc2661.txt doc/*.sample + + dodir /etc/l2tpd + head -n 2 doc/l2tp-secrets.sample > "${D}/etc/l2tpd/l2tp-secrets" + fperms 0600 /etc/l2tpd/l2tp-secrets + + newinitd "${FILESDIR}/l2tpd-init" l2tpd +} |