mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-06 06:58:57 +02:00
x86_64 is used as a baseline: the "x86_64" entry, whatever status it has, is transformed into "all", and then the other entries in ARCHITECTURES either dropped or rearranged appropriately.
55 lines
1.2 KiB
Bash
55 lines
1.2 KiB
Bash
SUMMARY="X Fonts Extension"
|
|
DESCRIPTION="This package provides the wire protocol for the X Font \
|
|
rasterisation extensions. These extensions are used to control server-side \
|
|
font configurations."
|
|
HOMEPAGE="http://xorg.freedesktop.org/releases/individual/proto/"
|
|
COPYRIGHT="1990, 1991 Network Computing Devices;
|
|
1987 Digital Equipment Corporation"
|
|
LICENSE="MIT (no promotion)"
|
|
REVISION="3"
|
|
SOURCE_URI="https://www.x.org/releases/individual/proto/fontsproto-$portVersion.tar.bz2"
|
|
CHECKSUM_SHA256="259046b0dd9130825c4a4c479ba3591d6d0f17a33f54e294b56478729a6e5ab8"
|
|
|
|
ARCHITECTURES="all"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
PROVIDES="
|
|
fontsproto$secondaryArchSuffix = $portVersion
|
|
devel:fontsproto$secondaryArchSuffix = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
docbook_xml_dtd
|
|
docbook_xsl_stylesheets
|
|
devel:util_macros
|
|
devel:xorg_sgml_doctools
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:aclocal
|
|
cmd:autoconf
|
|
cmd:awk
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:libtool$secondaryArchSuffix
|
|
cmd:make
|
|
cmd:pkg_config$secondaryArchSuffix
|
|
cmd:xmlto
|
|
cmd:xsltproc
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
autoreconf -vfi
|
|
runConfigure ./configure
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
fixPkgconfig
|
|
rmdir $libDir
|
|
}
|