diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2004-07-22 07:37:59 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2004-07-22 07:37:59 +0000 |
commit | fc7077556cbb08a1f9a6d96a344d487fe94eda8b (patch) | |
tree | 0bde9642dfda117173ca1b53a99c18bb70e6d94f /graphics/exifprobe/Makefile | |
parent | 881451e6615786cd6bda1bf067aafd75be11ba58 (diff) |
Notes
Diffstat (limited to 'graphics/exifprobe/Makefile')
-rw-r--r-- | graphics/exifprobe/Makefile | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/graphics/exifprobe/Makefile b/graphics/exifprobe/Makefile new file mode 100644 index 000000000000..11913f3151b4 --- /dev/null +++ b/graphics/exifprobe/Makefile @@ -0,0 +1,39 @@ +# New ports collection makefile for: exifprobe +# Date created: 2004-07-21 +# Whom: Michael Johnson <ahze@ahze.net> +# +# $FreeBSD$ +# + +PORTNAME= exifprobe +PORTVERSION= 1.2.4 +CATEGORIES= graphics +MASTER_SITES= http://www.monroe.net/~dhh/exifprobe.d/ + +MAINTAINER= ahze@ahze.net +COMMENT= Probes JPEG or TIFF images and reports contents and structure + +USE_REINPLACE= yes + +MAN1= exifgrep.1 exifprobe.1 +PORTDOCS= DESCRIPTION exifprobe-rman.html +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 +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} +.for i in ${PORTDOCS} + @${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} +.endfor +.endif + +.include <bsd.port.mk> |