Ticket #14573: Portfile

File Portfile, 1.4 KB (added by jcupitt (John Cupitt), 16 years ago)
Line 
1# $Id: Portfile 32285 2007-12-23 17:22:16Z ryandesign@macports.org $
2PortSystem 1.0
3name            vips
4version         7.14.1
5description     VIPS is an image processing library.
6long_description        VIPS is an image processing library. It's good for \
7                        large images and for colour.
8maintainers     nomaintainer
9categories      graphics
10platforms       darwin
11homepage        http://www.vips.ecs.soton.ac.uk
12master_sites    ${homepage}/supported/7.14/
13checksums       md5 4766b591d3970e07fb6135758d84b877
14
15depends_build   port:swig \
16                bin:perl:perl5.8 \
17                port:p5-xml-parser
18
19depends_lib     port:fftw-3 \
20                port:glib2 \
21                port:jpeg \
22                port:libpng \
23                port:tiff \
24                port:ImageMagick \
25                port:OpenEXR \
26                port:lcms \
27                port:zlib \
28                port:pango \
29                port:libexif \
30                port:liboil \
31                port:libxml2
32
33configure.args  --mandir=${prefix}/share/man
34
35# make sure we get the macports msgfmt
36configure.env   GMSGFMT="${prefix}/bin/msgfmt"
37 
38post-destroot   {
39        # we have to remove these because of clashes on non-case-sensitive FSes.
40        file delete -force ${destroot}${prefix}/share/doc/vips/html/man/IM_RINT.3.html
41        file delete -force ${destroot}${prefix}/share/doc/vips/html/man/IM_MIN.3.html
42        file delete -force ${destroot}${prefix}/share/doc/vips/html/man/IM_MAX.3.html
43
44        file delete -force ${destroot}${prefix}/share/man/man3/IM_RINT.3
45        file delete -force ${destroot}${prefix}/share/man/man3/IM_MIN.3
46        file delete -force ${destroot}${prefix}/share/man/man3/IM_MAX.3
47}