Files
haikuports/net-misc/rdesktop/rdesktop-1.8.0.recipe
Augustin Cavalier 6299524859 Remove cmd:mkdepend from BUILD_PREREQUIRES of makefile_engine apps.
Not needed now that the makefile_engine package depends on
cmd:mkdepend directly.
2015-07-19 13:59:19 -04:00

55 lines
1.1 KiB
Bash
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
SUMMARY="An open source client for Windows Remote Desktop Services."
DESCRIPTION="
rdesktop is an open source client for Windows Remote Desktop Services, capable \
of natively speaking Remote Desktop Protocol (RDP) in order to present the \
user's Windows desktop. rdesktop is known to work with Windows versions such \
as NT 4 Terminal Server, 2000, XP, 2003, 2003 R2, Vista, 2008, 7, and 2008 R2.
"
HOMEPAGE="http://rdesktop.org"
SOURCE_URI="http://prdownloads.sourceforge.net/rdesktop/rdesktop-$portVersion.tar.gz"
CHECKSUM_SHA256="1f12562c0dc1c599d1c3d2ac4829d229763744fe7aef879c8eaaa5abae8edcb3"
COPYRIGHT="1999-2013 Matthew Chapman"
LICENSE="GNU GPL v3"
REVISION="2"
ARCHITECTURES="x86_gcc2 x86 ?x86_64"
PROVIDES="
rdesktop = $portVersion
cmd:rdesktop = $portVersion
"
BUILD_PREREQUIRES="
makefile_engine
cmd:gcc
cmd:make
"
BUILD_REQUIRES="
haiku_devel
devel:libssl
"
REQUIRES="
haiku
lib:libcrypto
lib:libssl
"
PATCHES="rdesktop-1.8.0.patchset"
BUILD()
{
cd haiku
makefile=makefile_gcc4
if [[ "$buildArchitecture" == *gcc2* ]]; then
makefile=makefile_gcc2
fi
make -f $makefile
}
INSTALL()
{
mkdir -p $binDir
cp haiku/rdesktop $binDir
}