SUMMARY="A tool for downloading files from the internet" DESCRIPTION="wget is a tool that can download files from the internet through \ protocols such as HTTP, HTTPS and FTP. wget is non-interactive, so it can be \ called from scripts." HOMEPAGE="https://www.gnu.org/software/wget/" COPYRIGHT="1996-2016 Free Software Foundation" LICENSE="GNU GPL v3" REVISION="2" SOURCE_URI="http://ftpmirror.gnu.org/wget/wget-$portVersion.tar.gz" CHECKSUM_SHA256="9e4f12da38cc6167d0752d934abe27c7b1599a9af294e73829be7ac7b5b4da40" PATCHES="wget-$portVersion.patchset" ARCHITECTURES="x86_gcc2 x86 x86_64" SECONDARY_ARCHITECTURES="x86 x86_gcc2" PROVIDES=" wget$secondaryArchSuffix = $portVersion cmd:wget$secondaryArchSuffix = $portVersion " REQUIRES=" haiku$secondaryArchSuffix lib:libcrypto$secondaryArchSuffix lib:libssl$secondaryArchSuffix lib:libz$secondaryArchSuffix lib:libintl$secondaryArchSuffix lib:libiconv$secondaryArchSuffix " BUILD_REQUIRES=" haiku${secondaryArchSuffix}_devel devel:libcrypto$secondaryArchSuffix devel:libiconv$secondaryArchSuffix devel:libssl$secondaryArchSuffix devel:libz$secondaryArchSuffix >= 1.2.3 " BUILD_PREREQUIRES=" cmd:gcc$secondaryArchSuffix cmd:aclocal cmd:autoconf cmd:libtoolize$secondaryArchSuffix cmd:make cmd:makeinfo cmd:pod2man cmd:gettext cmd:find cmd:pkg_config$secondaryArchSuffix " USER_SETTINGS_FILES=" settings/wgetrc " GLOBAL_WRITABLE_FILES=" settings/wgetrc keep-old " BUILD() { AUTOPOINT=true autoreconf -fi runConfigure ./configure --with-ssl=openssl make } INSTALL() { make install # Tells wget where to find certificates echo "ca_certificate=/boot/system/data/ssl/CARootCertificates.pem" > $settingsDir/wgetrc } TEST() { [ -d .git ] && mv .git .git-temp make check || true [ -d .git-temp ] && mv .git-temp .git }