diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-07-17 10:43:25 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-07-17 10:43:25 +0000 |
commit | 3bd0d6ee237edbd424f57526f35b2c72d5141d38 (patch) | |
tree | a371197cccdb4064cecef54b30f9c82587f55a18 /net-dialup/pppoed | |
parent | SLOT, KEYWORDS, LICENSE, 1.0.x unfriendly notice (diff) | |
download | gentoo-2-3bd0d6ee237edbd424f57526f35b2c72d5141d38.tar.gz gentoo-2-3bd0d6ee237edbd424f57526f35b2c72d5141d38.tar.bz2 gentoo-2-3bd0d6ee237edbd424f57526f35b2c72d5141d38.zip |
repoman'd
Diffstat (limited to 'net-dialup/pppoed')
-rw-r--r-- | net-dialup/pppoed/pppoed-0.48_beta1-r1.ebuild | 34 |
1 files changed, 18 insertions, 16 deletions
diff --git a/net-dialup/pppoed/pppoed-0.48_beta1-r1.ebuild b/net-dialup/pppoed/pppoed-0.48_beta1-r1.ebuild index c5a54c06454f..61a96f43cc25 100644 --- a/net-dialup/pppoed/pppoed-0.48_beta1-r1.ebuild +++ b/net-dialup/pppoed/pppoed-0.48_beta1-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/net-dialup/pppoed/pppoed-0.48_beta1-r1.ebuild,v 1.3 2002/07/11 06:30:45 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/pppoed/pppoed-0.48_beta1-r1.ebuild,v 1.4 2002/07/17 10:43:25 seemant Exp $ S=${WORKDIR}/pppoed-0.48b1/pppoed DESCRIPTION="PPP over Ethernet" @@ -9,23 +9,25 @@ HOMEPAGE="http://www.davin.ottawa.on.ca/pppoe/" DEPEND="virtual/glibc" -src_compile() { - cd ${S} - try ./configure --host=${CHOST} --prefix=/usr --sysconfdir=/etc/ppp/pppoed \ - --mandir=/usr/share/man - try make -} +SLOT="0" +LICENSE="GPL" +KEYWORDS="x86" -src_install() { - cd ${S} - try make DESTDIR=${D} install - dodoc AUTHORS ChangeLog COPYING NEWS README* - cd .. - docinto docs - dodoc docs/* - docinto contrib - dodoc contribs/* +src_compile() { + econf \ + --sysconfdir=/etc/ppp/pppoed || die + make || die } +src_install() { + + make DESTDIR=${D} install || die + dodoc AUTHORS ChangeLog COPYING NEWS README* + cd .. + docinto docs + dodoc docs/* + docinto contrib + dodoc contribs/* +} |