Ticket #4256: Portfile

File Portfile, 1005 bytes (added by pierre@…, 19 years ago)

Portfile for sysvbanner-1.0-12

Line 
1# $Id: $
2
3PortSystem          1.0
4
5name                sysvbanner
6categories          sysutils textproc
7version             1.0-12
8platforms           darwin
9maintainers         pierre@queinnec.org
10description         System V banner clone
11long_description    \
12    Displays a banner text the same way as the System V banner does: horizontally.
13
14homepage            http://directory.fsf.org/text/doc/banner.html
15master_sites        http://ftp.debian.org/debian/pool/main/s/sysvbanner
16distfiles           ${name}_${version}.diff.gz
17checksums           md5 5cbcee01cb1da56136264acab4102f15
18worksrcdir          ${name}-1.0
19
20set diff_file       patch-sysvbanner.diff
21extract.post_args   > ${diff_file}
22use_configure       no
23patch {
24                    system "cd work && patch -p0 < ${diff_file}"
25}
26build.target        banner
27
28destroot {
29                    xinstall -W ${worksrcpath} -m 755 banner \
30                             ${destroot}/${prefix}/bin/${name}
31                    xinstall -W ${worksrcpath} -m 644 banner.1 \
32                             ${destroot}/${prefix}/share/man/man1/${name}.1
33}