From owner-svn-ports-head@FreeBSD.ORG Sun Dec 14 17:59:54 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B4C38D06; Sun, 14 Dec 2014 17:59:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 87DFDAA0; Sun, 14 Dec 2014 17:59:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sBEHxsD0011366; Sun, 14 Dec 2014 17:59:54 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sBEHxswp011364; Sun, 14 Dec 2014 17:59:54 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201412141759.sBEHxswp011364@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Sun, 14 Dec 2014 17:59:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r374718 - head/databases/postgresql-repmgr X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Dec 2014 17:59:54 -0000 Author: matthew Date: Sun Dec 14 17:59:53 2014 New Revision: 374718 URL: https://svnweb.freebsd.org/changeset/ports/374718 QAT: https://qat.redports.org/buildarchive/r374718/ Log: Include postgresql loadable module and related sample SQL files into plist. PR: 195718 Submitted by: maintainer (5u623l20@gmail.com) Modified: head/databases/postgresql-repmgr/Makefile head/databases/postgresql-repmgr/pkg-plist Modified: head/databases/postgresql-repmgr/Makefile ============================================================================== --- head/databases/postgresql-repmgr/Makefile Sun Dec 14 17:56:14 2014 (r374717) +++ head/databases/postgresql-repmgr/Makefile Sun Dec 14 17:59:53 2014 (r374718) @@ -3,7 +3,7 @@ PORTNAME= postgresql-repmgr PORTVERSION= 2.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= databases MASTER_SITES= http://www.repmgr.org/download/ DISTNAME= repmgr-${PORTVERSION} @@ -30,5 +30,10 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/README.rst ${STAGEDIR}${DOCSDIR} @${MKDIR} ${STAGEDIR}${DATADIR} ${INSTALL_DATA} ${WRKSRC}/repmgr.sql ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/sql/repmgr_funcs.sql ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/sql/uninstall_repmgr_funcs.sql ${STAGEDIR}${DATADIR} + @${MKDIR} ${STAGEDIR}${PREFIX}/lib/postgresql + ${INSTALL_LIB} ${WRKSRC}/sql/repmgr_funcs.so ${STAGEDIR}${PREFIX}/lib/postgresql + .include Modified: head/databases/postgresql-repmgr/pkg-plist ============================================================================== --- head/databases/postgresql-repmgr/pkg-plist Sun Dec 14 17:56:14 2014 (r374717) +++ head/databases/postgresql-repmgr/pkg-plist Sun Dec 14 17:59:53 2014 (r374718) @@ -1,5 +1,8 @@ bin/repmgr @sample etc/repmgr.conf.sample sbin/repmgrd +lib/postgresql/repmgr_funcs.so %%PORTDOCS%%%%DOCSDIR%%/README.rst %%DATADIR%%/repmgr.sql +%%DATADIR%%/repmgr_funcs.sql +%%DATADIR%%/uninstall_repmgr_funcs.sql