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
30 lines
739 B
Makefile
30 lines
739 B
Makefile
# 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>
|