Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/libssh2: ChangeLog libssh2-1.2.1.ebuild
Date: Tue, 06 Oct 2009 20:32:16
Message-Id: E1MvGhi-0001uy-AN@stork.gentoo.org
1 patrick 09/10/06 20:32:14
2
3 Modified: ChangeLog
4 Added: libssh2-1.2.1.ebuild
5 Log:
6 Bump. fixes #287386
7 (Portage version: 2.2_rc44/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.22 net-libs/libssh2/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libssh2/ChangeLog?rev=1.22&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libssh2/ChangeLog?rev=1.22&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libssh2/ChangeLog?r1=1.21&r2=1.22
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-libs/libssh2/ChangeLog,v
19 retrieving revision 1.21
20 retrieving revision 1.22
21 diff -u -r1.21 -r1.22
22 --- ChangeLog 26 Jun 2009 11:25:30 -0000 1.21
23 +++ ChangeLog 6 Oct 2009 20:32:13 -0000 1.22
24 @@ -1,6 +1,11 @@
25 # ChangeLog for net-libs/libssh2
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libssh2/ChangeLog,v 1.21 2009/06/26 11:25:30 pva Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libssh2/ChangeLog,v 1.22 2009/10/06 20:32:13 patrick Exp $
29 +
30 +*libssh2-1.2.1 (06 Oct 2009)
31 +
32 + 06 Oct 2009; Patrick Lauer <patrick@g.o> +libssh2-1.2.1.ebuild:
33 + Bump. fixes #287386
34
35 26 Jun 2009; Peter Volkov <pva@g.o> -libssh2-0.14.ebuild,
36 -libssh2-0.15.ebuild, -libssh2-0.17.ebuild, libssh2-0.18.ebuild,
37
38
39
40 1.1 net-libs/libssh2/libssh2-1.2.1.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libssh2/libssh2-1.2.1.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libssh2/libssh2-1.2.1.ebuild?rev=1.1&content-type=text/plain
44
45 Index: libssh2-1.2.1.ebuild
46 ===================================================================
47 # Copyright 1999-2009 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.1.ebuild,v 1.1 2009/10/06 20:32:13 patrick Exp $
50
51 EAPI="2"
52
53 DESCRIPTION="Library implementing the SSH2 protocol"
54 HOMEPAGE="http://www.libssh2.org/"
55 SRC_URI="mirror://sourceforge/libssh2/${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_install() {
82 emake DESTDIR="${D}" install || die "emake install failed"
83 dodoc README
84 }