diff options
author | Tobias Kortkamp <tobik@FreeBSD.org> | 2019-02-02 18:09:39 +0800 |
---|---|---|
committer | Tobias Kortkamp <tobik@FreeBSD.org> | 2019-02-02 18:09:39 +0800 |
commit | 8a1b5c66b185a8618257075ff3d64d8afc6f63bb (patch) | |
tree | 45627785eb929cbc72a85efa5c8085ba248dd47b /graphics/dc20pack | |
parent | 9e9d08524aecec22b0b96b1173fb5a2d8f2b4f5b (diff) | |
download | freebsd-ports-gnome-8a1b5c66b185a8618257075ff3d64d8afc6f63bb.tar.gz freebsd-ports-gnome-8a1b5c66b185a8618257075ff3d64d8afc6f63bb.tar.zst freebsd-ports-gnome-8a1b5c66b185a8618257075ff3d64d8afc6f63bb.zip |
graphics/dc20pack: Use NO_WRKSUBDIR, MV and fix indentation
Diffstat (limited to 'graphics/dc20pack')
-rw-r--r-- | graphics/dc20pack/Makefile | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/graphics/dc20pack/Makefile b/graphics/dc20pack/Makefile index 018f0d4fc624..9fec9bd4c7eb 100644 --- a/graphics/dc20pack/Makefile +++ b/graphics/dc20pack/Makefile @@ -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: |