1 | # $Id: Portfile,v 1.2 2004/12/26 00:44:15 toby Exp $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | name ale |
---|
5 | version 0.8.0 |
---|
6 | |
---|
7 | description antilamenessing engine |
---|
8 | long_description ALE is a free software program that renders \ |
---|
9 | high-fidelity images of real scenes by aligning \ |
---|
10 | and combining many similar images from a camera \ |
---|
11 | or scanner. The correct similarity between images \ |
---|
12 | is roughly that achieved by a somewhat unsteady \ |
---|
13 | hand holding a camera. |
---|
14 | homepage http://auricle.dyndns.org/ALE/ |
---|
15 | platforms darwin |
---|
16 | categories graphics |
---|
17 | maintainers shadow@dementia.org |
---|
18 | master_sites http://auricle.dyndns.org/ALE/download/:ale \ |
---|
19 | http://auricle.dyndns.org/ALE/bugs/:alepatch |
---|
20 | distfiles ale-${version}.tar.gz:ale |
---|
21 | |
---|
22 | configure {} |
---|
23 | extract.only ale-${version}.tar.gz |
---|
24 | worksrcdir ale-${version} |
---|
25 | checksums ale-${version}.tar.gz md5 83e66e080e35ce99d332e9067ab5d19a |
---|
26 | |
---|
27 | depends_lib lib:Magick:ImageMagick |
---|
28 | |
---|
29 | build.args IMAGEMAGICK=1 |
---|
30 | |
---|
31 | destroot { |
---|
32 | xinstall -m 755 -d ${destroot}${prefix}/bin |
---|
33 | xinstall -s -m 755 ${worksrcpath}/ale ${destroot}${prefix}/bin/ |
---|
34 | xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} |
---|
35 | xinstall -m 644 -W ${worksrcpath} Changelog COPYING README \ |
---|
36 | ${destroot}${prefix}/share/doc/${name} |
---|
37 | } |
---|