Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 1 Nov 2012 22:52:25 +0000 (UTC)
From:      Dmitry Marakasov <amdmi3@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r306826 - in head/graphics: . exifprobe
Message-ID:  <201211012252.qA1MqPfF091818@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: amdmi3
Date: Thu Nov  1 22:52:24 2012
New Revision: 306826
URL: http://svn.freebsd.org/changeset/ports/306826

Log:
  Resurrect graphics/exifprobe, mirror distfiles.
  
  Exifprobe examines and reports the contents and structure of JPEG and
  TIFF image files. It will recognize all standard JPEG markers  (including
  APPn  markers) and will report the contents of any properly structured TIFF
  IFD encountered, even when entry tags  are  not  recognized. Recognized  TIFF
  and TIFF/EP tags are expanded, including  EXIF2.2 sections and camera MakerNotes
  which are found to be in TIFF  IFD  format. Location, size, and format of image
  data is reported by default.
  
  Feature safe:	yes

Added:
  head/graphics/exifprobe/
  head/graphics/exifprobe/Makefile   (contents, props changed)
  head/graphics/exifprobe/distinfo   (contents, props changed)
  head/graphics/exifprobe/pkg-descr   (contents, props changed)
Modified:
  head/graphics/Makefile

Modified: head/graphics/Makefile
==============================================================================
--- head/graphics/Makefile	Thu Nov  1 22:43:18 2012	(r306825)
+++ head/graphics/Makefile	Thu Nov  1 22:52:24 2012	(r306826)
@@ -182,6 +182,7 @@
     SUBDIR += evolvotron
     SUBDIR += exact-image
     SUBDIR += exif
+    SUBDIR += exifprobe
     SUBDIR += exiftags
     SUBDIR += exiftran
     SUBDIR += exiv2

Added: head/graphics/exifprobe/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/exifprobe/Makefile	Thu Nov  1 22:52:24 2012	(r306826)
@@ -0,0 +1,30 @@
+# New ports collection makefile for:	exifprobe
+# Date created:		2004-07-21
+# Whom:			Michael Johnson <ahze@ahze.net>
+#
+# $FreeBSD$
+#
+
+PORTNAME=	exifprobe
+DISTVERSION=	2.0.1
+CATEGORIES=	graphics
+MASTER_SITES=	http://mirror.amdmi3.ru/distfiles/
+
+MAINTAINER=	amdmi3@FreeBSD.org
+COMMENT=	Probes JPEG or TIFF images and reports contents and structure
+
+MAN1=		exifgrep.1 exifprobe.1
+PLIST_FILES=	bin/exifgrep bin/exifprobe
+
+post-patch:
+	@${REINPLACE_CMD} -e 's|cc|${CC}|; s|-DC|${CFLAGS} -DC|' \
+		${WRKSRC}/${MAKEFILE}
+
+do-install:
+	@${INSTALL_SCRIPT} ${WRKSRC}/exifgrep ${PREFIX}/bin
+	@${INSTALL_PROGRAM} ${WRKSRC}/exifprobe ${PREFIX}/bin
+.for i in ${MAN1}
+	@${INSTALL_MAN} ${WRKSRC}/${i} ${MANPREFIX}/man/man1
+.endfor
+
+.include <bsd.port.mk>

Added: head/graphics/exifprobe/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/exifprobe/distinfo	Thu Nov  1 22:52:24 2012	(r306826)
@@ -0,0 +1,2 @@
+SHA256 (exifprobe-2.0.1.tar.gz) = d84b118a4fff11ecd6c1ad4dfa7e4b45436175e1ea747438c4458d00e3baa7ad
+SIZE (exifprobe-2.0.1.tar.gz) = 261568

Added: head/graphics/exifprobe/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/exifprobe/pkg-descr	Thu Nov  1 22:52:24 2012	(r306826)
@@ -0,0 +1,9 @@
+[From exifprobe(1)]
+
+Exifprobe examines and reports the contents and structure of JPEG and
+TIFF image files. It will recognize all standard JPEG markers  (including
+APPn  markers) and will report the contents of any properly structured TIFF 
+IFD encountered, even when entry tags  are  not  recognized. Recognized  TIFF 
+and TIFF/EP tags are expanded, including  EXIF2.2 sections and camera MakerNotes
+which are found to be in TIFF  IFD  format. Location, size, and format of image
+data is reported by default.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201211012252.qA1MqPfF091818>