1 | # $Id: $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | name jhead |
---|
5 | version 2.0 |
---|
6 | categories graphics |
---|
7 | maintainers simon@cotsworth.com |
---|
8 | description Program for extracting Digicam setting information from Exif Jpeg headers. |
---|
9 | |
---|
10 | long_description jhead is used to display and manipulate data contained in \ |
---|
11 | the Exif header of jpeg images from digital cameras. By \ |
---|
12 | default, jhead displays the more useful camera settings \ |
---|
13 | from the file in a user friendly format. \ |
---|
14 | jhead can also be used to manipulate some aspects of the \ |
---|
15 | image relating to jpeg and Exif headers, such as changing \ |
---|
16 | the internal timestamps, removing the thumbnail, or \ |
---|
17 | transferring Exif headers back into edited images after \ |
---|
18 | graphical editors deleted the exif header. jhead can also \ |
---|
19 | be used to launch other programs, similar in style to \ |
---|
20 | the UNIX find command, but much simpler. |
---|
21 | |
---|
22 | homepage http://www.sentex.net/~mwandel/jhead/ |
---|
23 | master_sites http://www.sentex.net/~mwandel/jhead/ |
---|
24 | checksums md5 0fa7c878390b5019b017f3c5d087a35e |
---|
25 | |
---|
26 | configure {} |
---|
27 | |
---|
28 | build.target jhead |
---|
29 | |
---|
30 | destroot { system "install -m 755 -d ${destroot}${prefix}/bin" |
---|
31 | system "install -m 755 ${worksrcpath}/${portname} ${destroot}${prefix}/bin" |
---|
32 | system "install -m 755 -d ${destroot}${prefix}/doc/${portname}" |
---|
33 | system "install -m 644 ${worksrcpath}/*.html ${destroot}${prefix}/doc/${portname}" |
---|
34 | system "install -m 644 ${worksrcpath}/*.txt ${destroot}${prefix}/doc/${portname}" |
---|
35 | system "install -m 644 ${worksrcpath}/${portname}.1.gz ${destroot}${prefix}/man/man1" } |
---|