summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcus Alves Grando <mnag@FreeBSD.org>2005-11-03 12:42:48 +0000
committerMarcus Alves Grando <mnag@FreeBSD.org>2005-11-03 12:42:48 +0000
commit0598ae5c6551428d6621af660398377439267d22 (patch)
tree63817dca457a011f618f4beef2378db185b2f896
parent- Drop ineffective INSTALLS_SHLIB, set LD_RUN_PATH during compilation (diff)
pgpool is a connection pool server for PostgreSQL. pgpool runs between
PostgreSQL's clients(front ends) and servers(back ends). A PostgreSQL client can connect to pgpool as if it were a standard PostgreSQL server. pgpool caches the connection to PostgreSQL server to reduce the overhead to establish the connection to it. WWW: http://pgpool.projects.postgresql.org/ PR: 87701 Submitted by: Choe, Cheng-Dae <whitekid@gmail.com>
Notes
Notes: svn path=/head/; revision=147119
Diffstat (limited to '')
-rw-r--r--databases/Makefile1
-rw-r--r--databases/pgpool-II-22/Makefile29
-rw-r--r--databases/pgpool-II-22/distinfo2
-rw-r--r--databases/pgpool-II-22/pkg-descr8
-rw-r--r--databases/pgpool-II-22/pkg-plist3
-rw-r--r--databases/pgpool-II-23/Makefile29
-rw-r--r--databases/pgpool-II-23/distinfo2
-rw-r--r--databases/pgpool-II-23/pkg-descr8
-rw-r--r--databases/pgpool-II-23/pkg-plist3
-rw-r--r--databases/pgpool-II-30/Makefile29
-rw-r--r--databases/pgpool-II-30/distinfo2
-rw-r--r--databases/pgpool-II-30/pkg-descr8
-rw-r--r--databases/pgpool-II-30/pkg-plist3
-rw-r--r--databases/pgpool-II/Makefile29
-rw-r--r--databases/pgpool-II/distinfo2
-rw-r--r--databases/pgpool-II/pkg-descr8
-rw-r--r--databases/pgpool-II/pkg-plist3
-rw-r--r--databases/pgpool/Makefile29
-rw-r--r--databases/pgpool/distinfo2
-rw-r--r--databases/pgpool/pkg-descr8
-rw-r--r--databases/pgpool/pkg-plist3
21 files changed, 211 insertions, 0 deletions
diff --git a/databases/Makefile b/databases/Makefile
index c0dd40faba30..b655b2b8c265 100644
--- a/databases/Makefile
+++ b/databases/Makefile
@@ -263,6 +263,7 @@
SUBDIR += pgadmin3
SUBDIR += pgbash
SUBDIR += pgcluster
+ SUBDIR += pgpool
SUBDIR += pgworksheet
SUBDIR += php-sqlrelay
SUBDIR += php4-dba
diff --git a/databases/pgpool-II-22/Makefile b/databases/pgpool-II-22/Makefile
new file mode 100644
index 000000000000..bd9a3f78e1b9
--- /dev/null
+++ b/databases/pgpool-II-22/Makefile
@@ -0,0 +1,29 @@
+# New ports collection makefile for: pgpool
+# Date created: 2005-10-19
+# Whom: Choe, Cheng-Dae <whitekid@gmail.com>
+#
+# $FreeBSD$
+#
+
+PORTNAME= pgpool
+PORTVERSION= 2.6.3
+CATEGORIES= databases
+MASTER_SITES= http://pgfoundry.org/frs/download.php/426/
+
+MAINTAINER= whitekid@gmail.com
+COMMENT= A connection pool server for PostgreSQL
+
+USE_GMAKE= yes
+GNU_CONFIGURE= yes
+
+PORTDOCS= README AUTHORS COPYING ChangeLog INSTALL NEWS TODO README.euc_jp
+
+post-install:
+.if !defined(NOPORTDOCS)
+ ${MKDIR} ${DOCSDIR}
+.for f in ${PORTDOCS}
+ ${INSTALL_MAN} ${WRKSRC}/$f ${DOCSDIR}
+.endfor
+.endif
+
+.include <bsd.port.mk>
diff --git a/databases/pgpool-II-22/distinfo b/databases/pgpool-II-22/distinfo
new file mode 100644
index 000000000000..ba0ca149bbff
--- /dev/null
+++ b/databases/pgpool-II-22/distinfo
@@ -0,0 +1,2 @@
+MD5 (pgpool-2.6.3.tar.gz) = fb301c1f42f67357dd72c9a20042c2ba
+SIZE (pgpool-2.6.3.tar.gz) = 150829
diff --git a/databases/pgpool-II-22/pkg-descr b/databases/pgpool-II-22/pkg-descr
new file mode 100644
index 000000000000..a636d10f9948
--- /dev/null
+++ b/databases/pgpool-II-22/pkg-descr
@@ -0,0 +1,8 @@
+pgpool is a connection pool server for PostgreSQL. pgpool runs between
+PostgreSQL's clients(front ends) and servers(back ends). A PostgreSQL client can
+connect to pgpool as if it were a standard PostgreSQL server.
+
+pgpool caches the connection to PostgreSQL server to reduce the overhead to
+establish the connection to it.
+
+WWW: http://pgpool.projects.postgresql.org/
diff --git a/databases/pgpool-II-22/pkg-plist b/databases/pgpool-II-22/pkg-plist
new file mode 100644
index 000000000000..f9553ed2c290
--- /dev/null
+++ b/databases/pgpool-II-22/pkg-plist
@@ -0,0 +1,3 @@
+@comment $FreeBSD$
+bin/pgpool
+etc/pgpool.conf.sample
diff --git a/databases/pgpool-II-23/Makefile b/databases/pgpool-II-23/Makefile
new file mode 100644
index 000000000000..bd9a3f78e1b9
--- /dev/null
+++ b/databases/pgpool-II-23/Makefile
@@ -0,0 +1,29 @@
+# New ports collection makefile for: pgpool
+# Date created: 2005-10-19
+# Whom: Choe, Cheng-Dae <whitekid@gmail.com>
+#
+# $FreeBSD$
+#
+
+PORTNAME= pgpool
+PORTVERSION= 2.6.3
+CATEGORIES= databases
+MASTER_SITES= http://pgfoundry.org/frs/download.php/426/
+
+MAINTAINER= whitekid@gmail.com
+COMMENT= A connection pool server for PostgreSQL
+
+USE_GMAKE= yes
+GNU_CONFIGURE= yes
+
+PORTDOCS= README AUTHORS COPYING ChangeLog INSTALL NEWS TODO README.euc_jp
+
+post-install:
+.if !defined(NOPORTDOCS)
+ ${MKDIR} ${DOCSDIR}
+.for f in ${PORTDOCS}
+ ${INSTALL_MAN} ${WRKSRC}/$f ${DOCSDIR}
+.endfor
+.endif
+
+.include <bsd.port.mk>
diff --git a/databases/pgpool-II-23/distinfo b/databases/pgpool-II-23/distinfo
new file mode 100644
index 000000000000..ba0ca149bbff
--- /dev/null
+++ b/databases/pgpool-II-23/distinfo
@@ -0,0 +1,2 @@
+MD5 (pgpool-2.6.3.tar.gz) = fb301c1f42f67357dd72c9a20042c2ba
+SIZE (pgpool-2.6.3.tar.gz) = 150829
diff --git a/databases/pgpool-II-23/pkg-descr b/databases/pgpool-II-23/pkg-descr
new file mode 100644
index 000000000000..a636d10f9948
--- /dev/null
+++ b/databases/pgpool-II-23/pkg-descr
@@ -0,0 +1,8 @@
+pgpool is a connection pool server for PostgreSQL. pgpool runs between
+PostgreSQL's clients(front ends) and servers(back ends). A PostgreSQL client can
+connect to pgpool as if it were a standard PostgreSQL server.
+
+pgpool caches the connection to PostgreSQL server to reduce the overhead to
+establish the connection to it.
+
+WWW: http://pgpool.projects.postgresql.org/
diff --git a/databases/pgpool-II-23/pkg-plist b/databases/pgpool-II-23/pkg-plist
new file mode 100644
index 000000000000..f9553ed2c290
--- /dev/null
+++ b/databases/pgpool-II-23/pkg-plist
@@ -0,0 +1,3 @@
+@comment $FreeBSD$
+bin/pgpool
+etc/pgpool.conf.sample
diff --git a/databases/pgpool-II-30/Makefile b/databases/pgpool-II-30/Makefile
new file mode 100644
index 000000000000..bd9a3f78e1b9
--- /dev/null
+++ b/databases/pgpool-II-30/Makefile
@@ -0,0 +1,29 @@
+# New ports collection makefile for: pgpool
+# Date created: 2005-10-19
+# Whom: Choe, Cheng-Dae <whitekid@gmail.com>
+#
+# $FreeBSD$
+#
+
+PORTNAME= pgpool
+PORTVERSION= 2.6.3
+CATEGORIES= databases
+MASTER_SITES= http://pgfoundry.org/frs/download.php/426/
+
+MAINTAINER= whitekid@gmail.com
+COMMENT= A connection pool server for PostgreSQL
+
+USE_GMAKE= yes
+GNU_CONFIGURE= yes
+
+PORTDOCS= README AUTHORS COPYING ChangeLog INSTALL NEWS TODO README.euc_jp
+
+post-install:
+.if !defined(NOPORTDOCS)
+ ${MKDIR} ${DOCSDIR}
+.for f in ${PORTDOCS}
+ ${INSTALL_MAN} ${WRKSRC}/$f ${DOCSDIR}
+.endfor
+.endif
+
+.include <bsd.port.mk>
diff --git a/databases/pgpool-II-30/distinfo b/databases/pgpool-II-30/distinfo
new file mode 100644
index 000000000000..ba0ca149bbff
--- /dev/null
+++ b/databases/pgpool-II-30/distinfo
@@ -0,0 +1,2 @@
+MD5 (pgpool-2.6.3.tar.gz) = fb301c1f42f67357dd72c9a20042c2ba
+SIZE (pgpool-2.6.3.tar.gz) = 150829
diff --git a/databases/pgpool-II-30/pkg-descr b/databases/pgpool-II-30/pkg-descr
new file mode 100644
index 000000000000..a636d10f9948
--- /dev/null
+++ b/databases/pgpool-II-30/pkg-descr
@@ -0,0 +1,8 @@
+pgpool is a connection pool server for PostgreSQL. pgpool runs between
+PostgreSQL's clients(front ends) and servers(back ends). A PostgreSQL client can
+connect to pgpool as if it were a standard PostgreSQL server.
+
+pgpool caches the connection to PostgreSQL server to reduce the overhead to
+establish the connection to it.
+
+WWW: http://pgpool.projects.postgresql.org/
diff --git a/databases/pgpool-II-30/pkg-plist b/databases/pgpool-II-30/pkg-plist
new file mode 100644
index 000000000000..f9553ed2c290
--- /dev/null
+++ b/databases/pgpool-II-30/pkg-plist
@@ -0,0 +1,3 @@
+@comment $FreeBSD$
+bin/pgpool
+etc/pgpool.conf.sample
diff --git a/databases/pgpool-II/Makefile b/databases/pgpool-II/Makefile
new file mode 100644
index 000000000000..bd9a3f78e1b9
--- /dev/null
+++ b/databases/pgpool-II/Makefile
@@ -0,0 +1,29 @@
+# New ports collection makefile for: pgpool
+# Date created: 2005-10-19
+# Whom: Choe, Cheng-Dae <whitekid@gmail.com>
+#
+# $FreeBSD$
+#
+
+PORTNAME= pgpool
+PORTVERSION= 2.6.3
+CATEGORIES= databases
+MASTER_SITES= http://pgfoundry.org/frs/download.php/426/
+
+MAINTAINER= whitekid@gmail.com
+COMMENT= A connection pool server for PostgreSQL
+
+USE_GMAKE= yes
+GNU_CONFIGURE= yes
+
+PORTDOCS= README AUTHORS COPYING ChangeLog INSTALL NEWS TODO README.euc_jp
+
+post-install:
+.if !defined(NOPORTDOCS)
+ ${MKDIR} ${DOCSDIR}
+.for f in ${PORTDOCS}
+ ${INSTALL_MAN} ${WRKSRC}/$f ${DOCSDIR}
+.endfor
+.endif
+
+.include <bsd.port.mk>
diff --git a/databases/pgpool-II/distinfo b/databases/pgpool-II/distinfo
new file mode 100644
index 000000000000..ba0ca149bbff
--- /dev/null
+++ b/databases/pgpool-II/distinfo
@@ -0,0 +1,2 @@
+MD5 (pgpool-2.6.3.tar.gz) = fb301c1f42f67357dd72c9a20042c2ba
+SIZE (pgpool-2.6.3.tar.gz) = 150829
diff --git a/databases/pgpool-II/pkg-descr b/databases/pgpool-II/pkg-descr
new file mode 100644
index 000000000000..a636d10f9948
--- /dev/null
+++ b/databases/pgpool-II/pkg-descr
@@ -0,0 +1,8 @@
+pgpool is a connection pool server for PostgreSQL. pgpool runs between
+PostgreSQL's clients(front ends) and servers(back ends). A PostgreSQL client can
+connect to pgpool as if it were a standard PostgreSQL server.
+
+pgpool caches the connection to PostgreSQL server to reduce the overhead to
+establish the connection to it.
+
+WWW: http://pgpool.projects.postgresql.org/
diff --git a/databases/pgpool-II/pkg-plist b/databases/pgpool-II/pkg-plist
new file mode 100644
index 000000000000..f9553ed2c290
--- /dev/null
+++ b/databases/pgpool-II/pkg-plist
@@ -0,0 +1,3 @@
+@comment $FreeBSD$
+bin/pgpool
+etc/pgpool.conf.sample
diff --git a/databases/pgpool/Makefile b/databases/pgpool/Makefile
new file mode 100644
index 000000000000..bd9a3f78e1b9
--- /dev/null
+++ b/databases/pgpool/Makefile
@@ -0,0 +1,29 @@
+# New ports collection makefile for: pgpool
+# Date created: 2005-10-19
+# Whom: Choe, Cheng-Dae <whitekid@gmail.com>
+#
+# $FreeBSD$
+#
+
+PORTNAME= pgpool
+PORTVERSION= 2.6.3
+CATEGORIES= databases
+MASTER_SITES= http://pgfoundry.org/frs/download.php/426/
+
+MAINTAINER= whitekid@gmail.com
+COMMENT= A connection pool server for PostgreSQL
+
+USE_GMAKE= yes
+GNU_CONFIGURE= yes
+
+PORTDOCS= README AUTHORS COPYING ChangeLog INSTALL NEWS TODO README.euc_jp
+
+post-install:
+.if !defined(NOPORTDOCS)
+ ${MKDIR} ${DOCSDIR}
+.for f in ${PORTDOCS}
+ ${INSTALL_MAN} ${WRKSRC}/$f ${DOCSDIR}
+.endfor
+.endif
+
+.include <bsd.port.mk>
diff --git a/databases/pgpool/distinfo b/databases/pgpool/distinfo
new file mode 100644
index 000000000000..ba0ca149bbff
--- /dev/null
+++ b/databases/pgpool/distinfo
@@ -0,0 +1,2 @@
+MD5 (pgpool-2.6.3.tar.gz) = fb301c1f42f67357dd72c9a20042c2ba
+SIZE (pgpool-2.6.3.tar.gz) = 150829
diff --git a/databases/pgpool/pkg-descr b/databases/pgpool/pkg-descr
new file mode 100644
index 000000000000..a636d10f9948
--- /dev/null
+++ b/databases/pgpool/pkg-descr
@@ -0,0 +1,8 @@
+pgpool is a connection pool server for PostgreSQL. pgpool runs between
+PostgreSQL's clients(front ends) and servers(back ends). A PostgreSQL client can
+connect to pgpool as if it were a standard PostgreSQL server.
+
+pgpool caches the connection to PostgreSQL server to reduce the overhead to
+establish the connection to it.
+
+WWW: http://pgpool.projects.postgresql.org/
diff --git a/databases/pgpool/pkg-plist b/databases/pgpool/pkg-plist
new file mode 100644
index 000000000000..f9553ed2c290
--- /dev/null
+++ b/databases/pgpool/pkg-plist
@@ -0,0 +1,3 @@
+@comment $FreeBSD$
+bin/pgpool
+etc/pgpool.conf.sample