libssh2: added recipe for version 1.4.3

This commit is contained in:
Jerome Duval
2014-06-13 17:47:58 +00:00
parent d3ebf027d7
commit 3d6bd506eb
2 changed files with 136 additions and 0 deletions

View File

@@ -0,0 +1,79 @@
SUMMARY="A SSH2 library."
DESCRIPTION="
libssh2 is a library implementing the SSH2 protocol, available under \
the revised BSD license.
"
HOMEPAGE="http://www.libssh2.org"
COPYRIGHT="
2004-2007 Sara Golemon <sarag@libssh2.org>
2005,2006 Mikhail Gusarov <dottedmag@dottedmag.net>
2006-2007 The Written Word, Inc.
2007 Eli Fant <elifantu@mail.ru>
2009 Daniel Stenberg
2008, 2009 Simon Josefsson
"
LICENSE="BSD (3-clause)"
SRC_URI="http://www.libssh2.org/download/libssh2-$portVersion.tar.gz"
CHECKSUM_SHA256="eac6f85f9df9db2e6386906a6227eb2cd7b3245739561cad7d6dc1d5d021b96d"
REVISION="1"
ARCHITECTURES="x86_gcc2 x86 x86_64"
SECONDARY_ARCHITECTURES="x86_gcc2 x86"
PATCHES="libssh2-$portVersion.patchset"
PROVIDES="
libssh2$secondaryArchSuffix = $portVersion compat >= 1.4
lib:libssh2$secondaryArchSuffix = 1.0.1 compat >= 1
"
REQUIRES="
haiku$secondaryArchSuffix >= $haikuVersion
lib:libcrypto$secondaryArchSuffix
lib:libssl$secondaryArchSuffix
lib:libz$secondaryArchSuffix
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel >= $haikuVersion
devel:libcrypto$secondaryArchSuffix
devel:libssl$secondaryArchSuffix
devel:libz$secondaryArchSuffix
"
BUILD_PREREQUIRES="
cmd:aclocal
cmd:autoconf
cmd:automake
cmd:gcc$secondaryArchSuffix
cmd:ld$secondaryArchSuffix
cmd:libtoolize
cmd:make
cmd:pkg_config$secondaryArchSuffix
"
BUILD()
{
autoreconf -I m4 -f -i
runConfigure ./configure
make $jobArgs
}
INSTALL()
{
make install
prepareInstalledDevelLibs libssh2
fixPkgconfig
# devel package
packageEntries devel \
$developDir \
$manDir/man3
}
# ----- devel package -------------------------------------------------------
PROVIDES_devel="
libssh2${secondaryArchSuffix}_devel = $portVersion compat >= 1.4
devel:libssh2$secondaryArchSuffix = 1.0.1 compat >= 1
"
REQUIRES_devel="
libssh2$secondaryArchSuffix == $portVersion base
"

View File

@@ -0,0 +1,57 @@
From 22c9d0908444b0d912ace76ea22f89b90b43a01c Mon Sep 17 00:00:00 2001
From: Jerome Duval <jerome.duval@gmail.com>
Date: Fri, 13 Jun 2014 17:08:13 +0000
Subject: haiku patch
diff --git a/configure.ac b/configure.ac
index dfc6988..6c2f519 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,7 +2,7 @@
AC_INIT(libssh2, [-], libssh2-devel@cool.haxx.se)
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_SRCDIR([src])
-AM_CONFIG_HEADER([src/libssh2_config.h example/libssh2_config.h])
+AC_CONFIG_HEADERS([src/libssh2_config.h example/libssh2_config.h])
AM_MAINTAINER_MODE
dnl SED is needed by some of the tools
--
1.8.3.4
From 25a2ec62ce50144b20d9bf3cb674ce4e9b5beece Mon Sep 17 00:00:00 2001
From: Jerome Duval <jerome.duval@gmail.com>
Date: Fri, 13 Jun 2014 17:19:49 +0000
Subject: haiku patch
diff --git a/configure.ac b/configure.ac
index 6c2f519..b68cfba 100644
--- a/configure.ac
+++ b/configure.ac
@@ -60,7 +60,7 @@ dnl Our configure and build reentrant settings
CURL_CONFIGURE_REENTRANT
# Some systems (Solaris?) have socket() in -lsocket.
-AC_SEARCH_LIBS(socket, socket)
+AC_SEARCH_LIBS(socket,[socket network])
# Solaris has inet_addr() in -lnsl.
AC_SEARCH_LIBS(inet_addr, nsl)
diff --git a/example/x11.c b/example/x11.c
index 6480dc8..a669a73 100644
--- a/example/x11.c
+++ b/example/x11.c
@@ -10,6 +10,7 @@
#include <sys/ioctl.h>
#include <netinet/in.h>
#include <sys/socket.h>
+#include <sys/select.h>
#include <arpa/inet.h>
#include <unistd.h>
#include <sys/types.h>
--
1.8.3.4