diff options
author | Michael Sterrett <msterret@gentoo.org> | 2003-09-12 22:44:59 +0000 |
---|---|---|
committer | Michael Sterrett <msterret@gentoo.org> | 2003-09-12 22:44:59 +0000 |
commit | 525ed11ccf9b3543c9a277a7e9aff88958c60ee4 (patch) | |
tree | f2a0fc57d55d0c6302df1a89df346c608b6af7d8 /net-dialup/wvdial | |
parent | repoman: trim trailing whitespace (diff) | |
download | gentoo-2-525ed11ccf9b3543c9a277a7e9aff88958c60ee4.tar.gz gentoo-2-525ed11ccf9b3543c9a277a7e9aff88958c60ee4.tar.bz2 gentoo-2-525ed11ccf9b3543c9a277a7e9aff88958c60ee4.zip |
whitespace cleanup; error messages; check results of sed; tidy
Diffstat (limited to 'net-dialup/wvdial')
-rw-r--r-- | net-dialup/wvdial/ChangeLog | 5 | ||||
-rw-r--r-- | net-dialup/wvdial/Manifest | 4 | ||||
-rw-r--r-- | net-dialup/wvdial/wvdial-1.53-r1.ebuild | 15 |
3 files changed, 12 insertions, 12 deletions
diff --git a/net-dialup/wvdial/ChangeLog b/net-dialup/wvdial/ChangeLog index 22e3ce8813f3..7e1f8d251a63 100644 --- a/net-dialup/wvdial/ChangeLog +++ b/net-dialup/wvdial/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-dialup/wvdial # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/wvdial/ChangeLog,v 1.12 2003/09/12 13:59:18 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/wvdial/ChangeLog,v 1.13 2003/09/12 22:44:57 msterret Exp $ + + 12 Sep 2003; Michael Sterrett <msterret@gentoo.org> wvdial-1.53-r1.ebuild: + whitespace cleanup; error messages; check results of sed; tidy 12 Sep 2003; Seemant Kulleen <seemant@gentoo.org> wvdial-1.53-r1.ebuild: added postinst blurb that users MUST be in BOTH the dialout and uucp groups to diff --git a/net-dialup/wvdial/Manifest b/net-dialup/wvdial/Manifest index 4c36d086c954..fc53fe2bbf11 100644 --- a/net-dialup/wvdial/Manifest +++ b/net-dialup/wvdial/Manifest @@ -1,4 +1,4 @@ -MD5 fe91c6b9a6ea72daa11d4f02aff28519 ChangeLog 1864 -MD5 2a70b95b1ab5f9ae0ffee41c9a8c51e0 wvdial-1.53-r1.ebuild 1153 +MD5 c533382c836c9a12e1f7cf5683c1e93f ChangeLog 2008 +MD5 0f5a7bcff495063e3391d40bbb13c034 wvdial-1.53-r1.ebuild 1219 MD5 dd6d40650ac9dab6a45f71a9cadbc7a9 files/digest-wvdial-1.53-r1 62 MD5 10b5850b5a52a665bc8cb8ffc7b06bd9 files/wvdial-1.53-crypt.patch 381 diff --git a/net-dialup/wvdial/wvdial-1.53-r1.ebuild b/net-dialup/wvdial/wvdial-1.53-r1.ebuild index ac299654e408..e8e91676f551 100644 --- a/net-dialup/wvdial/wvdial-1.53-r1.ebuild +++ b/net-dialup/wvdial/wvdial-1.53-r1.ebuild @@ -1,10 +1,9 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/wvdial/wvdial-1.53-r1.ebuild,v 1.8 2003/09/12 22:43:01 msterret Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/wvdial/wvdial-1.53-r1.ebuild,v 1.9 2003/09/12 22:44:57 msterret Exp $ inherit eutils -S=${WORKDIR}/${P} DESCRIPTION="Excellent program which automatically configures your PPP session" SRC_URI="http://open.nit.ca/download/${P}.tar.gz" HOMEPAGE="http://open.nit.ca/" @@ -20,31 +19,29 @@ LICENSE="LGPL-2" KEYWORDS="x86 sparc amd64 hppa alpha" src_unpack() { - unpack ${A} cd ${S} epatch ${FILESDIR}/${P}-crypt.patch - } src_compile() { - - sed -i "s:PREFIX=/usr/local:PREFIX=/usr:" Makefile + sed -i "s:PREFIX=/usr/local:PREFIX=/usr:" Makefile || \ + die "sed Makefile failed" } src_install() { - sed -i "s:PPPDIR=/etc/ppp/peers:PPPDIR=${D}/etc/ppp/peers:" Makefile + sed -i "s:PPPDIR=/etc/ppp/peers:PPPDIR=${D}/etc/ppp/peers:" Makefile || \ + die "sed Makefile failed" make \ PREFIX=${D}/usr \ - install || die + install || die "make install failed" dodoc ANNOUNCE CHANGES COPYING.LIB README dodoc debian/copyright debian/changelog } pkg_postinst() { - einfo einfo "Use wvdialconf to automagically generate a configuration-file." einfo |