Gentoo Archives: gentoo-commits

From: "Peter Volkov (pva)" <pva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-dialup/wvdial: ChangeLog wvdial-1.61.ebuild
Date: Thu, 27 May 2010 13:47:27
Message-Id: 20100527134718.C04D82CE3C@corvid.gentoo.org
1 pva 10/05/27 13:47:18
2
3 Modified: ChangeLog
4 Added: wvdial-1.61.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.1.8.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.56 net-dialup/wvdial/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/wvdial/ChangeLog?rev=1.56&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/wvdial/ChangeLog?rev=1.56&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/wvdial/ChangeLog?r1=1.55&r2=1.56
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-dialup/wvdial/ChangeLog,v
19 retrieving revision 1.55
20 retrieving revision 1.56
21 diff -u -r1.55 -r1.56
22 --- ChangeLog 20 Jun 2009 20:57:33 -0000 1.55
23 +++ ChangeLog 27 May 2010 13:47:18 -0000 1.56
24 @@ -1,6 +1,12 @@
25 # ChangeLog for net-dialup/wvdial
26 -# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/wvdial/ChangeLog,v 1.55 2009/06/20 20:57:33 mrness Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/wvdial/ChangeLog,v 1.56 2010/05/27 13:47:18 pva Exp $
30 +
31 +*wvdial-1.61 (27 May 2010)
32 +
33 + 27 May 2010; Peter Volkov <pva@g.o> +wvdial-1.61.ebuild,
34 + +files/wvdial-1.61-as-needed.patch, +files/wvdial-1.61-destdir.patch:
35 + Version bump.
36
37 20 Jun 2009; Alin Năstac <mrness@g.o>
38 files/wvdial-1.60-dirent.patch:
39
40
41
42 1.1 net-dialup/wvdial/wvdial-1.61.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/wvdial/wvdial-1.61.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/wvdial/wvdial-1.61.ebuild?rev=1.1&content-type=text/plain
46
47 Index: wvdial-1.61.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-dialup/wvdial/wvdial-1.61.ebuild,v 1.1 2010/05/27 13:47:18 pva Exp $
52
53 EAPI="3"
54
55 inherit eutils
56
57 DESCRIPTION="Excellent program to automatically configure PPP sessions"
58 HOMEPAGE="http://alumnit.ca/wiki/?WvDial"
59 SRC_URI="http://wvstreams.googlecode.com/files/${P}.tar.gz"
60
61 LICENSE="LGPL-2"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~sparc ~x86"
64 IUSE=""
65
66 COMMON_DEPEND=">=net-libs/wvstreams-4.4"
67 DEPEND="${COMMON_DEPEND}
68 dev-util/pkgconfig"
69 RDEPEND="${COMMON_DEPEND}
70 net-dialup/ppp"
71
72 src_prepare() {
73 epatch "${FILESDIR}/${P}-destdir.patch"
74 epatch "${FILESDIR}/${P}-as-needed.patch"
75 }
76
77 src_configure() {
78 # Hand made configure...
79 ./configure || die
80 }
81
82 src_install() {
83 emake "DESTDIR=${ED}" install || die "make install failed"
84 dodoc CHANGES FAQ MENUS README TODO || die
85 }
86
87 pkg_postinst() {
88 elog
89 elog "Use wvdialconf to automagically generate a configuration file."
90 elog
91 elog "Users have to be member of the dialout AND the uucp group"
92 elog "to use wvdial!"
93 elog
94 }