Gentoo Archives: gentoo-commits

From: "Tomas Chvatal (scarabeus)" <scarabeus@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/libssh: ChangeLog libssh-0.4.4.ebuild libssh-0.4.3.ebuild libssh-0.4.0.ebuild
Date: Tue, 01 Jun 2010 09:29:58
Message-Id: 20100601092950.7A4812CE14@corvid.gentoo.org
1 scarabeus 10/06/01 09:29:50
2
3 Modified: ChangeLog
4 Added: libssh-0.4.4.ebuild
5 Removed: libssh-0.4.3.ebuild libssh-0.4.0.ebuild
6 Log:
7 Version bump. Drop older.
8 (Portage version: 2.2_rc67/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.34 net-libs/libssh/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libssh/ChangeLog?rev=1.34&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libssh/ChangeLog?rev=1.34&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libssh/ChangeLog?r1=1.33&r2=1.34
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-libs/libssh/ChangeLog,v
20 retrieving revision 1.33
21 retrieving revision 1.34
22 diff -u -r1.33 -r1.34
23 --- ChangeLog 21 May 2010 16:03:39 -0000 1.33
24 +++ ChangeLog 1 Jun 2010 09:29:50 -0000 1.34
25 @@ -1,6 +1,12 @@
26 # ChangeLog for net-libs/libssh
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libssh/ChangeLog,v 1.33 2010/05/21 16:03:39 pva Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libssh/ChangeLog,v 1.34 2010/06/01 09:29:50 scarabeus Exp $
30 +
31 +*libssh-0.4.4 (01 Jun 2010)
32 +
33 + 01 Jun 2010; Tomáš Chvátal <scarabeus@g.o> -libssh-0.4.0.ebuild,
34 + -libssh-0.4.3.ebuild, +libssh-0.4.4.ebuild:
35 + Version bump. Drop older.
36
37 *libssh-0.4.3 (21 May 2010)
38
39
40
41
42 1.1 net-libs/libssh/libssh-0.4.4.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libssh/libssh-0.4.4.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libssh/libssh-0.4.4.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libssh-0.4.4.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-libs/libssh/libssh-0.4.4.ebuild,v 1.1 2010/06/01 09:29:50 scarabeus Exp $
52
53 # Maintainer: check IUSE-defaults at DefineOptions.cmake
54
55 EAPI="2"
56
57 inherit cmake-utils
58
59 DESCRIPTION="Access a working SSH implementation by means of a library"
60 HOMEPAGE="http://www.libssh.org/"
61 SRC_URI="http://www.${PN}.org/files/${P}.tar.gz"
62
63 LICENSE="LGPL-2.1"
64 KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~s390 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
65 SLOT="0"
66 IUSE="debug gcrypt examples +sftp ssh1 server static-libs zlib"
67
68 DEPEND="
69 zlib? ( >=sys-libs/zlib-1.2 )
70 !gcrypt? ( >=dev-libs/openssl-0.9.8 )
71 gcrypt? ( >=dev-libs/libgcrypt-1.4 )
72 "
73 RDEPEND="${DEPEND}"
74
75 DOCS="AUTHORS README ChangeLog"
76
77 src_prepare() {
78 sed -i '/add_subdirectory(examples)/s/^/#DONOTWANT/' CMakeLists.txt
79 }
80
81 src_configure() {
82 mycmakeargs=(
83 $(cmake-utils_use_with debug DEBUG_CALLTRACE)
84 $(cmake-utils_use_with debug DEBUG_CRYPTO)
85 $(cmake-utils_use_with gcrypt)
86 $(cmake-utils_use_with zlib LIBZ)
87 $(cmake-utils_use_with sftp)
88 $(cmake-utils_use_with ssh1)
89 $(cmake-utils_use_with server)
90 $(cmake-utils_use_with static-libs STATIC_LIB)
91 )
92
93 cmake-utils_src_configure
94 }
95
96 src_install() {
97 cmake-utils_src_install
98
99 if use examples; then
100 insinto /usr/share/doc/${PF}/examples
101 doins examples/*.c
102 fi
103 }