mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-09 05:10:05 +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.
123 lines
4.3 KiB
Bash
123 lines
4.3 KiB
Bash
SUMMARY="A powerful object-relational database system"
|
|
DESCRIPTION="PostgreSQL has more than 15 years of active development and a \
|
|
proven architecture that has earned it a strong reputation for reliability, \
|
|
data integrity, and correctness.
|
|
|
|
* It runs on all major operating systems, including Linux, UNIX (AIX, BSD, \
|
|
HP-UX, SGI IRIX, Mac OS X, Solaris, Tru64), and Windows.
|
|
* It is fully ACID compliant, has full support for foreign keys, joins, \
|
|
views, triggers, and stored procedures (in multiple languages).
|
|
* It includes most SQL:2008 data types, including INTEGER, NUMERIC, BOOLEAN, \
|
|
CHAR, VARCHAR, DATE, INTERVAL, and TIMESTAMP.
|
|
* It supports storage of binary large objects, including pictures, sounds, or \
|
|
video.
|
|
* It has native programming interfaces for C/C++, Java, .Net, Perl, Python, \
|
|
Ruby, Tcl, ODBC, among others, and exceptional documentation."
|
|
HOMEPAGE="https://www.postgresql.org/"
|
|
COPYRIGHT="1996-2014 PostgreSQL Global Development Group"
|
|
LICENSE="PostgreSQL"
|
|
REVISION="3"
|
|
SOURCE_URI="http://ftp.postgresql.org/pub/source/v$portVersion/postgresql-$portVersion.tar.bz2"
|
|
CHECKSUM_SHA256="14176ffb1f90a189e7626214365be08ea2bfc26f26994bafb4235be314b9b4b0"
|
|
SOURCE_DIR="postgresql-$portVersion"
|
|
PATCHES="postgresql-$portVersion.patchset"
|
|
|
|
ARCHITECTURES="!all x86_gcc2 ?x86"
|
|
SECONDARY_ARCHITECTURES="x86 x86_gcc2"
|
|
|
|
PROVIDES="
|
|
postgresql$secondaryArchSuffix = $portVersion compat >= 9
|
|
cmd:clusterdb$secondaryArchSuffix = $portVersion compat >= 9
|
|
cmd:createdb$secondaryArchSuffix = $portVersion compat >= 9
|
|
cmd:createlang$secondaryArchSuffix = $portVersion compat >= 9
|
|
cmd:createuser$secondaryArchSuffix = $portVersion compat >= 9
|
|
cmd:dropdb$secondaryArchSuffix = $portVersion compat >= 9
|
|
cmd:droplang$secondaryArchSuffix = $portVersion compat >= 9
|
|
cmd:dropuser$secondaryArchSuffix = $portVersion compat >= 9
|
|
cmd:ecpg$secondaryArchSuffix = $portVersion compat >= 9
|
|
cmd:initdb$secondaryArchSuffix = $portVersion compat >= 9
|
|
cmd:pg_basebackup$secondaryArchSuffix = $portVersion compat >= 9
|
|
cmd:pg_config$secondaryArchSuffix = $portVersion compat >= 9
|
|
cmd:pg_controldata$secondaryArchSuffix = $portVersion compat >= 9
|
|
cmd:pg_ctl$secondaryArchSuffix = $portVersion compat >= 9
|
|
cmd:pg_dump$secondaryArchSuffix = $portVersion compat >= 9
|
|
cmd:pg_dumpall$secondaryArchSuffix = $portVersion compat >= 9
|
|
cmd:pg_isready$secondaryArchSuffix = $portVersion compat >= 9
|
|
cmd:pg_receivexlog$secondaryArchSuffix = $portVersion compat >= 9
|
|
cmd:pg_resetxlog$secondaryArchSuffix = $portVersion compat >= 9
|
|
cmd:pg_restore$secondaryArchSuffix = $portVersion compat >= 9
|
|
cmd:postgres$secondaryArchSuffix = $portVersion compat >= 9
|
|
cmd:postmaster$secondaryArchSuffix = $portVersion compat >= 9
|
|
cmd:psql$secondaryArchSuffix = $portVersion compat >= 9
|
|
cmd:reindexdb$secondaryArchSuffix = $portVersion compat >= 9
|
|
cmd:vacuumdb$secondaryArchSuffix = $portVersion compat >= 9
|
|
lib:libecpg$secondaryArchSuffix = $portVersion compat >= 9
|
|
lib:libecpg_compat$secondaryArchSuffix = $portVersion compat >= 9
|
|
lib:libpgtypes$secondaryArchSuffix = $portVersion compat >= 9
|
|
lib:libpq$secondaryArchSuffix = $portVersion compat >= 9
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
lib:libreadline$secondaryArchSuffix
|
|
lib:libz$secondaryArchSuffix
|
|
"
|
|
|
|
PROVIDES_devel="
|
|
postgresql${secondaryArchSuffix}_devel = $portVersion
|
|
devel:libecpg$secondaryArchSuffix = $portVersion
|
|
devel:libecpg_compat$secondaryArchSuffix = $portVersion
|
|
devel:libpgcommon$secondaryArchSuffix = $portVersion
|
|
devel:libpgport$secondaryArchSuffix = $portVersion
|
|
devel:libpgtypes$secondaryArchSuffix = $portVersion
|
|
devel:libpq$secondaryArchSuffix = $portVersion
|
|
"
|
|
REQUIRES_devel="
|
|
postgresql${secondaryArchSuffix} == $portVersion base
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
devel:libreadline$secondaryArchSuffix
|
|
devel:libz$secondaryArchSuffix
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
cmd:aclocal
|
|
cmd:awk
|
|
cmd:bison
|
|
cmd:flex
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:ld$secondaryArchSuffix
|
|
cmd:make
|
|
cmd:pkg_config$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
CFLAGS=-D_BSD_SOURCE runConfigure ./configure
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
|
|
prepareInstalledDevelLibs libpgport \
|
|
libpgcommon \
|
|
libecpg \
|
|
libpgtypes \
|
|
libpq \
|
|
libecpg_compat
|
|
fixPkgconfig
|
|
|
|
mkdir -p $developLibDir/postgresql/pgxs
|
|
mv $libDir/postgresql/pgxs $developLibDir/postgresql/
|
|
|
|
packageEntries devel \
|
|
$developDir
|
|
}
|
|
|
|
TEST()
|
|
{
|
|
make check
|
|
}
|