From: <jh...@us...> - 2010-12-22 21:04:24
|
Revision: 242 http://etch.svn.sourceforge.net/etch/?rev=242&view=rev Author: jheiss Date: 2010-12-22 21:04:18 +0000 (Wed, 22 Dec 2010) Log Message: ----------- Move the MacPort's Portfile template to Portfile.template. Save the latest Portfile in svn so that we can easily diff against it, as the MacPorts guys have indicated that they prefer a diff to a whole file. Update the Rakefile to generate the Portfile from Portfile.template. Added Paths: ----------- trunk/client/Portfile Added: trunk/client/Portfile =================================================================== --- trunk/client/Portfile (rev 0) +++ trunk/client/Portfile 2010-12-22 21:04:18 UTC (rev 242) @@ -0,0 +1,41 @@ +# -*- 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 ruby 1.0 + +name etch +version 3.16.0 +categories sysutils +maintainers aput.net:jheiss openmaintainer + +description Etch is a system configuration management tool. + +long_description Etch is a tool for managing the configuration of \ + Unix systems. Etch can manage text or binary \ + files, links and directories. The contents of \ + files can be supplied from static files or \ + generated on the fly by scripts or templates. \ + Permissions and ownership as well as any pre or \ + post commands to run when updating the file are \ + configured in simple XML files. + +homepage http://etch.sourceforge.net/ +platforms darwin + +master_sites sourceforge + +checksums md5 5ee5d5aad12f4d5271ae8b676419948f \ + sha1 c1e4d4496e8edd9adf85d9893a5fc56935703946 \ + rmd160 5fd7d9e84e966a2031a30d4da49ab822bfca746c + +depends_build port:rb-rake +depends_run port:facter + +worksrcdir ${worksrcdir}/client +supported_archs noarch +use_configure no +build {} +destroot.cmd ${prefix}/bin/rake +destroot.target install\[${destroot}\] +destroot.destdir This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |