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.0.ebuild
Date: Sun, 29 Mar 2009 17:01:34
Message-Id: E1LnyO4-0007TB-D4@stork.gentoo.org
1 patrick 09/03/29 17:01:32
2
3 Modified: ChangeLog
4 Added: libssh2-1.0.ebuild
5 Log:
6 Bump to 1.0. Fixes #261612
7 (Portage version: 2.2_rc28/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.17 net-libs/libssh2/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libssh2/ChangeLog?rev=1.17&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libssh2/ChangeLog?rev=1.17&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libssh2/ChangeLog?r1=1.16&r2=1.17
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-libs/libssh2/ChangeLog,v
19 retrieving revision 1.16
20 retrieving revision 1.17
21 diff -u -r1.16 -r1.17
22 --- ChangeLog 24 Jan 2009 12:33:45 -0000 1.16
23 +++ ChangeLog 29 Mar 2009 17:01:32 -0000 1.17
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.16 2009/01/24 12:33:45 aballier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libssh2/ChangeLog,v 1.17 2009/03/29 17:01:32 patrick Exp $
29 +
30 +*libssh2-1.0 (29 Mar 2009)
31 +
32 + 29 Mar 2009; Patrick Lauer <patrick@g.o> +libssh2-1.0.ebuild:
33 + Bump to 1.0. Fixes #261612
34
35 24 Jan 2009; Alexis Ballier <aballier@g.o> libssh2-0.18.ebuild:
36 keyword ~x86-fbsd
37
38
39
40 1.1 net-libs/libssh2/libssh2-1.0.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libssh2/libssh2-1.0.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libssh2/libssh2-1.0.ebuild?rev=1.1&content-type=text/plain
44
45 Index: libssh2-1.0.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.0.ebuild,v 1.1 2009/03/29 17:01:32 patrick Exp $
50
51 inherit eutils
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 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
60 IUSE="libgcrypt"
61
62 DEPEND="!libgcrypt? ( dev-libs/openssl )
63 libgcrypt? ( dev-libs/libgcrypt )
64 sys-libs/zlib"
65 RDEPEND=${DEPEND}
66
67 src_compile() {
68 econf $(use_enable libgcrypt) || die "econf failed"
69 emake || die "emake failed"
70 }
71
72 src_install() {
73 emake DESTDIR="${D}" install || die "emake install failed"
74 dodoc README
75 }