Ticket #47837: exiv2.diff
File exiv2.diff, 2.0 KB (added by RJVB (René Bertin), 9 years ago) |
---|
-
graphics/exiv2/Portfile
old new 4 4 PortGroup cmake 1.0 5 5 6 6 name exiv2 7 version 0.24 7 version 0.24.3839 8 8 homepage http://www.exiv2.org/ 9 9 description EXIF and IPTC metadata manipulation library and tools 10 10 categories graphics … … 14 14 15 15 master_sites http://www.exiv2.org/ 16 16 17 checksums sha1 2f19538e54f8c21c180fa96d17677b7cff7dc1bb \ 18 rmd160 453247926e8626bf888578afd5a0dde42c6f6962 17 #checksums sha1 2f19538e54f8c21c180fa96d17677b7cff7dc1bb \ 18 # rmd160 453247926e8626bf888578afd5a0dde42c6f6962 19 20 fetch.type svn 21 depends_fetch-append port:subversion 22 svn.cmd ${prefix}/bin/svn 23 if {[file exists ${filespath}/${name}-svn/.svn]} { 24 svn.url ${filespath}/${name}-svn 25 distname ${name}-svn 26 } else { 27 svn.url svn://dev.exiv2.org/svn/trunk 28 distname trunk 29 } 30 svn.revision 3839 19 31 20 32 long_description Exiv2 comprises of a C++ library and a command line utility \ 21 33 which allows you to manipulate EXIF and IPTC image metadata. … … 23 35 depends_lib port:expat \ 24 36 port:gettext \ 25 37 port:libiconv \ 38 port:libssh \ 39 port:curl \ 26 40 port:zlib 27 41 42 cmake.out_of_source yes 43 configure.args-append -DEXIV2_ENABLE_WEBREADY:BOOL=ON 44 45 variant video description {include support for reading video file metadata} { 46 patchfiles-append patch-deactivate-QT-userdata.diff 47 configure.args-append -DEXIV2_ENABLE_VIDEO:BOOL=ON 48 } 49 default_variants +video 50 51 notes-append "Install ${name} without the +video variant (\"-video\") if you observe crashes when parsing video files\ 52 and please report on trac.macports.org" 53 28 54 post-destroot { 29 55 file mkdir ${destroot}${prefix}/share/man 30 56 system "ditto ${destroot}${prefix}/man ${destroot}${prefix}/share/man"