diff options
author | thierry <thierry@FreeBSD.org> | 2004-06-24 06:19:23 +0800 |
---|---|---|
committer | thierry <thierry@FreeBSD.org> | 2004-06-24 06:19:23 +0800 |
commit | 137d81b18e864b53e1487cd76f7710e384ed3948 (patch) | |
tree | 6280bc78b86b7985666169c7793bce325b187091 /databases/postgresql-libpqxx/Makefile | |
parent | 80c3a20ac0c7a3428f3d60c088573743ccdbf206 (diff) | |
download | freebsd-ports-gnome-137d81b18e864b53e1487cd76f7710e384ed3948.tar.gz freebsd-ports-gnome-137d81b18e864b53e1487cd76f7710e384ed3948.tar.zst freebsd-ports-gnome-137d81b18e864b53e1487cd76f7710e384ed3948.zip |
Upgrade to 2.2.3.
Warning: broken on 4.x.
PR: 68217
Submitted by: maintainer.
Diffstat (limited to 'databases/postgresql-libpqxx/Makefile')
-rw-r--r-- | databases/postgresql-libpqxx/Makefile | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/databases/postgresql-libpqxx/Makefile b/databases/postgresql-libpqxx/Makefile index 794265c66f7f..356e3870f217 100644 --- a/databases/postgresql-libpqxx/Makefile +++ b/databases/postgresql-libpqxx/Makefile @@ -6,8 +6,7 @@ # PORTNAME= libpqxx -PORTVERSION= 2.1.1 -PORTREVISION= 1 +PORTVERSION= 2.2.3 CATEGORIES= databases MASTER_SITES= ftp://gborg.postgresql.org/pub/libpqxx/stable/ PKGNAMEPREFIX= postgresql- @@ -16,14 +15,23 @@ DIST_SUBDIR= postgresql MAINTAINER= girgen@pingpong.net COMMENT= A new C++ interface for PostgreSQL -POSTGRESQL_PORT?= databases/postgresql7 LIB_DEPENDS= pq.3:${PORTSDIR}/${POSTGRESQL_PORT} +USE_LIBTOOL_VER=15 USE_GMAKE= YES GNU_CONFIGURE= YES INSTALLS_SHLIB= YES CONFIGURE_ARGS= --with-postgres=${LOCALBASE} \ + --enable-shared \ --with-postgres-include=${LOCALBASE}/include/postgresql -.include <bsd.port.mk> +POSTGRESQL_PORT?= databases/postgresql7 + +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500000 +BROKEN= "<ios> header missing on this platform" +.endif + +.include <bsd.port.post.mk> |