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 eye |
---|
7 | version 1.4.1 |
---|
8 | categories science |
---|
9 | platforms darwin |
---|
10 | maintainers saao.ac.za:tim |
---|
11 | license CeCILL |
---|
12 | |
---|
13 | description Eye stands for Enhance your Extraction: software \ |
---|
14 | for training SExtractor's retina. |
---|
15 | |
---|
16 | long_description The retina expands the possibility offered by \ |
---|
17 | traditional convolution (e.g. matched filtering) to \ |
---|
18 | the non-linear domain. \ |
---|
19 | A neural network, connected to pixels of a moving \ |
---|
20 | window (retina) in one or several input image(s), \ |
---|
21 | is trained to associate these stimuli to the corresponding response \ |
---|
22 | in one or several model image(s). The resulting filter can \ |
---|
23 | then be loaded in SExtractor to operate complex, wildly \ |
---|
24 | non-linear filters on astronomical images. Typical applications \ |
---|
25 | of this system include adaptive filtering, feature detection and \ |
---|
26 | cosmetic corrections. |
---|
27 | |
---|
28 | homepage http://www.astromatic.net/software/eye/ |
---|
29 | master_sites ftp://ftp.iap.fr/pub/from_users/bertin/eye/ |
---|
30 | checksums md5 6c8be5b9f1b233343d5b500c2073f58c \ |
---|
31 | sha1 73815581cb93c6c579f4a8c8de88f274890439e9 \ |
---|
32 | rmd160 886d85638f099276d393dd14c841efb41c06d50a |
---|
33 | |
---|
34 | post-destroot { |
---|
35 | set docdir ${destroot}${prefix}/share/doc |
---|
36 | xinstall -d ${docdir} |
---|
37 | copy ${worksrcpath}/doc ${docdir}/${name} |
---|
38 | xinstall -m 644 -W ${worksrcpath} \ |
---|
39 | README \ |
---|
40 | AUTHORS \ |
---|
41 | COPYRIGHT \ |
---|
42 | ChangeLog \ |
---|
43 | HISTORY \ |
---|
44 | THANKS \ |
---|
45 | ${docdir}/${name} |
---|
46 | } |
---|
47 | |
---|
48 | livecheck.type regex |
---|
49 | livecheck.url [lindex ${master_sites} 0] |
---|
50 | livecheck.regex ${name}-(\[0-9.\]+)\\.tar |
---|