diff options
author | Palle Girgensohn <girgen@FreeBSD.org> | 2008-01-22 14:08:48 +0000 |
---|---|---|
committer | Palle Girgensohn <girgen@FreeBSD.org> | 2008-01-22 14:08:48 +0000 |
commit | 98f3f95bd88cb1d4def552219e35943d960340bd (patch) | |
tree | 4582ca63baa64c3a1c7ad1e7a22f2440958f7ca0 /databases/postgresql92-server/Makefile | |
parent | 30f33a9af3315ea5c3aaacd3bf7076862d993050 (diff) | |
download | ports-98f3f95bd88cb1d4def552219e35943d960340bd.tar.gz ports-98f3f95bd88cb1d4def552219e35943d960340bd.zip |
Notes
Diffstat (limited to 'databases/postgresql92-server/Makefile')
-rw-r--r-- | databases/postgresql92-server/Makefile | 39 |
1 files changed, 22 insertions, 17 deletions
diff --git a/databases/postgresql92-server/Makefile b/databases/postgresql92-server/Makefile index 1d77014578bc..4751411e3caf 100644 --- a/databases/postgresql92-server/Makefile +++ b/databases/postgresql92-server/Makefile @@ -6,13 +6,12 @@ # PORTNAME?= postgresql -PORTVERSION?= 8.3RC1 +DISTVERSION?= 8.3RC2 PORTREVISION?= 0 CATEGORIES?= databases MASTER_SITES= ${MASTER_SITE_PGSQL} -MASTER_SITE_SUBDIR= source/v${PORTVERSION} +MASTER_SITE_SUBDIR= source/v${DISTVERSION} PKGNAMESUFFIX?= -server -DISTFILES?= postgresql-${PORTVERSION}${EXTRACT_SUFX} MAINTAINER?= girgen@FreeBSD.org COMMENT?= BETA VERSION of the PostgreSQL server, only for testing @@ -22,7 +21,7 @@ CONFLICTS?= ${PORTNAME}-client-7.* \ ${PORTNAME}-client-8.[0-24-9]* \ ${PORTNAME}${PKGNAMESUFFIX}-8.[0-24-9]* -WRKSRC= ${WRKDIR}/postgresql-${PORTVERSION} +WRKSRC= ${WRKDIR}/postgresql-${DISTVERSION} DIST_SUBDIR= postgresql UNIQUENAME?= ${PORTNAME}83 @@ -42,11 +41,15 @@ PGGROUP= pgsql CONFIGURE_ARGS+=--with-libraries=${LOCALBASE}/lib \ --with-includes=${LOCALBASE}/include \ + --enable-thread-safety \ --with-docdir=${DOCSDIR} CONFIGURE_ENV+= LDFLAGS="${LDFLAGS}" \ PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \ PTHREAD_LIBS="${PTHREAD_LIBS}" +CFLAGS+= ${PTHREAD_CFLAGS} +LDFLAGS+= ${PTHREAD_LIBS} + PLIST= ${PKGDIR}/pkg-plist${PKGNAMESUFFIX} BUILD_DIRS?= src/port src/timezone src/backend src/backend/utils/mb/conversion_procs \ @@ -93,10 +96,8 @@ OPTIONS+= LDAP "Build with LDAP authentication support" off OPTIONS+= MIT_KRB5 "Build with MIT's kerberos support" off OPTIONS+= HEIMDAL_KRB5 "Builds with Heimdal kerberos support" off OPTIONS+= OPTIMIZED_CFLAGS "Builds with compiler optimizations (-O3)" off -OPTIONS+= LIBC_R "Link w/ libc_r, used by plpython (server)" off -OPTIONS+= THREADSAFE "make libpq thread safe" off -# to run regression tests: -OPTIONS+= TESTS "Allows the use of a \"check\" target (server)" off +OPTIONS+= XML "Build with XML data type (server)" on +OPTIONS+= TZDATA "Use internal timezone database (server)" on OPTIONS+= DEBUG "Builds with debugging symbols" off # See http://people.freebsd.org/~girgen/postgresql-icu/README.html for more info @@ -134,6 +135,18 @@ CONFIGURE_ARGS+=--with-ldap USE_OPENLDAP= YES . endif +. if defined(SERVER_ONLY) && defined(WITH_XML) +CONFIGURE_ARGS+=--with-libxml +LIB_DEPENDS+= xml2.5:${PORTSDIR}/textproc/libxml2 +. endif + +. if defined(SERVER_ONLY) && defined(WITH_TZDATA) +PLIST_SUB+= TZDATA="" +. else +CONFIGURE_ARGS+=--with-system-tzdata=/usr/share/zoneinfo +PLIST_SUB+= TZDATA="@comment " +. endif + . if defined(WITH_INTDATE) CONFIGURE_ARGS+=--enable-integer-datetimes . endif @@ -188,14 +201,6 @@ CONFIGURE_ARGS+=--with-krb5 . endif . endif -. if defined(WITH_THREADSAFE) -CONFIGURE_ARGS+=--enable-thread-safety -. endif - -. if defined(SERVER_ONLY) && defined(WITH_LIBC_R) -CFLAGS+= ${PTHREAD_CFLAGS} -LDFLAGS+= ${PTHREAD_LIBS} -. endif .endif # !SLAVE_ONLY .if defined(CLIENT_ONLY) @@ -314,7 +319,7 @@ do-install: fi .endif # !NO_BUILD -.if defined(SERVER_ONLY) && defined(WITH_TESTS) +.if defined(SERVER_ONLY) check: @if [ `id -u` != 0 ] ; then \ ${ECHO} "Running postgresql regressions tests" ;\ |