mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-14 15:50:07 +02:00
Renamed directory Update and rename cyassl-1.6.5.patch to wolfssl-1.6.5.patch Update cyassl-1.6.5.recipe Rename cyassl-1.6.5.recipe to wolfssl-1.6.5.recipe Update and rename cyassl-1.8.0.recipe to wolfssl-1.8.0.recipe Update and rename cyassl-2.0.2.recipe to wolfssl-2.0.2.recipe Update and rename cyassl-2.5.0.recipe to wolfssl-2.5.0.recipe Update wolfssl-2.0.2.recipe Rename cyassl-2.8.0.recipe to wolfssl-2.8.0.recipe Renamed/Moved dev-libs/cyassl to dev-libs/wolfssl
53 lines
958 B
Bash
53 lines
958 B
Bash
SUMMARY="Lightweight yet fully functional embedded SSL implementation"
|
|
DESCRIPTION="lightweight yet fully functional embedded SSL implementation"
|
|
HOMEPAGE="http://yassl.com"
|
|
COPYRIGHT="2006-2013 Sawtooth Consulting Ltd."
|
|
LICENSE="GNU GPL v2"
|
|
REVISION="1"
|
|
SOURCE_URI="http://yassl.com/cyassl-2.5.0.zip"
|
|
CHECKSUM_MD5="8965fb76f89af827ace53e423453b7cd"
|
|
STATUS_HAIKU="broken"
|
|
DEPEND="app-text/dos2unix >= 1.0"
|
|
SOURCE_DIR="cyassl-$portVersion"
|
|
|
|
ARCHITECTURES=""
|
|
|
|
PROVIDES=""
|
|
REQUIRES=""
|
|
|
|
PROVIDES_devel=""
|
|
REQUIRES_devel=""
|
|
|
|
BUILD_REQUIRES=""
|
|
BUILD_PREREQUIRES=""
|
|
|
|
BUILD()
|
|
{
|
|
cd wolfssl-2.5.0
|
|
dos2unix *
|
|
dos2unix include/*
|
|
dos2unix ctaocrypt/include/*
|
|
dos2unix ctaocrypt/src/*
|
|
libtoolize --force --copy --install
|
|
aclocal -I m4
|
|
autoconf
|
|
chmod 755 configure
|
|
automake
|
|
./configure --prefix=`finddir B_COMMON_DIRECTORY` --enable-shared
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
cd wolfssl-2.5.0
|
|
make install
|
|
}
|
|
|
|
TEST()
|
|
{
|
|
cd wolfssl-2.5.0
|
|
make check
|
|
cd testsuite
|
|
testsuite
|
|
}
|