Ticket #994: Portfile

File Portfile, 1.5 KB (added by simon@…, 21 years ago)

Portfile

Line 
1# $Id: $
2
3PortSystem                      1.0
4name                            jhead
5version                         2.0
6categories                      graphics
7maintainers                     simon@cotsworth.com
8description                     Program for extracting Digicam setting information from Exif Jpeg headers.
9
10long_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
22homepage                        http://www.sentex.net/~mwandel/jhead/
23master_sites            http://www.sentex.net/~mwandel/jhead/
24checksums                       md5 0fa7c878390b5019b017f3c5d087a35e
25
26configure                       {}
27
28build.target            jhead
29
30destroot        { 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" }