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
27 lines
898 B
Plaintext
27 lines
898 B
Plaintext
PortSystem 1.0
|
|
|
|
name mdnsd
|
|
version 0.7G
|
|
revision 0
|
|
categories net
|
|
license {GPL BSD}
|
|
maintainers nomaintainer
|
|
description embeddable Multicast DNS Daemon
|
|
long_description \
|
|
mdnsd is a very lightweight, simple, portable, and easy to integrate \
|
|
open source implementation of Multicast DNS (part of Zeroconf, also \
|
|
called Rendezvous by Apple) for developers. It supports both acting \
|
|
as a Query and a Responder, allowing any software to participate \
|
|
fully on the .local network just by including a few files and \
|
|
calling a few functions.
|
|
homepage http://dotlocal.org/mdnsd/
|
|
platforms darwin
|
|
master_sites http://dotlocal.org/mdnsd/
|
|
checksums md5 3692107785567b0eff6cec979506da3b
|
|
use_configure no
|
|
destroot {
|
|
file mkdir ${destroot}${prefix}/bin
|
|
system "install -m 755 ${worksrcpath}/mhttp ${destroot}${prefix}/bin"
|
|
system "install -m 755 ${worksrcpath}/mquery ${destroot}${prefix}/bin"
|
|
}
|