Commits
David B. Evans authored 35fe06b5771
1 1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:filetype=tcl:et:sw=4:ts=4:sts=4 |
2 2 | |
3 3 | PortSystem 1.0 |
4 + | PortGroup github 1.0 |
4 5 | |
5 - | name libexif |
6 + | github.setup libexif libexif 0_6_21-release libexif- |
6 7 | version 0.6.21 |
7 8 | categories graphics |
8 9 | license LGPL-2+ |
9 10 | maintainers nomaintainer |
10 11 | description EXIF parsing library |
11 12 | |
12 13 | long_description Most digital cameras produce EXIF files, which are JPEG files \ |
13 14 | with extra tags that contain information about the image. The \ |
14 15 | EXIF library allows you to parse an EXIF file and read the \ |
15 16 | data from those tags. |
16 17 | |
17 - | homepage http://libexif.sourceforge.net/ |
18 18 | platforms darwin |
19 - | master_sites sourceforge:project/${name}/${name}/${version} |
20 - | use_bzip2 yes |
21 19 | |
22 - | checksums sha1 a52219b12dbc8d33fc096468591170fda71316c0 \ |
23 - | rmd160 979f06096b7271d8713c1766e0ad5dfabb06c531 |
20 + | checksums rmd160 ba695586f061c06572149839a512d644a0a107f4 \ |
21 + | sha256 4786ef2e3f903ae64e1c7a7749cb7299718158128bbe2657f1a740b5bca2848a \ |
22 + | size 965391 |
24 23 | |
25 24 | depends_build port:pkgconfig |
26 25 | depends_lib port:gettext \ |
27 26 | port:libiconv |
28 27 | |
28 + | use_autoreconf yes |
29 + | autoreconf.args -fvi |
30 + | |
29 31 | configure.args --with-doc-dir=${prefix}/share/doc/${name}-${version} \ |
30 32 | --disable-docs |
31 33 | |
32 - | use_parallel_build yes |
33 - | |
34 34 | test.run yes |
35 35 | test.target check |
36 36 | |
37 37 | variant doc description {Install extra documentation} { |
38 38 | depends_build-append port:doxygen \ |
39 39 | path:bin/dot:graphviz |
40 40 | configure.args-delete --disable-docs |
41 41 | } |