diff options
author | Patrick Lauer <patrick@gentoo.org> | 2009-03-29 17:01:32 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2009-03-29 17:01:32 +0000 |
commit | a306cf50a2c91092161118a8cc9ad5e277bc4a76 (patch) | |
tree | 4bd805eed17f3e8d1751bf4d7b0d1369e4a1bba1 /net-libs/libssh2 | |
parent | ppc stable #262704 (diff) | |
download | gentoo-2-a306cf50a2c91092161118a8cc9ad5e277bc4a76.tar.gz gentoo-2-a306cf50a2c91092161118a8cc9ad5e277bc4a76.tar.bz2 gentoo-2-a306cf50a2c91092161118a8cc9ad5e277bc4a76.zip |
Bump to 1.0. Fixes #261612
(Portage version: 2.2_rc28/cvs/Linux x86_64)
Diffstat (limited to 'net-libs/libssh2')
-rw-r--r-- | net-libs/libssh2/ChangeLog | 7 | ||||
-rw-r--r-- | net-libs/libssh2/libssh2-1.0.ebuild | 29 |
2 files changed, 35 insertions, 1 deletions
diff --git a/net-libs/libssh2/ChangeLog b/net-libs/libssh2/ChangeLog index 3acfaf6b42ed..3f81bde0ae8c 100644 --- a/net-libs/libssh2/ChangeLog +++ b/net-libs/libssh2/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-libs/libssh2 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libssh2/ChangeLog,v 1.16 2009/01/24 12:33:45 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libssh2/ChangeLog,v 1.17 2009/03/29 17:01:32 patrick Exp $ + +*libssh2-1.0 (29 Mar 2009) + + 29 Mar 2009; Patrick Lauer <patrick@gentoo.org> +libssh2-1.0.ebuild: + Bump to 1.0. Fixes #261612 24 Jan 2009; Alexis Ballier <aballier@gentoo.org> libssh2-0.18.ebuild: keyword ~x86-fbsd diff --git a/net-libs/libssh2/libssh2-1.0.ebuild b/net-libs/libssh2/libssh2-1.0.ebuild new file mode 100644 index 000000000000..b532a03cc6ad --- /dev/null +++ b/net-libs/libssh2/libssh2-1.0.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libssh2/libssh2-1.0.ebuild,v 1.1 2009/03/29 17:01:32 patrick 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="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +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 +} |