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/libssh: ChangeLog libssh-0.3.4.ebuild
Date: Tue, 29 Sep 2009 00:57:49
Message-Id: E1MsR2J-0000pC-6B@stork.gentoo.org
1 jer 09/09/29 00:57:47
2
3 Modified: ChangeLog
4 Added: libssh-0.3.4.ebuild
5 Log:
6 Version bump thanks to Thomas Beinicke (bug #286860).
7 (Portage version: 2.2_rc42/cvs/Linux i686)
8
9 Revision Changes Path
10 1.14 net-libs/libssh/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libssh/ChangeLog?rev=1.14&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libssh/ChangeLog?rev=1.14&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libssh/ChangeLog?r1=1.13&r2=1.14
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-libs/libssh/ChangeLog,v
19 retrieving revision 1.13
20 retrieving revision 1.14
21 diff -u -r1.13 -r1.14
22 --- ChangeLog 26 Aug 2009 02:34:16 -0000 1.13
23 +++ ChangeLog 29 Sep 2009 00:57:46 -0000 1.14
24 @@ -1,6 +1,11 @@
25 # ChangeLog for net-libs/libssh
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libssh/ChangeLog,v 1.13 2009/08/26 02:34:16 jer Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libssh/ChangeLog,v 1.14 2009/09/29 00:57:46 jer Exp $
29 +
30 +*libssh-0.3.4 (29 Sep 2009)
31 +
32 + 29 Sep 2009; Jeroen Roovers <jer@g.o> +libssh-0.3.4.ebuild:
33 + Version bump thanks to Thomas Beinicke (bug #286860).
34
35 *libssh-0.3.3 (26 Aug 2009)
36
37
38
39
40 1.1 net-libs/libssh/libssh-0.3.4.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libssh/libssh-0.3.4.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libssh/libssh-0.3.4.ebuild?rev=1.1&content-type=text/plain
44
45 Index: libssh-0.3.4.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/libssh/libssh-0.3.4.ebuild,v 1.1 2009/09/29 00:57:46 jer Exp $
50
51 # Maintainer: check IUSE-defaults at DefineOptions.cmake
52
53 EAPI="2"
54
55 inherit eutils cmake-utils
56
57 DESCRIPTION="Access a working SSH implementation by means of a library"
58 HOMEPAGE="http://www.libssh.org/"
59 SRC_URI="http://www.libssh.org/files/${P}.tar.gz"
60
61 LICENSE="LGPL-2.1"
62 KEYWORDS="~amd64 ~ppc ~s390 ~x86"
63 SLOT="0"
64 IUSE="debug gcrypt examples +sftp ssh1 server static-libs zlib"
65
66 DEPEND="
67 zlib? ( >=sys-libs/zlib-1.2 )
68 !gcrypt? ( >=dev-libs/openssl-0.9.8 )
69 gcrypt? ( >=dev-libs/libgcrypt-1.4 )
70 "
71 RDEPEND="${DEPEND}"
72
73 DOCS="AUTHORS README ChangeLog"
74
75 PATCHES=(
76 "${FILESDIR}/${PN}-0.3.0-automagic-crypt.patch"
77 )
78
79 src_configure() {
80 mycmakeargs="${mycmakeargs}
81 $(cmake-utils_use_with debug DEBUG_CRYPTO)
82 $(cmake-utils_use_with gcrypt)
83 $(cmake-utils_use_with zlib LIBZ)
84 $(cmake-utils_use_with sftp)
85 $(cmake-utils_use_with ssh1)
86 $(cmake-utils_use_with server)
87 $(cmake-utils_use_with static-libs STATIC_LIB)
88 "
89
90 cmake-utils_src_configure
91 }
92
93 src_install() {
94 cmake-utils_src_install
95
96 if use examples; then
97 insinto "${ROOT}"usr/share/doc/"${PF}"/examples
98 doins sample.c samplesshd.c
99 fi
100 }