Revision: 102494 https://trac.macports.org/changeset/102494 Author: sean@macports.org Date: 2013-02-04 09:12:01 -0800 (Mon, 04 Feb 2013) Log Message: ----------- ssh-copy-id: added new port that easily copies ssh keys in one command Added Paths: ----------- trunk/dports/devel/ssh-copy-id/ trunk/dports/devel/ssh-copy-id/Portfile Added: trunk/dports/devel/ssh-copy-id/Portfile =================================================================== --- trunk/dports/devel/ssh-copy-id/Portfile (rev 0) +++ trunk/dports/devel/ssh-copy-id/Portfile 2013-02-04 17:12:01 UTC (rev 102494) @@ -0,0 +1,27 @@ +# -*- 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 github 1.0 + +github.setup Zhann ssh-copy-id 406bdb7fc4c04fb8515188cb2ef5a6ff3a9b319a +version 0.1 +categories devel +platforms darwin +maintainers sean openmaintainer +supported_archs noarch + +description ssh-copy-id will copy your public key into the authorized_keys \ + file of your user on that remote system +long_description ${description} + +checksums rmd160 e8e410911114fa8a9836e8651b326bfa9ec74898 \ + sha256 20b37c3e5e5be9c312cd723bf7e02faef893f44a7904de429ad427ae23f70b32 + +use_configure no + +build {} + +destroot { + xinstall -m 755 ${worksrcpath}/${name} ${destroot}${prefix}/bin +}