diff options
Diffstat (limited to 'databases/pgpool-II-37')
-rw-r--r-- | databases/pgpool-II-37/Makefile | 46 | ||||
-rw-r--r-- | databases/pgpool-II-37/distinfo | 3 | ||||
-rw-r--r-- | databases/pgpool-II-37/files/patch-src_auth_pool__hba.c | 11 | ||||
-rw-r--r-- | databases/pgpool-II-37/files/pgpool.in | 41 | ||||
-rw-r--r-- | databases/pgpool-II-37/pkg-descr | 6 | ||||
-rw-r--r-- | databases/pgpool-II-37/pkg-message | 15 | ||||
-rw-r--r-- | databases/pgpool-II-37/pkg-plist | 33 |
7 files changed, 0 insertions, 155 deletions
diff --git a/databases/pgpool-II-37/Makefile b/databases/pgpool-II-37/Makefile deleted file mode 100644 index 2d2aef108994..000000000000 --- a/databases/pgpool-II-37/Makefile +++ /dev/null @@ -1,46 +0,0 @@ -PORTNAME= pgpool-II -PORTVERSION= 3.7.25 -CATEGORIES= databases -MASTER_SITES= http://www.pgpool.net/mediawiki/images/ -PKGNAMESUFFIX= 37 - -MAINTAINER= tz@FreeBSD.org -COMMENT= Connection pool server for PostgreSQL -WWW= https://pgpool.net/ - -LICENSE= MIT -LICENSE_FILE= ${WRKSRC}/COPYING - -DEPRECATED= Upstream EOL reaches on 2022-11 use pgpool-II-43 -EXPIRATION_DATE= 2022-12-30 - -USES= gmake libtool pgsql:9.6+ -USE_LDCONFIG= yes -USE_RC_SUBR= pgpool - -GNU_CONFIGURE= yes - -CONFLICTS_INSTALL= pgpool-II-[0-9][0-9] pgpool-II[0-9][0-9] # etc/pcp.conf.sample - -PORTSCOUT= limit:^3.7.[0-9]* - -PORTDOCS= * - -OPTIONS_DEFINE= DOCS SSL -OPTIONS_DEFAULT= SSL - -SSL_USES= ssl -SSL_CONFIGURE_WITH= openssl - -post-install: - @${MKDIR} ${STAGEDIR}/var/run/pgpool - ${INSTALL_LIB} ${WRKSRC}/src/libs/pcp/.libs/libpcp.so.1.0.0 ${STAGEDIR}${PREFIX}/lib - -post-install-DOCS-on: - @${MKDIR} ${STAGEDIR}${DOCSDIR} - cd ${WRKSRC} && ${COPYTREE_SHARE} doc ${STAGEDIR}${DOCSDIR} "-not -name Makefile.\*" -.for f in AUTHORS ChangeLog NEWS TODO - ${INSTALL_DATA} ${WRKSRC}/$f ${STAGEDIR}${DOCSDIR} -.endfor - -.include <bsd.port.mk> diff --git a/databases/pgpool-II-37/distinfo b/databases/pgpool-II-37/distinfo deleted file mode 100644 index 126b889aca2a..000000000000 --- a/databases/pgpool-II-37/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -TIMESTAMP = 1662311300 -SHA256 (pgpool-II-3.7.25.tar.gz) = 5d369c159cf35bfc621ac3c4a9fc474fc3e725a4c9de854eb2a12253c88b00dc -SIZE (pgpool-II-3.7.25.tar.gz) = 3491406 diff --git a/databases/pgpool-II-37/files/patch-src_auth_pool__hba.c b/databases/pgpool-II-37/files/patch-src_auth_pool__hba.c deleted file mode 100644 index 99d35e0be35f..000000000000 --- a/databases/pgpool-II-37/files/patch-src_auth_pool__hba.c +++ /dev/null @@ -1,11 +0,0 @@ ---- src/auth/pool_hba.c.orig 2018-04-11 05:37:54 UTC -+++ src/auth/pool_hba.c -@@ -29,6 +29,8 @@ - #include <string.h> - #include <errno.h> - #include <netdb.h> -+#include <arpa/inet.h> -+#include <netinet/in.h> - - #include "pool.h" - #include "auth/pool_hba.h" diff --git a/databases/pgpool-II-37/files/pgpool.in b/databases/pgpool-II-37/files/pgpool.in deleted file mode 100644 index ba398ac82068..000000000000 --- a/databases/pgpool-II-37/files/pgpool.in +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/sh - -# 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) -# pgpool_flags (string): Flags pass to the program -# Default is "" -# pgpool_stop_mode (string): Shutdown mode -# Default is "smart" -# Possibilities are "smart", "fast", or "immediate" -# - -. /etc/rc.subr - -name=pgpool -rcvar=pgpool_enable - -load_rc_config $name - -: ${pgpool_enable="NO"} -: ${pgpool_conf="%%PREFIX%%/etc/pgpool.conf"} -: ${pgpool_user="nobody"} -: ${pgpool_flags=""} -: ${pgpool_stop_mode="smart"} - -command="%%PREFIX%%/bin/pgpool" -command_args="-f ${pgpool_conf} ${pgpool_flags}" -stop_cmd="${command} -m ${pgpool_stop_mode} ${command_args} stop" - -required_files="${pgpool_conf}" - -run_rc_command "$1" diff --git a/databases/pgpool-II-37/pkg-descr b/databases/pgpool-II-37/pkg-descr deleted file mode 100644 index 59d385596b8e..000000000000 --- a/databases/pgpool-II-37/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -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. diff --git a/databases/pgpool-II-37/pkg-message b/databases/pgpool-II-37/pkg-message deleted file mode 100644 index 1df287cd433a..000000000000 --- a/databases/pgpool-II-37/pkg-message +++ /dev/null @@ -1,15 +0,0 @@ -[ -{ type: install - message: <<EOM -In order to start pgpool you need some more configuration: - -# sysrc -f /etc/rc.conf pgpool_enable="YES" -# sysrc -f /etc/rc.conf pgpool_user="root" - -Please consider the usage of another user. The user is -required to have read/write access to /var/run/pgpool. - -Using the root user is - as always - an security issue. -EOM -} -] diff --git a/databases/pgpool-II-37/pkg-plist b/databases/pgpool-II-37/pkg-plist deleted file mode 100644 index 458bffbe8b06..000000000000 --- a/databases/pgpool-II-37/pkg-plist +++ /dev/null @@ -1,33 +0,0 @@ -bin/pcp_attach_node -bin/pcp_detach_node -bin/pcp_node_count -bin/pcp_node_info -bin/pcp_pool_status -bin/pcp_proc_count -bin/pcp_proc_info -bin/pcp_promote_node -bin/pcp_recovery_node -bin/pcp_stop_pgpool -bin/pcp_watchdog_info -bin/pg_md5 -bin/pgpool -bin/pgpool_setup -bin/watchdog_setup -@sample etc/pcp.conf.sample -@sample etc/pgpool.conf.sample -etc/pgpool.conf.sample-logical -etc/pgpool.conf.sample-master-slave -etc/pgpool.conf.sample-replication -etc/pgpool.conf.sample-stream -@sample etc/pool_hba.conf.sample -include/libpcp_ext.h -include/pcp.h -include/pool_process_reporting.h -include/pool_type.h -lib/libpcp.a -lib/libpcp.so -lib/libpcp.so.1 -lib/libpcp.so.1.0.0 -%%DATADIR%%/insert_lock.sql -%%DATADIR%%/pgpool.pam -@dir /var/run/pgpool |