Files
haikuports/x11-libs/libxau/libxau-1.0.5.recipe
Humdinger 36e5637b9f De-lint recipes
*	libmikmod
	Re-ordered blocks

*	libmodplug
	Don't start SUMMARY with app name
	Re-ordered blocks

*	librecad
	Don't start SUMMARY with app name
	Re-ordered blocks

*	libsvgtiny
	Don't start SUMMARY with app name
	Re-ordered blocks

*	libwalter
	Don't start SUMMARY with app name
	Re-ordered blocks

*	libwapcaplet
	Don't start SUMMARY with app name
	Re-ordered blocks

*	libxau
	Improved SUMMARY and DESCRIPTION
	Re-ordered blocks

*	links
	Improved SUMMARY and DESCRIPTION
	Re-ordered blocks

*	lynx
	Don't start SUMMARY with app name
	Re-ordered blocks
2015-08-07 17:49:48 +02:00

60 lines
1.6 KiB
Bash

SUMMARY="X.Org's sample authorization protocol for X"
DESCRIPTION="This example describes a very simple mechanism for providing \
individual access to an X Window System display. It uses existing core \
protocol and library hooks for specifying authorization data in the \
connection setup block to restrict use of the display to only those clients \
that show that they know a server-specific key called a 'magic cookie'."
HOMEPAGE="http://xorg.freedesktop.org/releases/individual/lib/"
COPYRIGHT="1988, 1993, 1994, 1998 The Open Group"
LICENSE="MIT (no promotion)"
REVISION="1"
SOURCE_URI="http://xorg.freedesktop.org/releases/individual/lib/libXau-1.0.5.tar.gz"
CHECKSUM_SHA256="2ad4324cf204331d6773bba441baed58e46168e7913de2079f10b272eae5c4db"
SOURCE_DIR="libXau-$portVersion"
PATCHES="libxau-1.0.5.patch"
ARCHITECTURES="x86_gcc2 x86 x86_64"
SECONDARY_ARCHITECTURES="x86_gcc2 x86"
PROVIDES="
libxau$secondaryArchSuffix = $portVersion
lib:libxau$secondaryArchSuffix = $portVersion
lib:libXau$secondaryArchSuffix = $portVersion
devel:libxau$secondaryArchSuffix = $portVersion
"
REQUIRES="
haiku$secondaryArchSuffix
xproto$secondaryArchSuffix
"
BUILD_REQUIRES="
haiku$secondaryArchSuffix
devel:xproto$secondaryArchSuffix
"
BUILD_PREREQUIRES="
haiku${secondaryArchSuffix}_devel
devel:util_macros$secondaryArchSuffix
cmd:autoconf
cmd:libtool
cmd:aclocal
cmd:make
cmd:gcc$secondaryArchSuffix
cmd:ld$secondaryArchSuffix
cmd:pkg_config$secondaryArchSuffix
"
BUILD()
{
libtoolize --force --copy --install
autoreconf -i
runConfigure ./configure
make
}
INSTALL()
{
make install
prepareInstalledDevelLibs libXau
fixPkgconfig
}