Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/libssh2: ChangeLog libssh2-1.3.0.ebuild
Date: Mon, 28 Nov 2011 02:35:18
Message-Id: 20111128023508.261B42004C@flycatcher.gentoo.org
1 radhermit 11/11/28 02:35:08
2
3 Modified: ChangeLog libssh2-1.3.0.ebuild
4 Log:
5 Fix autotools-utils usage (bug #392167).
6
7 (Portage version: 2.2.0_alpha77/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.46 net-libs/libssh2/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libssh2/ChangeLog?rev=1.46&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libssh2/ChangeLog?rev=1.46&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libssh2/ChangeLog?r1=1.45&r2=1.46
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-libs/libssh2/ChangeLog,v
19 retrieving revision 1.45
20 retrieving revision 1.46
21 diff -u -r1.45 -r1.46
22 --- ChangeLog 27 Nov 2011 04:27:56 -0000 1.45
23 +++ ChangeLog 28 Nov 2011 02:35:04 -0000 1.46
24 @@ -1,6 +1,9 @@
25 # ChangeLog for net-libs/libssh2
26 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libssh2/ChangeLog,v 1.45 2011/11/27 04:27:56 radhermit Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libssh2/ChangeLog,v 1.46 2011/11/28 02:35:04 radhermit Exp $
29 +
30 + 28 Nov 2011; Tim Harder <radhermit@g.o> libssh2-1.3.0.ebuild:
31 + Fix autotools-utils usage (bug #392167).
32
33 27 Nov 2011; Tim Harder <radhermit@g.o> libssh2-1.3.0.ebuild:
34 Build in the source tree.
35
36
37
38 1.7 net-libs/libssh2/libssh2-1.3.0.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libssh2/libssh2-1.3.0.ebuild?rev=1.7&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libssh2/libssh2-1.3.0.ebuild?rev=1.7&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libssh2/libssh2-1.3.0.ebuild?r1=1.6&r2=1.7
43
44 Index: libssh2-1.3.0.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/net-libs/libssh2/libssh2-1.3.0.ebuild,v
47 retrieving revision 1.6
48 retrieving revision 1.7
49 diff -u -r1.6 -r1.7
50 --- libssh2-1.3.0.ebuild 27 Nov 2011 04:27:56 -0000 1.6
51 +++ libssh2-1.3.0.ebuild 28 Nov 2011 02:35:04 -0000 1.7
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2011 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libssh2/libssh2-1.3.0.ebuild,v 1.6 2011/11/27 04:27:56 radhermit Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libssh2/libssh2-1.3.0.ebuild,v 1.7 2011/11/28 02:35:04 radhermit Exp $
57
58 EAPI="4"
59
60 @@ -20,28 +20,22 @@
61 zlib? ( sys-libs/zlib )"
62 RDEPEND="${DEPEND}"
63
64 -AUTOTOOLS_IN_SOURCE_BUILD=1
65 +DOCS=( README )
66
67 src_configure() {
68 - local myconf
69 + local myeconfargs
70
71 if use gcrypt; then
72 - myconf="--with-libgcrypt"
73 + myeconfargs+=" --with-libgcrypt"
74 else
75 - myconf="--with-openssl"
76 + myeconfargs+=" --with-openssl"
77 fi
78
79 # Disable tests that require extra permissions (bug #333319)
80 use test && export ac_cv_path_SSHD=
81
82 - econf \
83 - $(use_with zlib libz) \
84 - $(use_enable static-libs static) \
85 - ${myconf}
86 -}
87 -
88 -src_install() {
89 - default
90 - dodoc README
91 - use static-libs || remove_libtool_files
92 + myeconfargs+=(
93 + $(use_with zlib libz)
94 + )
95 + autotools-utils_src_configure
96 }