mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
690ff0df0b
- sort pkg-plist with `make makeplist' Salt 2014.1.4 Release Notes =========================== - Fix setup.py dependency issue (:issue:`12031`) - Fix handling for IOErrors under certain circumstances (:issue:`11783` and :issue:`11853`) - Fix fatal exception when ``/proc/1/cgroup`` is not readable (:issue:`11619`) - Fix os grains for OpenSolaris (:issue:`11907`) - Fix ``lvs.zero`` module argument pass-through (:issue:`9001`) - Fix bug in ``debian_ip`` interaction with ``network.system`` state (:issue:`11164`) - Remove bad binary package verification code (:issue:`12177`) - Fix traceback in solaris package installation (:issue:`12237`) - Fix ``file.directory`` state symlink handling (:issue:`12209`) - Remove ``external_ip`` grain - Fix ``file.managed`` makedirs issues (:issue:`10446`) - Fix hang on non-existent Windows drive letter for ``file`` module (:issue:`9880`) - Fix salt minion caching all users on the server (:issue:`9743`) PR: ports/189377 Submitted by: Christer Edwards <christer.edwards@gmail.com> (maintainer)
68 lines
2.3 KiB
Makefile
68 lines
2.3 KiB
Makefile
# Created by: Christer Edwards <christer.edwards@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= salt
|
|
PORTVERSION= 2014.1.4
|
|
CATEGORIES= sysutils python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= christer.edwards@gmail.com
|
|
COMMENT= Distributed remote execution and configuration management system
|
|
|
|
LICENSE= APACHE20
|
|
|
|
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pyzmq>=2.1.9:${PORTSDIR}/net/py-pyzmq
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}yaml>0:${PORTSDIR}/devel/py-yaml \
|
|
${PYTHON_PKGNAMEPREFIX}pyzmq>=2.1.9:${PORTSDIR}/net/py-pyzmq \
|
|
${PYTHON_PKGNAMEPREFIX}pycrypto>0:${PORTSDIR}/security/py-pycrypto \
|
|
${PYTHON_PKGNAMEPREFIX}Jinja2>0:${PORTSDIR}/devel/py-Jinja2 \
|
|
${PYTHON_PKGNAMEPREFIX}msgpack>=0.1.9:${PORTSDIR}/devel/py-msgpack \
|
|
${PYTHON_PKGNAMEPREFIX}libcloud>=0.11.4:${PORTSDIR}/net/py-libcloud \
|
|
${PYTHON_PKGNAMEPREFIX}botocore>0:${PORTSDIR}/devel/py-botocore \
|
|
${PYTHON_PKGNAMEPREFIX}m2crypto>0:${PORTSDIR}/security/py-m2crypto \
|
|
sshpass>0:${PORTSDIR}/security/sshpass
|
|
|
|
USE_PYTHON= 2
|
|
USE_PYDISTUTILS=yes
|
|
|
|
PYDISTUTILS_INSTALLARGS+=\
|
|
--prefix=${PREFIX} \
|
|
--salt-root-dir=/ \
|
|
--salt-config-dir=${ETCDIR} \
|
|
--salt-cache-dir=/var/cache/salt \
|
|
--salt-sock-dir=/var/run/salt \
|
|
--salt-srv-root-dir=${ETCDIR} \
|
|
--salt-base-file-roots-dir=${ETCDIR}/states \
|
|
--salt-base-pillar-roots-dir=${ETCDIR}/pillar \
|
|
--salt-base-master-roots-dir=${ETCDIR}/salt-master \
|
|
--salt-logs-dir=/var/log/salt \
|
|
--salt-pidfile-dir=/var/run
|
|
|
|
USE_RC_SUBR= salt_master \
|
|
salt_minion \
|
|
salt_syndic
|
|
|
|
SUB_LIST+= PYTHON_CMD=${PYTHON_CMD}
|
|
|
|
SUB_FILES= pkg-message
|
|
|
|
post-patch:
|
|
.for file in conf/minion conf/master doc/man/salt-key.1 \
|
|
doc/man/salt-cp.1 doc/man/salt-minion.1 doc/man/salt-syndic.1 \
|
|
doc/man/salt-master.1 doc/man/salt-run.1 doc/man/salt.7 doc/man/salt.1 \
|
|
doc/man/salt-call.1 salt/config.py \
|
|
salt/modules/mysql.py salt/utils/parsers.py salt/modules/tls.py \
|
|
salt/modules/postgres.py salt/utils/migrations.py
|
|
@${REINPLACE_CMD} -e 's|/etc/salt|${ETCDIR}|' \
|
|
-e 's|/srv/salt|${ETCDIR}/states|' \
|
|
-e 's|/srv/pillar|${ETCDIR}/pillar|' ${WRKSRC}/${file}
|
|
.endfor
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${ETCDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/conf/master ${STAGEDIR}${ETCDIR}/master.sample
|
|
${INSTALL_DATA} ${WRKSRC}/conf/minion ${STAGEDIR}${ETCDIR}/minion.sample
|
|
|
|
.include <bsd.port.mk>
|