mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-02 06:03:50 +00:00
41 lines
971 B
Makefile
41 lines
971 B
Makefile
# Created by: Mark Felder <feld@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pdagent
|
|
PORTVERSION= 1.4
|
|
DISTVERSIONPREFIX=v
|
|
CATEGORIES= net-mgmt python
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= feld@FreeBSD.org
|
|
COMMENT= PagerDuty Agent software
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
USES= python:2.7 shebangfix
|
|
SHEBANG_FILES= bin/*
|
|
NO_ARCH= yes
|
|
NO_BUILD= yes
|
|
|
|
USE_RC_SUBR= pdagentd
|
|
|
|
USE_GITHUB= YES
|
|
GH_ACCOUNT= PagerDuty
|
|
|
|
SUB_LIST+= PYTHON_CMD="${PYTHON_CMD}"
|
|
|
|
BINFILES= pd-queue pd-send pdagentd.py
|
|
|
|
do-patch:
|
|
${REINPLACE_CMD} -e 's|/var/lib/pdagent|/var/db/pdagent|' -e 's|/etc|${ETCDIR}|' ${WRKSRC}/pdagent/confdirs.py
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${PYTHON_SITELIBDIR} ${STAGEDIR}/${ETCDIR}
|
|
(cd ${WRKSRC} && ${COPYTREE_SHARE} pdagent ${STAGEDIR}${PYTHON_SITELIBDIR})
|
|
.for i in ${BINFILES}
|
|
${INSTALL_SCRIPT} ${WRKSRC}/bin/${i} ${STAGEDIR}/${PREFIX}/bin/${i}
|
|
.endfor
|
|
${INSTALL_DATA} ${WRKSRC}/conf/pdagent.conf ${STAGEDIR}/${ETCDIR}/pdagent.conf.sample
|
|
|
|
.include <bsd.port.mk>
|