Ticket #22974: Portfile

File Portfile, 1.4 KB (added by tim@…, 14 years ago)

add long_description; remove revision

Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
2# $Id$
3
4PortSystem         1.0
5
6name               stiff
7version            1.12
8categories         science
9platforms          darwin
10maintainers        saao.ac.za:tim
11
12description        STIFF is a program to convert FITS images to TIFF format.
13
14long_description   STIFF is a tool for converting FITS images to TIFF \
15    format in a visually appealing, but perceptually accurate, way. \
16    It is specifically designed to show faint detail in high-dynamic-range \
17    data while still retaining colour information for bright objects. \
18    It can create both 8-bit grayscale and 24-bit colour TIFF images.
19
20homepage           http://www.astromatic.net/software/stiff/
21platforms          darwin
22master_sites       ftp://ftp.iap.fr/pub/from_users/bertin/stiff/
23checksums          md5 fe93c7a172b122842ac7652e5cc6e70e \
24                   sha1 b78a2b3b0f0e1aefab1f47ac41b47fdf0bf9f073 \
25                   rmd160 e580abcbabb07bf7b39b41ed6fd7b1d50cb4239b
26
27post-destroot {
28    set docdir ${destroot}${prefix}/share/doc/${name}-${version}
29    xinstall -m 755 -d ${docdir}
30    eval xinstall -m 644 ${worksrcpath}/README ${worksrcpath}/AUTHORS \
31        ${worksrcpath}/COPYRIGHT ${worksrcpath}/ChangeLog ${worksrcpath}/BUGS \
32        ${worksrcpath}/HISTORY ${worksrcpath}/INSTALL ${worksrcpath}/THANKS \
33        [glob ${worksrcpath}/doc/*] ${docdir}
34}