You've already forked macports-ports
mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
34b3070336
for pf in */*/Portfile
do
ed -s "$pf" <<-'EOF'
1,3g/^[[:space:]]*#[[:space:]]*\$Id.*\$[[:space:]]*$/d
1g/^[[:space:]]*$/d
w
q
EOF
done
30 lines
894 B
Plaintext
30 lines
894 B
Plaintext
PortSystem 1.0
|
|
|
|
name sbd
|
|
version 1.37
|
|
categories net security
|
|
license GPL-2+
|
|
platforms darwin
|
|
maintainers nomaintainer
|
|
description netcat clone supporting strong encryption.
|
|
long_description sbd is a netcat-clone, designed to be portable and offer \
|
|
strong encryption. It features AES-CBC-128 + HMAC-SHA1 \
|
|
encryption, program execution, choosing source port, \
|
|
continuous reconnection with delay, and other nice features.
|
|
|
|
homepage http://tigerteam.se/dl/sbd/
|
|
master_sites ${homepage} freebsd
|
|
checksums md5 fe633081eed1e5e7ac5936b32146f2ac \
|
|
sha1 4905e2ac3ab261987593ec94354a877a24fa4059
|
|
|
|
use_configure no
|
|
|
|
build.target unix
|
|
|
|
destroot {
|
|
xinstall -m 755 -s ${worksrcpath}/sbd ${destroot}${prefix}/bin
|
|
xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name}
|
|
xinstall -m 644 -W ${worksrcpath} CHANGES COPYING README \
|
|
${destroot}${prefix}/share/doc/${name}
|
|
}
|