mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
for pf in */*/Portfile
do
ed -s "$pf" <<-'EOF'
1,3g/^[[:space:]]*#[[:space:]]*\$Id.*\$[[:space:]]*$/d
1g/^[[:space:]]*$/d
w
q
EOF
done
24 lines
802 B
Plaintext
24 lines
802 B
Plaintext
PortSystem 1.0
|
|
|
|
name jerm
|
|
version 8095
|
|
revision 1
|
|
categories comms
|
|
license BSD
|
|
platforms darwin
|
|
maintainers nomaintainer
|
|
description communication terminal through serial and TCP/IP interfaces
|
|
long_description ${description}
|
|
homepage http://www.bsddiary.net/jerm/
|
|
master_sites ${homepage}
|
|
checksums md5 209f063c25c51e62116cf90836585c92
|
|
depends_lib port:tcp_wrappers
|
|
use_configure no
|
|
build.args JUPITER_FLAGS=
|
|
destroot {
|
|
xinstall -m 755 ${worksrcpath}/jerm ${destroot}${prefix}/bin
|
|
xinstall -m 644 ${worksrcpath}/jerm.1 ${destroot}${prefix}/share/man/man1
|
|
xinstall -d ${destroot}${prefix}/share/doc/${name}
|
|
xinstall -m 644 ${worksrcpath}/README ${destroot}${prefix}/share/doc/${name}
|
|
}
|