Date: Sat, 2 Feb 2019 10:09:39 +0000 (UTC) From: Tobias Kortkamp <tobik@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r491935 - head/graphics/dc20pack Message-ID: <201902021009.x12A9dw6005929@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tobik Date: Sat Feb 2 10:09:39 2019 New Revision: 491935 URL: https://svnweb.freebsd.org/changeset/ports/491935 Log: graphics/dc20pack: Use NO_WRKSUBDIR, MV and fix indentation Modified: head/graphics/dc20pack/Makefile Modified: head/graphics/dc20pack/Makefile ============================================================================== --- head/graphics/dc20pack/Makefile Sat Feb 2 09:52:33 2019 (r491934) +++ head/graphics/dc20pack/Makefile Sat Feb 2 10:09:39 2019 (r491935) @@ -1,21 +1,22 @@ # Created by: Maurice Castro <maurice@serc.rmit.edu.au> # $FreeBSD$ -PORTNAME= dc20pack -PORTVERSION= 1.0 -CATEGORIES= graphics -MASTER_SITES= SUNSITE/apps/graphics/capture +PORTNAME= dc20pack +PORTVERSION= 1.0 +CATEGORIES= graphics +MASTER_SITES= SUNSITE/apps/graphics/capture -MAINTAINER= maurice@castro.aus.net +MAINTAINER= maurice@castro.aus.net COMMENT= Digital camera control and download tool for Kodak DC20/25 camera -WRKSRC= ${WRKDIR} -USES= tar:tgz +USES= tar:tgz +NO_WRKSUBDIR= yes + post-extract: for file in `${FIND} ${WRKSRC} -type f`; do \ ${TR} -d '\015' < $${file} > $${file}.new; \ - mv $${file}.new $${file}; \ + ${MV} $${file}.new $${file}; \ done do-install:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201902021009.x12A9dw6005929>