blob: 4ad8c618e36884ecdc45ae77e59a0ba3a658ca3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
# $Id$
PortSystem 1.0
PortGroup python26 1.0
name bcfg2
license BSD
version 1.0.0
categories sysutils python
maintainers ices.utexas.edu:solj
description Bcfg2 configuration management system
long_description Bcfg2 helps system administrators deploy complex \
changes across large numbers of systems in a \
coherent and transparent fashion.
homepage http://www.bcfg2.org/
platforms darwin
master_sites ftp://ftp.mcs.anl.gov/pub/bcfg
checksums md5 2303fc4cb7b5e49034dd1f71f5ad5847 \
sha1 592d94b5626200aa513f06b8ecc38a7ea021aa72 \
rmd160 974b9973e9a4297fcc9c94ee93cd16d4957a0418
patchfiles patch-setup.py.diff
post-destroot {
ln -s ${python.prefix}/bin/bcfg2 ${destroot}${prefix}/bin/bcfg2
set pyman ${python.prefix}/share/man/
set manroot ${destroot}${prefix}/share/man/
xinstall -d ${manroot}/man5
xinstall -d ${manroot}/man1
ln -s ${pyman}man5/bcfg2.conf.5 ${manroot}/man5/
ln -s ${pyman}/man1/bcfg2.1 ${manroot}/man1/
}
|