svn commit: r491935 - head/graphics/dc20pack

Tobias Kortkamp tobik at FreeBSD.org
Sat Feb 2 10:09:40 UTC 2019


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 at 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 at castro.aus.net
+MAINTAINER=	maurice at 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:


More information about the svn-ports-all mailing list