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
33 lines
1.1 KiB
Plaintext
33 lines
1.1 KiB
Plaintext
PortSystem 1.0
|
|
|
|
name smtpproxy
|
|
version 1.3.3
|
|
categories mail
|
|
platforms darwin
|
|
license GPL-2
|
|
maintainers nomaintainer
|
|
description smtp.proxy is a proxy server for the SMTP protocol
|
|
long_description smtp.proxy is a proxy server for the SMTP protocol. It \
|
|
forwards traffic between a client and a server \
|
|
watching that the client fullfills the protocol \
|
|
specification. smtp.proxy needs either inetd or xinetd \
|
|
to work.
|
|
|
|
homepage http://quietsche-entchen.de/cgi-bin/wiki.cgi/software/smtp.proxy.yawk
|
|
master_sites http://quietsche-entchen.de/cgi-bin/wiki.cgi/download/ \
|
|
freebsd
|
|
checksums rmd160 2240436595f1325e94d9e329c2aaa1da772a7d0c \
|
|
sha256 9b9f4314777e06eb8d2ea120f8cb36f8dd1ef50f5574b63d5c584b5a741697b1
|
|
patchfiles patch-acp.c.diff
|
|
|
|
use_configure no
|
|
|
|
destroot {
|
|
xinstall -m 755 -s ${worksrcpath}/smtp.proxy ${destroot}${prefix}/sbin
|
|
xinstall -m 644 ${worksrcpath}/smtp.proxy.1 \
|
|
${destroot}${prefix}/share/man/man1
|
|
xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name}
|
|
xinstall -m 644 -W ${worksrcpath} LICENSE README rfc821.txt \
|
|
${destroot}${prefix}/share/doc/${name}
|
|
}
|