mirror of
https://git.freebsd.org/ports.git
synced 2025-05-31 02:16:27 -04:00
New port: pgagent
pgAgent is a job scheduler for PostgreSQL which may be managed using pgAdmin.
This commit is contained in:
parent
c1656d2ed8
commit
670bb4f713
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=298733
6 changed files with 57 additions and 0 deletions
|
@ -531,6 +531,7 @@
|
|||
SUBDIR += pg_rman
|
||||
SUBDIR += pgaccess
|
||||
SUBDIR += pgadmin3
|
||||
SUBDIR += pgagent
|
||||
SUBDIR += pgbouncer
|
||||
SUBDIR += pgdbf
|
||||
SUBDIR += pgfouine
|
||||
|
|
26
databases/pgagent/Makefile
Normal file
26
databases/pgagent/Makefile
Normal file
|
@ -0,0 +1,26 @@
|
|||
# New ports collection makefile for: pgagent
|
||||
# Date created: June 8, 2012
|
||||
# Whom: Max Khon
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= pgagent
|
||||
PORTVERSION= 3.2.1
|
||||
CATEGORIES= databases
|
||||
MASTER_SITES= ${MASTER_SITE_PGSQL}
|
||||
MASTER_SITE_SUBDIR= pgadmin3/release/pgagent
|
||||
DISTNAME= pgAgent-${PORTVERSION}-Source
|
||||
|
||||
MAINTAINER= fjoe@FreeBSD.org
|
||||
COMMENT= Job scheduler for PostgreSQL
|
||||
|
||||
MAKE_JOBS_SAFE= yes
|
||||
USE_CMAKE= yes
|
||||
CMAKE_ARGS= -DSTATIC_BUILD:BOOL=NO -DWX_CONFIG_PATH:FILEPATH="${WX_CONFIG}"
|
||||
USE_WX= 2.8
|
||||
WX_UNICODE= yes
|
||||
USE_PGSQL= yes
|
||||
IGNORE_WITH_PGSQL= 82 83
|
||||
|
||||
.include <bsd.port.mk>
|
2
databases/pgagent/distinfo
Normal file
2
databases/pgagent/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
|||
SHA256 (pgAgent-3.2.1-Source.tar.gz) = 7264bdc5d5609d36aab814e3b329e10a87c0699274412a979b27a711f983f365
|
||||
SIZE (pgAgent-3.2.1-Source.tar.gz) = 42722
|
19
databases/pgagent/files/patch-CMakeLists.txt
Normal file
19
databases/pgagent/files/patch-CMakeLists.txt
Normal file
|
@ -0,0 +1,19 @@
|
|||
--- CMakeLists.txt.orig 2012-04-18 18:16:55.000000000 +0700
|
||||
+++ CMakeLists.txt 2012-06-08 14:51:19.000000000 +0700
|
||||
@@ -133,12 +133,12 @@
|
||||
INSTALL(FILES ${pgagent_SOURCE_DIR}/pgagent_upgrade.sql DESTINATION .)
|
||||
ELSE(WIN32)
|
||||
INSTALL(TARGETS pgagent DESTINATION bin)
|
||||
- INSTALL(FILES ${pgagent_SOURCE_DIR}/pgagent.sql DESTINATION share)
|
||||
- INSTALL(FILES ${pgagent_SOURCE_DIR}/pgagent_upgrade.sql DESTINATION share)
|
||||
+ INSTALL(FILES ${pgagent_SOURCE_DIR}/pgagent.sql DESTINATION share/pgagent)
|
||||
+ INSTALL(FILES ${pgagent_SOURCE_DIR}/pgagent_upgrade.sql DESTINATION share/pgagent)
|
||||
ENDIF(WIN32)
|
||||
|
||||
-INSTALL(FILES ${pgagent_SOURCE_DIR}/README DESTINATION .)
|
||||
-INSTALL(FILES ${pgagent_SOURCE_DIR}/LICENSE DESTINATION .)
|
||||
+INSTALL(FILES ${pgagent_SOURCE_DIR}/README DESTINATION share/pgagent)
|
||||
+INSTALL(FILES ${pgagent_SOURCE_DIR}/LICENSE DESTINATION share/pgagent)
|
||||
|
||||
################################################################################
|
||||
# pgaevent
|
3
databases/pgagent/pkg-descr
Normal file
3
databases/pgagent/pkg-descr
Normal file
|
@ -0,0 +1,3 @@
|
|||
pgAgent is a job scheduler for PostgreSQL which may be managed using pgAdmin.
|
||||
|
||||
WWW: http://www.pgadmin.org/download/pgagent.php
|
6
databases/pgagent/pkg-plist
Normal file
6
databases/pgagent/pkg-plist
Normal file
|
@ -0,0 +1,6 @@
|
|||
bin/pgagent
|
||||
%%DATADIR%%/LICENSE
|
||||
%%DATADIR%%/README
|
||||
%%DATADIR%%/pgagent.sql
|
||||
%%DATADIR%%/pgagent_upgrade.sql
|
||||
@dirrm %%DATADIR%%
|
Loading…
Add table
Reference in a new issue