Ports that build out of source now simply can use "USES=cmake" instead of "USES=cmake:outsource". Ports that fail to build out of source now need to specify "USES=cmake:insource". I tried to only set insource where explictely needed. PR: 232038 Exp-run by: antoine
26 lines
629 B
Makefile
26 lines
629 B
Makefile
# Created by: Max Khon
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pgagent
|
|
PORTVERSION= 3.4.0
|
|
PORTREVISION= 3
|
|
CATEGORIES= databases
|
|
MASTER_SITES= PGSQL/pgadmin3/release/pgagent
|
|
DISTNAME= pgAgent-${PORTVERSION}-Source
|
|
|
|
MAINTAINER= fjoe@FreeBSD.org
|
|
COMMENT= Job scheduler for PostgreSQL
|
|
|
|
USES= cmake:insource dos2unix pgsql
|
|
DOS2UNIX_GLOB= *.txt
|
|
CMAKE_ARGS= -DSTATIC_BUILD:BOOL=NO -DWX_CONFIG_PATH:FILEPATH="${WX_CONFIG}"
|
|
USE_WX= 2.8
|
|
|
|
PLIST_FILES= bin/pgagent \
|
|
share/postgresql/extension/pgagent--3.4.sql \
|
|
share/postgresql/extension/pgagent--unpackaged--3.4.sql \
|
|
share/postgresql/extension/pgagent.control
|
|
PORTDATA= *
|
|
|
|
.include <bsd.port.mk>
|