summaryrefslogtreecommitdiff
path: root/databases/postgresql-libpqxx3
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2006-11-17 01:18:44 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2006-11-17 01:18:44 +0000
commitf8374320671c6a39b6d2935b5b3e21b5824e4407 (patch)
treee8f1280d7479efefe71879ca2d9e78fbe327b405 /databases/postgresql-libpqxx3
parent088b4fa7df37b5bea6880adfa83fcc36d9e7dc6a (diff)
Diffstat (limited to 'databases/postgresql-libpqxx3')
-rw-r--r--databases/postgresql-libpqxx3/Makefile39
-rw-r--r--databases/postgresql-libpqxx3/distinfo3
-rw-r--r--databases/postgresql-libpqxx3/files/patch-Makefile.in11
-rw-r--r--databases/postgresql-libpqxx3/files/patch-tools-splitconfig11
-rw-r--r--databases/postgresql-libpqxx3/pkg-descr18
-rw-r--r--databases/postgresql-libpqxx3/pkg-plist83
6 files changed, 0 insertions, 165 deletions
diff --git a/databases/postgresql-libpqxx3/Makefile b/databases/postgresql-libpqxx3/Makefile
deleted file mode 100644
index 0ac942700c8a..000000000000
--- a/databases/postgresql-libpqxx3/Makefile
+++ /dev/null
@@ -1,39 +0,0 @@
-# New ports collection makefile for: PostgreSQL Pgaccess
-# Date created: December 1st, 2002
-# Whom: Palle Girgensohn <girgen@pingpong.net>
-#
-# $FreeBSD$
-#
-
-PORTNAME= libpqxx
-PORTVERSION= 2.6.7
-CATEGORIES= databases
-MASTER_SITES= ftp://thaiopensource.org/%SUBDIR%/
-MASTER_SITE_SUBDIR= software/libpqxx
-PKGNAMEPREFIX= postgresql-
-DIST_SUBDIR= postgresql
-
-MAINTAINER= girgen@FreeBSD.org
-COMMENT= A new C++ interface for PostgreSQL
-
-USE_PGSQL= yes
-USE_GMAKE= yes
-GNU_CONFIGURE= yes
-INSTALLS_SHLIB= yes
-PLIST_SUB= PORTVERSION=${PORTVERSION}
-
-CONFIGURE_ARGS= --with-postgres=${LOCALBASE} \
- --enable-shared \
- --with-postgres-include=${LOCALBASE}/include/postgresql
-
-.include <bsd.port.pre.mk>
-
-.if ${OSVERSION} < 500035
-BUILD_DEPENDS+= ${LOCALBASE}/lib/libstlport_gcc.so:${PORTSDIR}/devel/stlport
-RUN_DEPENDS+= ${LOCALBASE}/lib/libstlport_gcc.so:${PORTSDIR}/devel/stlport
-CPPFLAGS+= -I${LOCALBASE}/include/stlport
-LDFLAGS+= -L${LOCALBASE}/lib -lstlport_gcc ${PTHREAD_LIBS}
-CONFIGURE_ENV+= LDFLAGS="${LDFLAGS}" CPPFLAGS="${CPPFLAGS}"
-.endif
-
-.include <bsd.port.post.mk>
diff --git a/databases/postgresql-libpqxx3/distinfo b/databases/postgresql-libpqxx3/distinfo
deleted file mode 100644
index b1a6496643ca..000000000000
--- a/databases/postgresql-libpqxx3/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 (postgresql/libpqxx-2.6.7.tar.gz) = f66b41065a5e3103a348d378320999e4
-SHA256 (postgresql/libpqxx-2.6.7.tar.gz) = 59d01aab3b442954a044fd21bb43482f03cf750fa54e03f03a6fc2543a6cca7a
-SIZE (postgresql/libpqxx-2.6.7.tar.gz) = 1595069
diff --git a/databases/postgresql-libpqxx3/files/patch-Makefile.in b/databases/postgresql-libpqxx3/files/patch-Makefile.in
deleted file mode 100644
index d1dd4d32ceef..000000000000
--- a/databases/postgresql-libpqxx3/files/patch-Makefile.in
+++ /dev/null
@@ -1,11 +0,0 @@
---- Makefile.in~ Sat May 27 12:46:50 2006
-+++ Makefile.in Sun May 28 17:51:23 2006
-@@ -212,7 +212,7 @@
-
-
- #includedir=$(prefix)/include
--pkgconfigdir = $(libdir)/pkgconfig
-+pkgconfigdir = $(prefix)/libdata/pkgconfig
- pkgconfig_DATA = libpqxx.pc
- bin_SCRIPTS = pqxx-config
- all: all-recursive
diff --git a/databases/postgresql-libpqxx3/files/patch-tools-splitconfig b/databases/postgresql-libpqxx3/files/patch-tools-splitconfig
deleted file mode 100644
index 383fb09cfa14..000000000000
--- a/databases/postgresql-libpqxx3/files/patch-tools-splitconfig
+++ /dev/null
@@ -1,11 +0,0 @@
---- tools/splitconfig.orig Wed Aug 9 12:00:50 2006
-+++ tools/splitconfig Wed Aug 9 12:00:59 2006
-@@ -58,7 +58,7 @@
- }
-
-
--SAMPLETXT="`mktemp`"
-+SAMPLETXT="`mktemp foo`"
-
- # Perform a "grep -F -w -h", or simulate one, searching for any of the patterns
- # listed in "$2" (one per line) in file "$3". A code for the grep command line
diff --git a/databases/postgresql-libpqxx3/pkg-descr b/databases/postgresql-libpqxx3/pkg-descr
deleted file mode 100644
index 5697d09a3e4d..000000000000
--- a/databases/postgresql-libpqxx3/pkg-descr
+++ /dev/null
@@ -1,18 +0,0 @@
-Welcome to libpqxx, the official C++ API to the PostgreSQL database
-management system.
-
-There are many similar libraries for PostgreSQL and for other
-databases, some of them database-independent. Most of these, however,
-are fairly C-like in their programming style, and fail to take
-advantage of the full power of the C++ language as it has matured
-since the acceptance of the Standard in 1996. What libpqxx brings you
-is effective use of templates to reduce the inconvenience of dealing
-with type conversions; of standard C++ strings to keep you from having
-to worry about buffer allocation and overflow attacks; of exceptions
-to take the tedious and error-prone plumbing around error handling out
-of your hands; of constructors and destructors to bring resource
-management under control; and even basic object-orientation to give
-you some extra reliability features that would be hard to get with
-most other database interfaces.
-
-WWW: http://pqxx.org/
diff --git a/databases/postgresql-libpqxx3/pkg-plist b/databases/postgresql-libpqxx3/pkg-plist
deleted file mode 100644
index d247e39fb75e..000000000000
--- a/databases/postgresql-libpqxx3/pkg-plist
+++ /dev/null
@@ -1,83 +0,0 @@
-bin/pqxx-config
-include/pqxx/all.h
-include/pqxx/basic_connection
-include/pqxx/basic_connection.hxx
-include/pqxx/binarystring
-include/pqxx/binarystring.hxx
-include/pqxx/cachedresult.h
-include/pqxx/compiler-internal-post.hxx
-include/pqxx/compiler-internal-pre.hxx
-include/pqxx/compiler-public.hxx
-include/pqxx/config-public-compiler.h
-include/pqxx/connection
-include/pqxx/connection.h
-include/pqxx/connection.hxx
-include/pqxx/connection_base
-include/pqxx/connection_base.h
-include/pqxx/connection_base.hxx
-include/pqxx/connectionitf.h
-include/pqxx/connectionpolicy
-include/pqxx/connectionpolicy.hxx
-include/pqxx/cursor
-include/pqxx/cursor.h
-include/pqxx/cursor.hxx
-include/pqxx/dbtransaction
-include/pqxx/dbtransaction.h
-include/pqxx/dbtransaction.hxx
-include/pqxx/except
-include/pqxx/except.h
-include/pqxx/except.hxx
-include/pqxx/isolation
-include/pqxx/isolation.h
-include/pqxx/isolation.hxx
-include/pqxx/largeobject
-include/pqxx/largeobject.h
-include/pqxx/largeobject.hxx
-include/pqxx/libpq-forward.hxx
-include/pqxx/nontransaction
-include/pqxx/nontransaction.h
-include/pqxx/nontransaction.hxx
-include/pqxx/pipeline
-include/pqxx/pipeline.hxx
-include/pqxx/pqxx
-include/pqxx/prepared_statement
-include/pqxx/prepared_statement.hxx
-include/pqxx/result
-include/pqxx/result.h
-include/pqxx/result.hxx
-include/pqxx/robusttransaction
-include/pqxx/robusttransaction.h
-include/pqxx/robusttransaction.hxx
-include/pqxx/subtransaction
-include/pqxx/subtransaction.hxx
-include/pqxx/tablereader
-include/pqxx/tablereader.h
-include/pqxx/tablereader.hxx
-include/pqxx/tablestream
-include/pqxx/tablestream.h
-include/pqxx/tablestream.hxx
-include/pqxx/tablewriter
-include/pqxx/tablewriter.h
-include/pqxx/tablewriter.hxx
-include/pqxx/transaction
-include/pqxx/transaction.h
-include/pqxx/transaction.hxx
-include/pqxx/transaction_base
-include/pqxx/transaction_base.h
-include/pqxx/transaction_base.hxx
-include/pqxx/transactionitf.h
-include/pqxx/transactor
-include/pqxx/transactor.h
-include/pqxx/transactor.hxx
-include/pqxx/trigger
-include/pqxx/trigger.h
-include/pqxx/trigger.hxx
-include/pqxx/util
-include/pqxx/util.h
-include/pqxx/util.hxx
-lib/libpqxx-%%PORTVERSION%%.so
-lib/libpqxx.a
-lib/libpqxx.la
-lib/libpqxx.so
-libdata/pkgconfig/libpqxx.pc
-@dirrm include/pqxx