Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/libssh2: ChangeLog libssh2-1.2.5.ebuild
Date: Wed, 26 May 2010 17:12:14
Message-Id: 20100526171209.B5D942CEE7@corvid.gentoo.org
1 jer 10/05/26 17:12:09
2
3 Modified: ChangeLog
4 Added: libssh2-1.2.5.ebuild
5 Log:
6 Version bump thanks to Emmanuel Andry (bug #321567).
7 (Portage version: 2.2_rc67/cvs/Linux i686)
8
9 Revision Changes Path
10 1.32 net-libs/libssh2/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libssh2/ChangeLog?rev=1.32&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libssh2/ChangeLog?rev=1.32&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libssh2/ChangeLog?r1=1.31&r2=1.32
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-libs/libssh2/ChangeLog,v
19 retrieving revision 1.31
20 retrieving revision 1.32
21 diff -u -r1.31 -r1.32
22 --- ChangeLog 28 Mar 2010 17:57:18 -0000 1.31
23 +++ ChangeLog 26 May 2010 17:12:09 -0000 1.32
24 @@ -1,6 +1,11 @@
25 # ChangeLog for net-libs/libssh2
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libssh2/ChangeLog,v 1.31 2010/03/28 17:57:18 armin76 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libssh2/ChangeLog,v 1.32 2010/05/26 17:12:09 jer Exp $
29 +
30 +*libssh2-1.2.5 (26 May 2010)
31 +
32 + 26 May 2010; Jeroen Roovers <jer@g.o> +libssh2-1.2.5.ebuild:
33 + Version bump thanks to Emmanuel Andry (bug #321567).
34
35 28 Mar 2010; Raúl Porcel <armin76@g.o> libssh2-1.2.2.ebuild:
36 alpha/ia64/s390/sh stable wrt #298456
37
38
39
40 1.1 net-libs/libssh2/libssh2-1.2.5.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libssh2/libssh2-1.2.5.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libssh2/libssh2-1.2.5.ebuild?rev=1.1&content-type=text/plain
44
45 Index: libssh2-1.2.5.ebuild
46 ===================================================================
47 # Copyright 1999-2010 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/net-libs/libssh2/libssh2-1.2.5.ebuild,v 1.1 2010/05/26 17:12:09 jer Exp $
50
51 EAPI="2"
52
53 DESCRIPTION="Library implementing the SSH2 protocol"
54 HOMEPAGE="http://www.libssh2.org/"
55 SRC_URI="http://www.${PN}.org/download/${P}.tar.gz"
56
57 LICENSE="BSD"
58 SLOT="0"
59 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
60 IUSE="gcrypt zlib"
61
62 DEPEND="!gcrypt? ( dev-libs/openssl )
63 gcrypt? ( dev-libs/libgcrypt )
64 zlib? ( sys-libs/zlib )"
65 RDEPEND="${DEPEND}"
66
67 src_configure() {
68 local myconf
69
70 if use gcrypt; then
71 myconf="--with-libgcrypt"
72 else
73 myconf="--with-openssl"
74 fi
75
76 econf \
77 $(use_with zlib libz) \
78 ${myconf}
79 }
80
81 src_test() {
82 if [[ ${EUID} -ne 0 ]]; then #286741
83 ewarn "Some tests require real user that is allowed to login."
84 ewarn "ssh2.sh test disabled."
85 sed -e 's:ssh2.sh::' -i tests/Makefile
86 fi
87 emake check || die
88 }
89
90 src_install() {
91 emake DESTDIR="${D}" install || die "emake install failed"
92 dodoc README
93 }