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
32 lines
955 B
Plaintext
32 lines
955 B
Plaintext
PortSystem 1.0
|
|
|
|
name airctl
|
|
version 0.7.3
|
|
categories net
|
|
license GPL-2+
|
|
platforms darwin
|
|
maintainers nomaintainer
|
|
description tool to trigger connection, get status of Airport Base Stations
|
|
long_description airctl is a commad-line utility to trigger connection \
|
|
and disconnection events on, and to print the status \
|
|
of an Apple AirPort Base Station. At the moment this \
|
|
is not a configuration utility.
|
|
|
|
homepage http://www.25thandclement.com/~william/projects/airctl.html
|
|
master_sites http://www.25thandclement.com/~william/projects/releases/
|
|
extract.suffix .tgz
|
|
checksums md5 2bd466ec56d1fb537ec47cbd4c2b6f9d
|
|
patchfiles patch-Makefile \
|
|
patch-airctl.c
|
|
|
|
use_configure no
|
|
|
|
build.target airctl
|
|
|
|
destroot {
|
|
xinstall -m 755 ${worksrcpath}/airctl ${destroot}${prefix}/bin
|
|
xinstall -d -m 755 ${destroot}${prefix}/share/doc/${name}
|
|
xinstall -m 644 -W ${worksrcpath} COPYING INSTALL \
|
|
${destroot}${prefix}/share/doc/${name}
|
|
}
|