diff options
author | Tim Harder <radhermit@gentoo.org> | 2012-12-09 21:25:15 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2012-12-09 21:25:15 +0000 |
commit | 06b4fba4dfaf0d8a7a63845b385a64789f58698d (patch) | |
tree | 790cf99d47a092ba9cda2be15f0de34f08c19949 /net-libs/libssh2 | |
parent | Flesh out gnome-3.6 mask in preparation for moving 3.6 to portage. (diff) | |
download | gentoo-2-06b4fba4dfaf0d8a7a63845b385a64789f58698d.tar.gz gentoo-2-06b4fba4dfaf0d8a7a63845b385a64789f58698d.tar.bz2 gentoo-2-06b4fba4dfaf0d8a7a63845b385a64789f58698d.zip |
Version bump.
(Portage version: 2.2.0_alpha145/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'net-libs/libssh2')
-rw-r--r-- | net-libs/libssh2/ChangeLog | 7 | ||||
-rw-r--r-- | net-libs/libssh2/libssh2-1.4.3.ebuild | 36 |
2 files changed, 42 insertions, 1 deletions
diff --git a/net-libs/libssh2/ChangeLog b/net-libs/libssh2/ChangeLog index 1bb21a779ca2..6940983c27c1 100644 --- a/net-libs/libssh2/ChangeLog +++ b/net-libs/libssh2/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-libs/libssh2 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libssh2/ChangeLog,v 1.72 2012/11/19 09:50:05 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libssh2/ChangeLog,v 1.73 2012/12/09 21:25:15 radhermit Exp $ + +*libssh2-1.4.3 (09 Dec 2012) + + 09 Dec 2012; Tim Harder <radhermit@gentoo.org> +libssh2-1.4.3.ebuild: + Version bump. 19 Nov 2012; Justin Lecher <jlec@gentoo.org> libssh2-1.4.2.ebuild, metadata.xml: diff --git a/net-libs/libssh2/libssh2-1.4.3.ebuild b/net-libs/libssh2/libssh2-1.4.3.ebuild new file mode 100644 index 000000000000..63a11c724760 --- /dev/null +++ b/net-libs/libssh2/libssh2-1.4.3.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libssh2/libssh2-1.4.3.ebuild,v 1.1 2012/12/09 21:25:15 radhermit Exp $ + +EAPI="5" + +inherit autotools-utils + +DESCRIPTION="Library implementing the SSH2 protocol" +HOMEPAGE="http://www.libssh2.org/" +SRC_URI="http://www.${PN}.org/download/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-solaris" +IUSE="gcrypt static-libs test zlib" + +DEPEND="!gcrypt? ( dev-libs/openssl ) + gcrypt? ( dev-libs/libgcrypt ) + zlib? ( sys-libs/zlib )" +RDEPEND="${DEPEND}" + +DOCS=( README ) + +PATCHES=( "${FILESDIR}"/${PN}-1.4.2-pkgconfig.patch ) + +src_configure() { + # Disable tests that require extra permissions (bug #333319) + use test && export ac_cv_path_SSHD= + + local myeconfargs=( + $(use_with zlib libz) + $(usex gcrypt --with-libgcrypt --with-openssl) + ) + autotools-utils_src_configure +} |