mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
065c026fe5
PR: 204056 Submitted by: mat Reviewed by: bapt Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D2735
33 lines
817 B
Makefile
33 lines
817 B
Makefile
# Created by: KIRIYAMA Kazuhiko<kiri@pis.toba-cmt.ac.jp>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= fujiplay
|
|
PORTVERSION= 1.33
|
|
PORTREVISION= 1
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://topo.math.u-psud.fr/~bousch/
|
|
DISTNAME= ${PORTNAME}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Digital camera downloading tool for Fujifilm digital cameras
|
|
|
|
NO_WRKSUBDIR= yes
|
|
|
|
USES= tar:tgz
|
|
PLIST_FILES= bin/fujiplay bin/yycc2ppm
|
|
PORTDOCS= README fujiplay.lsm mx700-commands.html
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|^\(CC[^g]*\)gcc$$|\1${CC}|' ${WRKSRC}/Makefile
|
|
|
|
do-install:
|
|
(cd ${WRKSRC}; ${INSTALL_PROGRAM} fujiplay yycc2ppm ${STAGEDIR}${PREFIX}/bin)
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/share/doc/fujiplay
|
|
.for f in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${PREFIX}/share/doc/fujiplay
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|