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 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name stiff |
---|
7 | version 1.12 |
---|
8 | categories science |
---|
9 | platforms darwin |
---|
10 | maintainers saao.ac.za:tim |
---|
11 | |
---|
12 | description STIFF is a program to convert FITS images to TIFF format. |
---|
13 | |
---|
14 | long_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 | |
---|
20 | homepage http://www.astromatic.net/software/stiff/ |
---|
21 | platforms darwin |
---|
22 | master_sites ftp://ftp.iap.fr/pub/from_users/bertin/stiff/ |
---|
23 | checksums md5 fe93c7a172b122842ac7652e5cc6e70e \ |
---|
24 | sha1 b78a2b3b0f0e1aefab1f47ac41b47fdf0bf9f073 \ |
---|
25 | rmd160 e580abcbabb07bf7b39b41ed6fd7b1d50cb4239b |
---|
26 | |
---|
27 | post-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 | } |
---|