mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
0b530eecbb
Dc20pack can control a Kodak DC20/25 digital camera via the embedded serial port. Pictures are initially downloaded in the camera's native format but can be converted to targa format. Note that I did not test this personally as I don't own a DC20/25 :). The submitter says that it works, though. PR: 12909 Submitted by: Maurice Castro <maurice@serc.rmit.edu.au>
28 lines
658 B
Makefile
28 lines
658 B
Makefile
# New ports collection makefile for: dc20pack
|
|
# Version required: 1.0
|
|
# Date created: Jul 31 1999
|
|
# Whom: Maurice Castro <maurice@serc.rmit.edu.au>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
DISTNAME= dc20pack-1.0
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= ${MASTER_SITE_SUNSITE}
|
|
MASTER_SITE_SUBDIR= apps/graphics/capture
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= maurice@serc.rmit.edu.au
|
|
|
|
WRKSRC= ${WRKDIR}
|
|
|
|
post-extract:
|
|
@ /usr/bin/find ${WRKSRC} -type f | xargs /usr/bin/perl -pi -e 's/\r//g'
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/dc20dump ${PREFIX}/bin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/dc20term ${PREFIX}/bin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/dc2totga ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|