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
767 B
Plaintext
27 lines
767 B
Plaintext
PortSystem 1.0
|
|
|
|
name pdi2iso
|
|
version 0.1
|
|
categories sysutils
|
|
license GPL-2+
|
|
platforms darwin
|
|
maintainers nomaintainer
|
|
description converts instant copy bin image to standard ISO-9660
|
|
long_description pdi2iso is a very simple utility to convert an instant \
|
|
copy bin image to the standard ISO-9660 format.
|
|
|
|
homepage https://developer.berlios.de/projects/pdi2iso/
|
|
master_sites http://download.berlios.de/pdi2iso/
|
|
distname ${distname}-src
|
|
checksums md5 32aba7602519c46588d7e771821840aa
|
|
use_bzip2 yes
|
|
|
|
use_configure no
|
|
|
|
destroot {
|
|
xinstall -m 755 ${worksrcpath}/pdi2iso ${destroot}${prefix}/bin
|
|
xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name}
|
|
xinstall -m 644 -W ${worksrcpath} CHANGELOG gpl.txt \
|
|
${destroot}${prefix}/share/doc/${name}
|
|
}
|