summaryrefslogtreecommitdiff
path: root/graphics/exifprobe
diff options
context:
space:
mode:
authordrochner <drochner@pkgsrc.org>2005-10-21 17:17:08 +0000
committerdrochner <drochner@pkgsrc.org>2005-10-21 17:17:08 +0000
commitb2d3c761d9c7e5bb458eca71df1ff7420143d6c2 (patch)
treec78fe112161986b76165548e38ccda513aa16cf7 /graphics/exifprobe
parent7eb593f13ade47f4854e058b6bb924f4b0d3928e (diff)
downloadpkgsrc-b2d3c761d9c7e5bb458eca71df1ff7420143d6c2.tar.gz
import exifprobe-2.0.1, another tool to scan EXIF data
Diffstat (limited to 'graphics/exifprobe')
-rw-r--r--graphics/exifprobe/DESCR7
-rw-r--r--graphics/exifprobe/Makefile12
-rw-r--r--graphics/exifprobe/PLIST5
-rw-r--r--graphics/exifprobe/distinfo6
-rw-r--r--graphics/exifprobe/patches/patch-aa16
5 files changed, 46 insertions, 0 deletions
diff --git a/graphics/exifprobe/DESCR b/graphics/exifprobe/DESCR
new file mode 100644
index 00000000000..88796a6e859
--- /dev/null
+++ b/graphics/exifprobe/DESCR
@@ -0,0 +1,7 @@
+Exifprobe reads image files produced by digital cameras (including
+several so-called "raw" file formats) and reports the structure of
+the files and the auxilliary data and metadata contained within them.
+In addition to TIFF, JPEG, and EXIF, the program understands several
+formats which may contain "raw" camera data, including MRW, CIFF/CRW,
+JP2/JPEG2000, RAF, and X3F, as well as most most TIFF-derived "raw"
+formats, including DNG, ORF, CR2, NEF, K25/KDC/DCR, and PEF.
diff --git a/graphics/exifprobe/Makefile b/graphics/exifprobe/Makefile
new file mode 100644
index 00000000000..b78f6267d8c
--- /dev/null
+++ b/graphics/exifprobe/Makefile
@@ -0,0 +1,12 @@
+# $NetBSD: Makefile,v 1.1.1.1 2005/10/21 17:17:08 drochner Exp $
+#
+
+DISTNAME= exifprobe-2.0.1
+CATEGORIES= graphics
+MASTER_SITES= http://www.virtual-cafe.com/~dhh/tools.d/exifprobe.d/
+
+MAINTAINER= tech-pkg@NetBSD.org
+HOMEPAGE= http://www.virtual-cafe.com/~dhh/tools.d/exifprobe.d/exifprobe.html
+COMMENT= EXIF data extractor
+
+.include "../../mk/bsd.pkg.mk"
diff --git a/graphics/exifprobe/PLIST b/graphics/exifprobe/PLIST
new file mode 100644
index 00000000000..577d5deb6eb
--- /dev/null
+++ b/graphics/exifprobe/PLIST
@@ -0,0 +1,5 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2005/10/21 17:17:08 drochner Exp $
+bin/exifgrep
+bin/exifprobe
+man/man1/exifgrep.1
+man/man1/exifprobe.1
diff --git a/graphics/exifprobe/distinfo b/graphics/exifprobe/distinfo
new file mode 100644
index 00000000000..990925a901f
--- /dev/null
+++ b/graphics/exifprobe/distinfo
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1.1.1 2005/10/21 17:17:08 drochner Exp $
+
+SHA1 (exifprobe-2.0.1.tar.gz) = 0910855c4060b3f706d8a455c388fe6690012c51
+RMD160 (exifprobe-2.0.1.tar.gz) = 8061819118ac34e542561813c8de025f6dcdf901
+Size (exifprobe-2.0.1.tar.gz) = 261568 bytes
+SHA1 (patch-aa) = 40e6d887505790de6d4e57c66298534e0e130fa3
diff --git a/graphics/exifprobe/patches/patch-aa b/graphics/exifprobe/patches/patch-aa
new file mode 100644
index 00000000000..c43b0fd127a
--- /dev/null
+++ b/graphics/exifprobe/patches/patch-aa
@@ -0,0 +1,16 @@
+$NetBSD: patch-aa,v 1.1.1.1 2005/10/21 17:17:08 drochner Exp $
+
+*** makebyteorder.sh.orig Wed Jul 27 12:31:35 2005
+--- makebyteorder.sh Wed Jul 27 12:33:58 2005
+***************
+*** 3,5 ****
+
+! if test -f /usr/include/machine/endian.h
+ then
+--- 3,8 ----
+
+! if test -f /usr/include/machine/endian_machdep.h
+! then
+! byteorder=`grep BYTE_ /usr/include/machine/endian_machdep.h`
+! elif test -f /usr/include/machine/endian.h
+ then