diff options
author | 2002-04-27 13:32:34 +0000 | |
---|---|---|
committer | 2002-04-27 13:32:34 +0000 | |
commit | c79a8740de3d9ef1c341ea43b9095cf85cb23d3d (patch) | |
tree | dc6176b1ea5c9e03efd39f47fcb5d7761ee60725 /net-dialup | |
parent | New libs required by wvdial (diff) | |
download | gentoo-2-c79a8740de3d9ef1c341ea43b9095cf85cb23d3d.tar.gz gentoo-2-c79a8740de3d9ef1c341ea43b9095cf85cb23d3d.tar.bz2 gentoo-2-c79a8740de3d9ef1c341ea43b9095cf85cb23d3d.zip |
version bump
Diffstat (limited to 'net-dialup')
-rw-r--r-- | net-dialup/wvdial/ChangeLog | 9 | ||||
-rw-r--r-- | net-dialup/wvdial/files/digest-wvdial-1.53 | 1 | ||||
-rw-r--r-- | net-dialup/wvdial/wvdial-1.53.ebuild | 35 |
3 files changed, 44 insertions, 1 deletions
diff --git a/net-dialup/wvdial/ChangeLog b/net-dialup/wvdial/ChangeLog index 5d19aee1149c..ba5acd5e86dd 100644 --- a/net-dialup/wvdial/ChangeLog +++ b/net-dialup/wvdial/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for net-dialup/wvdial # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-dialup/wvdial/ChangeLog,v 1.1 2002/02/01 21:53:32 gbevin Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/wvdial/ChangeLog,v 1.2 2002/04/27 13:32:34 seemant Exp $ + +*wvdial-1.53 (27 Apr 2002) + + 27 Apr 2002; Seemant Kulleen <seemant@gentoo.org> wvdial-1.53.ebuild + files/digest-wvdial-1.53 : + + Version bump *wvdial-1.41-r3 (1 Feb 2002) diff --git a/net-dialup/wvdial/files/digest-wvdial-1.53 b/net-dialup/wvdial/files/digest-wvdial-1.53 new file mode 100644 index 000000000000..ac94385b97fb --- /dev/null +++ b/net-dialup/wvdial/files/digest-wvdial-1.53 @@ -0,0 +1 @@ +MD5 e5432b4812b76e31b37cc10b6df62f5f wvdial-1.53.tar.gz 67876 diff --git a/net-dialup/wvdial/wvdial-1.53.ebuild b/net-dialup/wvdial/wvdial-1.53.ebuild new file mode 100644 index 000000000000..4b5998bb6a70 --- /dev/null +++ b/net-dialup/wvdial/wvdial-1.53.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Daniel Robbins <drobbins@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/net-dialup/wvdial/wvdial-1.53.ebuild,v 1.1 2002/04/27 13:32:34 seemant Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="Excellent program which automatically configures your PPP session" +SRC_URI="http://open.nit.ca/download/${P}.tar.gz" +HOMEPAGE="http://http://open.nit.ca" + +DEPEND="virtual/glibc + net-libs/wvstreams" + +RDEPEND="$DEPEND net-dialup/ppp" + + +src_compile() { + + cp Makefile Makefile.orig + sed -e "s:PREFIX=/usr/local:PREFIX=/usr:" \ + Makefile.orig > Makefile +} + +src_install() { + cp Makefile Makefile.orig + sed -e "s:PPPDIR=/etc/ppp/peers:PPPDIR=${D}/etc/ppp/peers:" \ + Makefile.orig > Makefile + + make \ + PREFIX=${D}/usr \ + install || die + + dodoc ANNOUNCE CHANGES COPYING.LIB README + dodoc debian/copyright debian/changelog +} |