Changes: -------Released version 3.0 -- Feb 2 2015 -------- Ma4 5 2015: Add option to set exif date from date from another file. Jul 28 2015: Remove some unnecessary warnings with some types of GPS data Aug 4 2015: Remove multiple copies of the same type of section when deleting section types Aug 11 2011: Bug fixes relating to fuzz testing. Aug 1 2017: Fix bug when no orientation tag is present Aug 12 2018: Fix bug of not clearing exif information when processing images with an without exif data in one invocation. -------Released version 3.02 -- Dec 11 2018 -------- Dec 21 2018: Fix bug where thumbnail replacement DID NOT WORK. (broke while fixing compiler warnings for 3.02 release) -------Released version 3.03 -- Dec 31 2018 --------
22 lines
642 B
Makefile
22 lines
642 B
Makefile
# $NetBSD: Makefile,v 1.35 2019/11/06 18:54:08 yhardy Exp $
|
|
|
|
DISTNAME= jhead-3.03
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://www.sentex.net/~mwandel/jhead/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.sentex.net/~mwandel/jhead/
|
|
COMMENT= Extract EXIF header from JPEG image
|
|
LICENSE= public-domain
|
|
|
|
MAKE_FILE= makefile
|
|
|
|
INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 share/doc/jhead
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/jhead ${DESTDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/jhead.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
|
|
${INSTALL_DATA} ${WRKSRC}/usage.html \
|
|
${DESTDIR}${PREFIX}/share/doc/jhead
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|