Gentoo Archives: gentoo-commits

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