diff options
author | Cédric Krier <cedk@gentoo.org> | 2007-08-29 17:44:45 +0000 |
---|---|---|
committer | Cédric Krier <cedk@gentoo.org> | 2007-08-29 17:44:45 +0000 |
commit | 9ce6b35513363a0233258dc8efbd7b326cc6f296 (patch) | |
tree | 37776498dc335a5f7a8f43b7b8cf85eafc52822f | |
parent | Removing gustavoz from metadata due to his retirement (see #36010 for referen... (diff) | |
download | gentoo-2-9ce6b35513363a0233258dc8efbd7b326cc6f296.tar.gz gentoo-2-9ce6b35513363a0233258dc8efbd7b326cc6f296.tar.bz2 gentoo-2-9ce6b35513363a0233258dc8efbd7b326cc6f296.zip |
Version bump
(Portage version: 2.1.2.12)
-rw-r--r-- | net-libs/libssh2/ChangeLog | 7 | ||||
-rw-r--r-- | net-libs/libssh2/files/digest-libssh2-0.17 | 3 | ||||
-rw-r--r-- | net-libs/libssh2/libssh2-0.17.ebuild | 29 |
3 files changed, 38 insertions, 1 deletions
diff --git a/net-libs/libssh2/ChangeLog b/net-libs/libssh2/ChangeLog index d9f7082d36a4..45a427bab427 100644 --- a/net-libs/libssh2/ChangeLog +++ b/net-libs/libssh2/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-libs/libssh2 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libssh2/ChangeLog,v 1.2 2007/07/01 12:38:25 cedk Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libssh2/ChangeLog,v 1.3 2007/08/29 17:44:45 cedk Exp $ + +*libssh2-0.17 (29 Aug 2007) + + 29 Aug 2007; Cédric Krier <cedk@gentoo.org> +libssh2-0.17.ebuild: + Version bump *libssh2-0.15 (01 Jul 2007) diff --git a/net-libs/libssh2/files/digest-libssh2-0.17 b/net-libs/libssh2/files/digest-libssh2-0.17 new file mode 100644 index 000000000000..3ee8009171c5 --- /dev/null +++ b/net-libs/libssh2/files/digest-libssh2-0.17 @@ -0,0 +1,3 @@ +MD5 ab172f0737617ba2cd594d7fae03ddbb libssh2-0.17.tar.gz 539701 +RMD160 e0dc2ff3801ed9a13527445fb91ceb0fd1d1840b libssh2-0.17.tar.gz 539701 +SHA256 ae16a9452173fb6656f3720c4a0f602414353c2dd514e31e81f7956dc6177304 libssh2-0.17.tar.gz 539701 diff --git a/net-libs/libssh2/libssh2-0.17.ebuild b/net-libs/libssh2/libssh2-0.17.ebuild new file mode 100644 index 000000000000..fbfb70b4bb91 --- /dev/null +++ b/net-libs/libssh2/libssh2-0.17.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libssh2/libssh2-0.17.ebuild,v 1.1 2007/08/29 17:44:45 cedk Exp $ + +inherit eutils + +DESCRIPTION="Library implementing the SSH2 protocol" +HOMEPAGE="http://www.libssh2.org/" +SRC_URI="mirror://sourceforge/libssh2/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~x86" +IUSE="libgcrypt" + +DEPEND="!libgcrypt? ( dev-libs/openssl ) + libgcrypt? ( dev-libs/libgcrypt ) + sys-libs/zlib" +RDEPEND=${DEPEND} + +src_compile() { + econf $(use_enable libgcrypt) || die "econf failed" + emake || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc README +} |