Ticket #2266: Portfile

File Portfile, 1.5 KB (added by shadow@…, 20 years ago)

portfile for ale

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