summaryrefslogtreecommitdiff
path: root/sysutils/sformat
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2005-12-05 20:49:47 +0000
committerrillig <rillig@pkgsrc.org>2005-12-05 20:49:47 +0000
commitb71a1d488b6b45e0a968a4c149990c25b6a09215 (patch)
treedac5b1dd14794d86b061d26b9503adb2552ed3f8 /sysutils/sformat
parent624eed58928f83676fbd7ca01a5f6974bb2cce2a (diff)
downloadpkgsrc-b71a1d488b6b45e0a968a4c149990c25b6a09215.tar.gz
Fixed pkglint warnings. The warnings are mostly quoting issues, for
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some other changes are outlined in http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
Diffstat (limited to 'sysutils/sformat')
-rw-r--r--sysutils/sformat/DESCR15
-rw-r--r--sysutils/sformat/Makefile10
2 files changed, 13 insertions, 12 deletions
diff --git a/sysutils/sformat/DESCR b/sysutils/sformat/DESCR
index a04294f2e72..c7a6e97c3ed 100644
--- a/sysutils/sformat/DESCR
+++ b/sysutils/sformat/DESCR
@@ -1,10 +1,11 @@
Sformat is the best SCSI disk tool, I came across in the last 20 years.
It is able to repair and format nearly any disk, as long as its heads
-are still in working condition and a few percent of its blocks are writable.
-Once you have learned to use it, you will never think of using something else.
-Formating a disk with sformat does not only send a scsi-format command to the disk,
-but also make a detailed surface analysis after formating. The defect lists are
-updated, and you come out with a reliable disk, again. Thanks Joerg.
+are still in working condition and a few percent of its blocks are
+writable. Once you have learned to use it, you will never think of using
+something else. Formating a disk with sformat does not only send a
+scsi-format command to the disk, but also make a detailed surface
+analysis after formating. The defect lists are updated, and you come out
+with a reliable disk, again. Thanks Joerg.
-On the other side, like with any other powerful tool, you have to invest some time in learning.
-Well invested time.
+On the other side, like with any other powerful tool, you have to invest
+some time in learning. Well invested time.
diff --git a/sysutils/sformat/Makefile b/sysutils/sformat/Makefile
index eb8278ab6e5..af01b74ebc4 100644
--- a/sysutils/sformat/Makefile
+++ b/sysutils/sformat/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.4 2005/05/22 20:08:33 jlam Exp $
+# $NetBSD: Makefile,v 1.5 2005/12/05 20:51:01 rillig Exp $
#
DISTNAME= sformat-3.5
@@ -7,7 +7,7 @@ MASTER_SITES= ftp://ftp.berlios.de/pub/sformat/
MAINTAINER= Andreas.Hallmann@tiscali.de,tech-pkg@NetBSD.org
HOMEPAGE= http://freshmeat.net/projects/sformat
-COMMENT= SCSI-disk maintainance, formating, and ultimative repair tool with support for netbsd labels
+COMMENT= SCSI disk maintainance, formating, and ultimative repair tool with support for NetBSD labels
PKG_INSTALLATION_TYPES= overwrite pkgviews
@@ -19,9 +19,9 @@ TBL?= tbl
# avoid picking up a bad ${ARCH} during the build
MAKE_ENV+= ARCH=""
MAKE_ENV+= MAKEPROG="gmake"
-MAKE_ENV+= COPTX="${CFLAGS}"
-MAKE_ENV+= LDOPTX="${LDFLAGS}"
-MAKE_FLAGS+= INS_BASE="${LOCALBASE}" # won't work in MAKE_ENV!
+MAKE_ENV+= COPTX=${CFLAGS:M*:Q}
+MAKE_ENV+= LDOPTX=${LDFLAGS:M*:Q}
+MAKE_FLAGS+= INS_BASE=${LOCALBASE:Q} # won't work in MAKE_ENV!
# if we're using a gcc which is named gcc, we need to set CCOM=gcc
# in MAKE_ENV so the make infrastructure picks the right options.