[Midnightbsd-cvs] mports [22154] trunk/databases: add postgres 9.6 contrib

laffer1 at midnightbsd.org laffer1 at midnightbsd.org
Sat Dec 24 18:07:56 EST 2016


Revision: 22154
          http://svnweb.midnightbsd.org/mports/?rev=22154
Author:   laffer1
Date:     2016-12-24 18:07:56 -0500 (Sat, 24 Dec 2016)
Log Message:
-----------
add postgres 9.6 contrib

Modified Paths:
--------------
    trunk/databases/Makefile

Added Paths:
-----------
    trunk/databases/postgresql96-contrib/
    trunk/databases/postgresql96-contrib/Makefile
    trunk/databases/postgresql96-contrib/pkg-descr

Modified: trunk/databases/Makefile
===================================================================
--- trunk/databases/Makefile	2016-12-24 23:04:02 UTC (rev 22153)
+++ trunk/databases/Makefile	2016-12-24 23:07:56 UTC (rev 22154)
@@ -134,6 +134,7 @@
 SUBDIR += postgresql95-pltcl
 SUBDIR += postgresql95-server
 SUBDIR += postgresql96-client
+SUBDIR += postgresql96-contrib
 SUBDIR += postgresql96-server
 SUBDIR += py-MySQLdb
 SUBDIR += py-bsddb

Added: trunk/databases/postgresql96-contrib/Makefile
===================================================================
--- trunk/databases/postgresql96-contrib/Makefile	                        (rev 0)
+++ trunk/databases/postgresql96-contrib/Makefile	2016-12-24 23:07:56 UTC (rev 22154)
@@ -0,0 +1,33 @@
+# Created by: Palle Girgensohn <girgen at pingpong.net>
+# $FreeBSD: head/databases/postgresql96-contrib/Makefile 421360 2016-09-05 11:15:29Z girgen $
+# $MidnightBSD$
+
+PORTNAME=	postgresql
+PORTREVISION=	0
+CATEGORIES=	databases
+
+MAINTAINER=	ports at MidnightBSD.org
+COMMENT=	The contrib utilities from the PostgreSQL distribution
+
+LIB_DEPENDS=	libxslt.so:${PORTSDIR}/textproc/libxslt \
+		libxml2.so:${PORTSDIR}/textproc/libxml2
+
+MASTERDIR=	${.CURDIR}/../postgresql96-server
+
+USES=		bison pgsql:9.6
+
+BUILD_DIRS=	src/port src/include src/common contrib
+INSTALL_DIRS=	contrib
+
+SLAVE_ONLY=	yes
+COMPONENT=	-contrib
+CONFIGURE_ARGS+=--with-libxslt --with-libxml --with-openssl --disable-nls --with-uuid=bsd
+LDFLAGS+=	-lpthread -L${PREFIX}/lib
+
+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"


Property changes on: trunk/databases/postgresql96-contrib/Makefile
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/databases/postgresql96-contrib/pkg-descr
===================================================================
--- trunk/databases/postgresql96-contrib/pkg-descr	                        (rev 0)
+++ trunk/databases/postgresql96-contrib/pkg-descr	2016-12-24 23:07:56 UTC (rev 22154)
@@ -0,0 +1,23 @@
+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: http://www.postgresql.org/


Property changes on: trunk/databases/postgresql96-contrib/pkg-descr
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property


More information about the Midnightbsd-cvs mailing list