aboutsummaryrefslogtreecommitdiff
path: root/databases/pgpool-II-30
diff options
context:
space:
mode:
Diffstat (limited to 'databases/pgpool-II-30')
-rw-r--r--databases/pgpool-II-30/Makefile44
-rw-r--r--databases/pgpool-II-30/distinfo3
-rw-r--r--databases/pgpool-II-30/files/patch-pool_process_query.c18
-rw-r--r--databases/pgpool-II-30/files/pgpool.in36
-rw-r--r--databases/pgpool-II-30/pkg-descr10
-rw-r--r--databases/pgpool-II-30/pkg-plist21
6 files changed, 0 insertions, 132 deletions
diff --git a/databases/pgpool-II-30/Makefile b/databases/pgpool-II-30/Makefile
deleted file mode 100644
index 6b9d34312474..000000000000
--- a/databases/pgpool-II-30/Makefile
+++ /dev/null
@@ -1,44 +0,0 @@
-# New ports collection makefile for: pgpool
-# Date created: 2005-10-19
-# Whom: Choe, Cheng-Dae <whitekid@gmail.com>
-#
-# $FreeBSD$
-#
-
-PORTNAME= pgpool-II
-PORTVERSION= 1.0.2
-PORTREVISION= 1
-CATEGORIES= databases
-MASTER_SITES= http://pgfoundry.org/frs/download.php/1258/
-
-MAINTAINER= kuriyama@FreeBSD.org
-COMMENT= A connection pool server for PostgreSQL
-
-USE_GMAKE= yes
-GNU_CONFIGURE= yes
-USE_PGSQL= yes
-
-CONFLICTS= pgpool-3.*
-CONFIGURE_ARGS= --datadir=${DATADIR}
-USE_RC_SUBR= pgpool
-
-PORTDOCS= AUTHORS COPYING ChangeLog INSTALL NEWS README README.euc_jp
-PORTDOCS+= TODO
-PORTDOCShtml= pgpool-en.html pgpool-ja.html pgpool.css
-PORTDOCShtml+= tutorial-en.html tutorial-ja.html
-
-MAN8= pgpool.8
-
-post-install:
-.if !defined(NOPORTDOCS)
- @${MKDIR} ${DOCSDIR}
-.for f in ${PORTDOCS}
- ${INSTALL_MAN} ${WRKSRC}/$f ${DOCSDIR}
-.endfor
-.for f in ${PORTDOCShtml}
- ${INSTALL_MAN} ${WRKSRC}/doc/$f ${DOCSDIR}
-.endfor
-PORTDOCS+= ${PORTDOCShtml}
-.endif
-
-.include <bsd.port.mk>
diff --git a/databases/pgpool-II-30/distinfo b/databases/pgpool-II-30/distinfo
deleted file mode 100644
index 8df6088eb098..000000000000
--- a/databases/pgpool-II-30/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 (pgpool-II-1.0.2.tar.gz) = adf88e4b7eb7f3347740a6b54aa09e92
-SHA256 (pgpool-II-1.0.2.tar.gz) = d5d37cf388b5ddca5a4dedde5838dfb8fa84775d30b1d85d07e3163643ce58a6
-SIZE (pgpool-II-1.0.2.tar.gz) = 765193
diff --git a/databases/pgpool-II-30/files/patch-pool_process_query.c b/databases/pgpool-II-30/files/patch-pool_process_query.c
deleted file mode 100644
index 58943765d52f..000000000000
--- a/databases/pgpool-II-30/files/patch-pool_process_query.c
+++ /dev/null
@@ -1,18 +0,0 @@
---- pool_process_query.c.orig Mon Apr 16 12:08:40 2007
-+++ pool_process_query.c Mon Apr 16 12:09:54 2007
-@@ -3906,10 +3906,13 @@
- i, k, *kind);
- pool_send_error_message(frontend, MAJOR(backend), "XX000",
- "kind mismatch between backends", "",
-- "check data consistency between master and secondary", __FILE__, __LINE__);
-+ "check data consistency between master and other db node", __FILE__, __LINE__);
-
- if (pool_config->replication_stop_on_mismatch)
-- return POOL_FATAL;
-+ {
-+ notice_backend_error(i);
-+ child_exit(1);
-+ }
- else
- return POOL_ERROR;
- }
diff --git a/databases/pgpool-II-30/files/pgpool.in b/databases/pgpool-II-30/files/pgpool.in
deleted file mode 100644
index 012accf2b7f3..000000000000
--- a/databases/pgpool-II-30/files/pgpool.in
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/bin/sh
-#
-# $FreeBSD$
-#
-# PROVIDE: pgpool
-# REQUIRE: LOGIN
-# KEYWORD: shutdown
-#
-# Add the following lines to /etc/rc.conf.local or /etc/rc.conf
-# to enable this service:
-#
-# pgpool_enable (bool): Set to NO by default.
-# Set it to YES to enable pgpool.
-# pgpool_conf (file): Set location of your config.
-# Default is "%%PREFIX%%/etc/pgpool.conf"
-# pgpool_user (uid): User ID to run as (default nobody)
-#
-
-. %%RC_SUBR%%
-
-name=pgpool
-rcvar=${name}_enable
-
-load_rc_config $name
-
-: ${pgpool_enable="NO"}
-: ${pgpool_conf="%%PREFIX%%/etc/pgpool.conf"}
-: ${pgpool_user="nobody"}
-
-command="%%PREFIX%%/bin/pgpool"
-command_args="-f ${pgpool_conf}"
-stop_cmd="${command} ${command_args} stop"
-
-required_files="${pgpool_conf}"
-
-run_rc_command "$1"
diff --git a/databases/pgpool-II-30/pkg-descr b/databases/pgpool-II-30/pkg-descr
deleted file mode 100644
index ced45ee00351..000000000000
--- a/databases/pgpool-II-30/pkg-descr
+++ /dev/null
@@ -1,10 +0,0 @@
-pgpool-II allows multiple PostgreSQL servers (DB nodes) to be
-connected, which enables queries to be executed simultaneously on all
-servers.
-
-It enables "parallel query" processing. Also, pgpool-II can be started
-as pgpool-I by changing configuration parameters. pgpool-II that is
-executed in pgpool-I mode enables multiple DB nodes to be connected,
-which was not possible in pgpool-I.
-
-WWW: http://pgpool.projects.postgresql.org/pgpool-II/en/
diff --git a/databases/pgpool-II-30/pkg-plist b/databases/pgpool-II-30/pkg-plist
deleted file mode 100644
index 6212caf3a56f..000000000000
--- a/databases/pgpool-II-30/pkg-plist
+++ /dev/null
@@ -1,21 +0,0 @@
-@comment $FreeBSD$
-bin/pcp_attach_node
-bin/pcp_detach_node
-bin/pcp_node_count
-bin/pcp_node_info
-bin/pcp_proc_count
-bin/pcp_proc_info
-bin/pcp_stop_pgpool
-bin/pcp_systemdb_info
-bin/pg_md5
-bin/pgpool
-etc/pcp.conf.sample
-etc/pgpool.conf.sample
-include/pcp.h
-include/pool_type.h
-lib/libpcp.a
-lib/libpcp.la
-lib/libpcp.so
-lib/libpcp.so.0
-%%DATADIR%%/system_db.sql
-@dirrm %%DATADIR%%