Initial .bep files for openssh-5.5p1 and curl-7.20.1

Applied with the following Haiku:

OpenSSH
and Curl updated again
surfing securely
This commit is contained in:
Scott McCreary
2010-04-16 03:31:31 +00:00
parent fde4748886
commit f96e22c70c
4 changed files with 68 additions and 2 deletions

View File

@@ -0,0 +1,19 @@
DESCRIPTION="curl and libcurl"
HOMEPAGE="http://curl.haxx.se"
SRC_URI="http://curl.haxx.se/download/curl-7.20.1.tar.bz2"
CHECKSUM_MD5="244b16b2a38c70e47130c8494b7371b9"
REVISION="1"
STATUS_HAIKU="stable"
DEPEND=""
BUILD {
cd curl-7.20.1
libtoolize --force --copy --install
autoconf
./configure --prefix=/boot/common
make
}
INSTALL {
cd curl-7.20.1
make install
}

View File

@@ -1,5 +1,5 @@
Package: curl and libcurl
Version: 7.20.0
Version: 7.20.1
Copyright: 1996-2010, Daniel Stenberg, <daniel@haxx.se>. All rights reserved.
License: Curl
URL: http://curl.haxx.se/

View File

@@ -0,0 +1,47 @@
DESCRIPTION="OpenSSH"
HOMEPAGE="http://www.openssh.com/"
SRC_URI="http://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-5.5p1.tar.gz"
REVISION="1"
STATUS_HAIKU="stable"
DEPEND="openssl"
CHECKSUM_MD5="88633408f4cb1eb11ec7e2ec58b519eb"
BUILD {
cp ../patches/pathnames-haiku.h openssh-5.5p1/pathnames.h
cd openssh-5.5p1
mkdir -p m4
cp /boot/common/share/aclocal/libtool.m4 m4
cp /boot/common/share/aclocal/ltoptions.m4 m4
cp /boot/common/share/aclocal/ltversion.m4 m4
cp /boot/common/share/aclocal/ltsugar.m4 m4
cp /boot/common/share/aclocal/lt~obsolete.m4 m4
echo 'AC_CONFIG_MACRO_DIR([m4])' >> configure.ac
libtoolize --force --copy
aclocal -I m4
autoconf
./configure --prefix=`finddir B_COMMON_DIRECTORY` \
--sbindir=`finddir B_COMMON_BIN_DIRECTORY` \
--bindir=`finddir B_COMMON_BIN_DIRECTORY` \
--libexecdir=`finddir B_COMMON_LIB_DIRECTORY` \
--sysconfdir=`finddir B_USER_SETTINGS_DIRECTORY`/ssh \
--libdir=`finddir B_COMMON_LIB_DIRECTORY` \
--includedir=`finddir B_COMMON_DIRECTORY`/include \
--datadir=`finddir B_COMMON_DATA_DIRECTORY` \
--mandir=`finddir B_COMMON_DIRECTORY`/man \
--docdir=`finddir B_COMMON_DOCUMENTATION_DIRECTORY` \
--sysconfdir=`finddir B_COMMON_SETTINGS_DIRECTORY`/ssh \
--with-default-path=${PATH} \
--with-md5-passwords \
--disable-utmpx
make
}
INSTALL {
cd openssh-5.5p1
if [ -n ${DESTDIR} ];then
make install DESTDIR="${DESTDIR}"
else
make install
fi
mkdir -p ${DESTDIR}/boot/common/boot/post_install
cp -f $(haikuporter -t)/net-misc/openssh/sshd_keymaker.sh ${DESTDIR}/boot/common/boot/post_install
}

View File

@@ -1,5 +1,5 @@
Package: OpenSSH
Version: 5.4p1
Version: 5.5p1
Copyright: 2005-2010 Tatu Ylonen et al.
License: OpenSSH
URL: http://www.openssh.com