| 1 | # -*- 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 |
|---|
| 2 | # $Id$ |
|---|
| 3 | |
|---|
| 4 | PortSystem 1.0 |
|---|
| 5 | PortGroup python26 1.0 |
|---|
| 6 | |
|---|
| 7 | name bcfg2 |
|---|
| 8 | version 1.0.0 |
|---|
| 9 | categories sysutils python |
|---|
| 10 | maintainers ices.utexas.edu:solj |
|---|
| 11 | description Bcfg2 configuration management system |
|---|
| 12 | long_description Bcfg2 helps system administrators deploy complex \ |
|---|
| 13 | changes across large numbers of systems in a \ |
|---|
| 14 | coherent and transparent fashion. |
|---|
| 15 | |
|---|
| 16 | homepage http://www.bcfg2.org/ |
|---|
| 17 | platforms darwin |
|---|
| 18 | master_sites ftp://ftp.mcs.anl.gov/pub/bcfg |
|---|
| 19 | distname bcfg2-${version} |
|---|
| 20 | |
|---|
| 21 | checksums md5 2303fc4cb7b5e49034dd1f71f5ad5847 \ |
|---|
| 22 | sha1 592d94b5626200aa513f06b8ecc38a7ea021aa72 \ |
|---|
| 23 | rmd160 974b9973e9a4297fcc9c94ee93cd16d4957a0418 |
|---|
| 24 | |
|---|
| 25 | depends_lib port:python26 |
|---|
| 26 | |
|---|
| 27 | patchfiles patch-setup.py.diff |
|---|
| 28 | |
|---|
| 29 | post-destroot { |
|---|
| 30 | ln -s ${python.prefix}/bin/bcfg2 ${destroot}${prefix}/bin/bcfg2 |
|---|
| 31 | |
|---|
| 32 | set pyman ${python.prefix}/share/man/ |
|---|
| 33 | set manroot ${destroot}${prefix}/share/man/ |
|---|
| 34 | |
|---|
| 35 | xinstall -d ${manroot}/man5 |
|---|
| 36 | xinstall -d ${manroot}/man1 |
|---|
| 37 | ln -s ${pyman}man5/bcfg2.conf.5 ${manroot}/man5/ |
|---|
| 38 | ln -s ${pyman}/man1/bcfg2.1 ${manroot}/man1/ |
|---|
| 39 | } |
|---|