summaryrefslogtreecommitdiff
path: root/graphics/jhead/Makefile
diff options
context:
space:
mode:
authorveego <veego>2001-09-02 15:35:37 +0000
committerveego <veego>2001-09-02 15:35:37 +0000
commit167e6f655c9cbc36d4a727bf498f6c8f4bbf914b (patch)
treec84317a6c8d6879a3a3174a20a175d681e17b02c /graphics/jhead/Makefile
parenta0955589fd5f61160b812666510e0bdaa523a291 (diff)
downloadpkgsrc-167e6f655c9cbc36d4a727bf498f6c8f4bbf914b.tar.gz
Program for extracting Digicam setting information from Exif Jpeg headers
used by most Digital Cameras. Things the 'jhead' program can extract from an Exif file: - Integral low-res Exif thumbnail - Shutter speed - Camera F-stop number - Flash used (yes/no) - Focus distance (some digital cameras store this element - very interesting) - Focal length (most zoom cameras store their zoomed-to focal length) - Equivalent 35mm focal length (Calculated from focal length, CCD size, and CCD resolution) - Image resolution - Time and date picture was taken - Camera make and model
Diffstat (limited to 'graphics/jhead/Makefile')
-rw-r--r--graphics/jhead/Makefile27
1 files changed, 27 insertions, 0 deletions
diff --git a/graphics/jhead/Makefile b/graphics/jhead/Makefile
new file mode 100644
index 00000000000..600bc3dec5b
--- /dev/null
+++ b/graphics/jhead/Makefile
@@ -0,0 +1,27 @@
+# $NetBSD: Makefile,v 1.1.1.1 2001/09/02 15:35:37 veego Exp $
+#
+
+DISTNAME= jhead
+PKGNAME= jhead-1.3
+CATEGORIES= graphics
+MASTER_SITES= http://www.sentex.net/~mwandel/jhead/
+EXTRACT_SUFX= .zip
+
+MAINTAINER= veego@netbsd.org
+HOMEPAGE= http://www.sentex.net/~mwandel/jhead/
+COMMENT= Extract EXIF header from JPEG image
+
+DIST_SUBDIR= ${DISTNAME}
+NO_WRKSUBDIR= YES
+
+LIBS= -lm
+
+do-build:
+ cd ${WRKSRC} && ${CC} ${CFLAGS} ${LIBS} -o jhead jhead.c exif.c
+
+do-install:
+ ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/html/jhead
+ ${INSTALL_PROGRAM} ${WRKSRC}/jhead ${PREFIX}/bin
+ ${INSTALL_MAN} ${WRKSRC}/usage.html ${PREFIX}/share/doc/html/jhead
+
+.include "../../mk/bsd.pkg.mk"