mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
721b847e01
The goal of the pg_rman project is providing a method for online backup and PITR as easy as pg_dump. Also, it maintains a backup catalog per database cluster. Users can maintain old backups including archive logs with one command. WWW: http://code.google.com/p/pg-rman/ Feature safe: yes
28 lines
623 B
Makefile
28 lines
623 B
Makefile
# New ports collection makefile for: pg_rman
|
|
# Date created: 4 March 2010
|
|
# Whom: Jun Kuriyama <kuriyama@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= pg_rman
|
|
PORTVERSION= 1.1.2
|
|
CATEGORIES= databases
|
|
MASTER_SITES= http://pg-rman.googlecode.com/files/
|
|
|
|
MAINTAINER= kuriyama@FreeBSD.org
|
|
COMMENT= Online backup and restore tool for PostgreSQL
|
|
|
|
USE_GMAKE= yes
|
|
USE_PGSQL= YES
|
|
WANT_PGSQL_VER?=83
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
MAKE_ARGS= USE_PGXS=1
|
|
PLIST_FILES= bin/pg_rman
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/lib/libpgport.a:${PORTSDIR}/databases/postgresql${PGSQL_VER}-server
|
|
|
|
.include <bsd.port.post.mk>
|