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 weightwatcher |
---|
7 | version 1.8.10 |
---|
8 | revision 1 |
---|
9 | categories science |
---|
10 | platforms darwin |
---|
11 | maintainers saao.ac.za:tim |
---|
12 | |
---|
13 | description WeightWatcher is a program that combines weight-maps, \ |
---|
14 | flag-maps and polygon data in order to produce control maps which can \ |
---|
15 | directly be used in astronomical image-processing packages like Swarp or \ |
---|
16 | SExtractor. |
---|
17 | |
---|
18 | homepage http://www.astromatic.net/software/weightwatcher/ |
---|
19 | platforms darwin |
---|
20 | master_sites ftp://ftp.iap.fr/pub/from_users/bertin/weightwatcher/ |
---|
21 | checksums md5 ed49878bee90aaa2a46588b4312046d5 \ |
---|
22 | sha1 00c824fdc068299db04e48263558e1da223baeff \ |
---|
23 | rmd160 530b81d4b40354f85eb21bcd62b473457033ce4d |
---|
24 | |
---|
25 | post-destroot { |
---|
26 | set docdir ${destroot}${prefix}/share/doc/${name}-${version} |
---|
27 | xinstall -m 755 -d ${docdir} |
---|
28 | eval xinstall -m 644 ${worksrcpath}/README ${worksrcpath}/AUTHORS \ |
---|
29 | ${worksrcpath}/COPYRIGHT ${worksrcpath}/ChangeLog ${worksrcpath}/BUGS \ |
---|
30 | ${worksrcpath}/HISTORY ${worksrcpath}/INSTALL ${worksrcpath}/THANKS \ |
---|
31 | ${worksrcpath}/TODO [glob ${worksrcpath}/doc/*] ${docdir} |
---|
32 | } |
---|