Commit 7b10329e authored by Rene Ladan's avatar Rene Ladan
Browse files

cleanup: Remove expired ports:

2022-03-11 databases/postgresql96-client: PostgreSQL-9.6 has reached end-of-life
2022-03-11 databases/postgresql96-contrib: PostgreSQL-9.6 has reached end-of-life
2022-03-11 databases/postgresql96-docs: PostgreSQL-9.6 has reached end-of-life
databases/postgresql96-pgtcl: part of expired PostgreSQL 9.6
2022-03-11 databases/postgresql96-plperl: PostgreSQL-9.6 has reached end-of-life
2022-03-11 databases/postgresql96-plpython: PostgreSQL-9.6 has reached end-of-life
2022-03-11 databases/postgresql96-pltcl: PostgreSQL-9.6 has reached end-of-life
2022-03-11 databases/postgresql96-server: PostgreSQL-9.6 has reached end-of-life
parent a4442935
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -16950,3 +16950,11 @@ textproc/xmlada||2022-02-28|Removed, depends on expired lang/gcc6-aux
x11-toolkits/gtkada||2022-02-28|Removed, depends on expired lang/gcc6-aux
x11-toolkits/gtkada3||2022-02-28|Removed, depends on expired lang/gcc6-aux
devel/py-zsm-lib|sysutils/zsm|2022-03-07|Remove obsoleted port. Use sysutils/zsm instead
databases/postgresql96-client||2022-03-11|Has expired: PostgreSQL-9.6 has reached end-of-life
databases/postgresql96-contrib||2022-03-11|Has expired: PostgreSQL-9.6 has reached end-of-life
databases/postgresql96-docs||2022-03-11|Has expired: PostgreSQL-9.6 has reached end-of-life
databases/postgresql96-pgtcl||2022-03-11|Removed, part of expired PostgresQL 9.6
databases/postgresql96-plperl||2022-03-11|Has expired: PostgreSQL-9.6 has reached end-of-life
databases/postgresql96-plpython||2022-03-11|Has expired: PostgreSQL-9.6 has reached end-of-life
databases/postgresql96-pltcl||2022-03-11|Has expired: PostgreSQL-9.6 has reached end-of-life
databases/postgresql96-server||2022-03-11|Has expired: PostgreSQL-9.6 has reached end-of-life
+0 −8
Original line number Diff line number Diff line
@@ -714,14 +714,6 @@
    SUBDIR += postgresql14-plpython
    SUBDIR += postgresql14-pltcl
    SUBDIR += postgresql14-server
    SUBDIR += postgresql96-client
    SUBDIR += postgresql96-contrib
    SUBDIR += postgresql96-docs
    SUBDIR += postgresql96-pgtcl
    SUBDIR += postgresql96-plperl
    SUBDIR += postgresql96-plpython
    SUBDIR += postgresql96-pltcl
    SUBDIR += postgresql96-server
    SUBDIR += powa-archivist
    SUBDIR += powa-web
    SUBDIR += powerarchitect
+0 −20
Original line number Diff line number Diff line
# Created by: Palle Girgensohn <girgen@FreeBSD.org>

PORTNAME=	postgresql
PORTREVISION=	0

COMMENT=	PostgreSQL database (client)

MASTERDIR=	${.CURDIR}/../postgresql96-server

BUILD_DIRS=	config src/include src/interfaces src/port \
		src/bin/pg_dump src/bin/psql src/bin/scripts src/bin/pg_config \
		src/bin/pgbench doc src/makefiles src/test/regress
INSTALL_DIRS=	${BUILD_DIRS}

CLIENT_ONLY=	yes
COMPONENT=	-client
USE_LDCONFIG=	yes
USES=		pkgconfig

.include "${MASTERDIR}/Makefile"
+0 −39
Original line number Diff line number Diff line
# Created by: Palle Girgensohn <girgen@pingpong.net>

PORTNAME=	postgresql
PORTREVISION=	0
CATEGORIES=	databases

MAINTAINER=	pgsql@FreeBSD.org
COMMENT=	The contrib utilities from the PostgreSQL distribution

MASTERDIR=	${.CURDIR}/../postgresql96-server

USES=		bison pgsql:9.6 ssl

BUILD_DIRS=	src/port src/include src/common contrib
INSTALL_DIRS=	contrib

# this port fails to build in parallel
MAKE_JOBS_UNSAFE=	yes

SLAVE_ONLY=	yes
COMPONENT=	-contrib
CONFIGURE_ARGS+=--with-openssl --disable-nls --with-uuid=bsd
LDFLAGS+=	-lpthread -L${PREFIX}/lib

OPTIONS_DEFINE=	DOCS XML
OPTIONS_DEFAULT=XML
OPTIONS_SUB=	yes

XML_LIB_DEPENDS=libxslt.so:textproc/libxslt \
		libxml2.so:textproc/libxml2
XML_CONFIGURE_WITH=	libxml libxslt

post-configure: 
		@cd ${WRKSRC}/src/backend && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} symlinks

post-install:
	@- ${INSTALL_DATA} ${WRKSRC}/contrib/README ${STAGEDIR}${DOCSDIR}/extension/README

.include "${MASTERDIR}/Makefile"
+0 −23
Original line number Diff line number Diff line
This is the port for all stuff that comes in the contrib subtree of
the postgresql distribution. This subtree contains porting tools,
analysis utilities, and plug-in features that are not part of the core
PostgreSQL system, mainly because they address a limited audience or
are too experimental to be part of the main source tree.  This does
not preclude their usefulness.

Each subdirectory contains a README file with information about the
module. Some directories supply new user-defined functions, operators,
or types.  After you have installed the files you need to register the
new entities in the database system by running the commands in the
supplied .sql file.  For example,

        $ psql -d dbname -f module.sql

The .sql files are installed into /usr/local/share/postgresql/contrib

For more information, please see
/usr/local/share/doc/postgresql/contrib/README*

This software is part of the standard PostgreSQL distribution.

WWW: https://www.postgresql.org/
Loading