mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-04 22:18:55 +02:00
Fixed pull request Fixed PR Revert "Fixed PR" This reverts commit 9bd6a7aad2497fe7108ffac314e42cb49a26c10b. Revert "Fixed pull request" This reverts commit bd4611e9d836dd5b7c5baefe9dd4fe4cd7ba9c5a. Xorg fontutil recipe Fixed pull request Fixed PR Revert "Fixed PR" This reverts commit 9bd6a7aad2497fe7108ffac314e42cb49a26c10b. Revert "Fixed pull request" This reverts commit bd4611e9d836dd5b7c5baefe9dd4fe4cd7ba9c5a. Revert "Xorg fontutil recipe" This reverts commit f074d5de9e65d0f429275eb17415b82c9246184b. Xorg Fontutil Recipe Fixed recipe
55 lines
1.2 KiB
Bash
55 lines
1.2 KiB
Bash
SUMMARY="X.Org font utilities"
|
|
DESCRIPTION="X.Org font package creation/installation utilities"
|
|
HOMEPAGE="http://cgit.freedesktop.org/xorg/font/util"
|
|
COPYRIGHT="2006 Martin Husemann
|
|
2007 Joerg Sonnenberger"
|
|
LICENSE="MIT"
|
|
REVISION="1"
|
|
SOURCE_URI="https://www.x.org/archive/individual/font/font-util-$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="34ebb0c9c14e0a392cdd5ea055c92489ad88d55ae148b2f1cfded0f3f63f2b5b"
|
|
SOURCE_DIR="font-util-$portVersion"
|
|
#PATCHES="font-util--$portVersion.patchset"
|
|
|
|
ARCHITECTURES="!x86_gcc2 x86 x86_64"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
PROVIDES="
|
|
fontutil$secondaryArchSuffix = $portVersion compat >= 0
|
|
cmd:bdftruncate$secondaryArchSuffix = 1.3.1 compat >= 1.3
|
|
cmd:ucs2any$secondaryArchSuffix = 1.3.1 compat >= 1.3
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
devel:util_macros$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
devel:util_macros$secondaryArchSuffix
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:aclocal
|
|
cmd:autoconf
|
|
cmd:automake
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:ld$secondaryArchSuffix
|
|
cmd:libtoolize$secondaryArchSuffix
|
|
cmd:make
|
|
cmd:pkg_config$secondaryArchSuffix
|
|
cmd:find
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
autoreconf -fi
|
|
runConfigure ./configure
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
|
|
fixPkgconfig
|
|
}
|