diff options
author | Achim Gottinger <achim@gentoo.org> | 2000-08-08 16:35:24 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2000-08-08 16:35:24 +0000 |
commit | cc1ec80aa917738ea01e06cb5d33e8fa0c7bd705 (patch) | |
tree | 09ebf528c07e076983b101a11c5b00db45c24fd0 /net-dialup/pppoed | |
parent | *** empty log message *** (diff) | |
download | historical-cc1ec80aa917738ea01e06cb5d33e8fa0c7bd705.tar.gz historical-cc1ec80aa917738ea01e06cb5d33e8fa0c7bd705.tar.bz2 historical-cc1ec80aa917738ea01e06cb5d33e8fa0c7bd705.zip |
*** empty log message ***
Diffstat (limited to 'net-dialup/pppoed')
-rw-r--r-- | net-dialup/pppoed/files/digest | 1 | ||||
-rw-r--r-- | net-dialup/pppoed/pppoed-0.47-r1.ebuild | 37 |
2 files changed, 38 insertions, 0 deletions
diff --git a/net-dialup/pppoed/files/digest b/net-dialup/pppoed/files/digest new file mode 100644 index 000000000000..fc7303a48702 --- /dev/null +++ b/net-dialup/pppoed/files/digest @@ -0,0 +1 @@ +MD5 9542214a4fa3bc2e446c1bb41f01e45c pppoed0.47.tgz diff --git a/net-dialup/pppoed/pppoed-0.47-r1.ebuild b/net-dialup/pppoed/pppoed-0.47-r1.ebuild new file mode 100644 index 000000000000..cb276cda1464 --- /dev/null +++ b/net-dialup/pppoed/pppoed-0.47-r1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/net-dialup/pppoed/pppoed-0.47-r1.ebuild,v 1.1 2000/08/08 16:35:24 achim Exp $ + +P=pppoed-0.47 +A=pppoed0.47.tgz +S=${WORKDIR}/${P}/pppoed +CATEGORY="net-dialup" +DESCRIPTION="PPP over Ethernet" +SRC_URI=" http://www.davin.ottawa.on.ca/pppoe/pppoed0.47.tgz" +HOMEPAGE="http://www.davin.ottawa.on.ca/pppoe/" + +src_unpack() { + unpack ${A} +} + +src_compile() { + cd ${S} + ./configure --host=${CHOST} --prefix=/usr --sysconfdir=/etc/ppp/pppoed + make +} + +src_install() { + cd ${S} + make DESTDIR=${D} install + prepman + dodoc AUTHORS ChangeLog COPYING NEWS README* + cd .. + docinto docs + dodoc docs/* + docinto contrib + dodoc contribs/* +} + + + |