graphics/bsd-plotutils: Fix manual page
The man page for plot(1) indicates that a space is required between "-T" and "terminal", this is not the case as it stands. No space is allowed. i.e.: "-Tdumb" is correct "-T dumb" is not. PR: 281715 Approved by: maintainer timeout (8+ months)
This commit is contained in:
committed by
Zsolt Udvari
parent
9beb30c476
commit
8511d4fa57
@@ -1,6 +1,6 @@
|
||||
PORTNAME= bsd-plotutils
|
||||
DISTVERSION= 1.4.2
|
||||
PORTREVISION= 3
|
||||
PORTREVISION= 4
|
||||
CATEGORIES= graphics
|
||||
|
||||
MAINTAINER= toranktto@gmail.com
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
--- plot/plot.1.orig 2019-02-09 03:42:21 UTC
|
||||
+++ plot/plot.1
|
||||
@@ -13,7 +13,7 @@
|
||||
.Sh SYNOPSIS
|
||||
.Nm plot
|
||||
.Oo
|
||||
-.Op Fl T Ar terminal
|
||||
+.Op Fl T Ns Ar terminal
|
||||
.Oo
|
||||
.Ar
|
||||
.Sh DESCRIPTION
|
||||
@@ -0,0 +1,11 @@
|
||||
--- plot/plot.sh.orig 2019-02-09 03:42:21 UTC
|
||||
+++ plot/plot.sh
|
||||
@@ -3,6 +3,8 @@ case $1 in
|
||||
PATH=/bin:/usr/bin:/usr/local/bin:/usr/local/libexec:/usr/libexec
|
||||
|
||||
case $1 in
|
||||
+-T) t=-T$2
|
||||
+ shift; shift;;
|
||||
-T*) t=$1
|
||||
shift ;;
|
||||
*) t=-T$TERM
|
||||
Reference in New Issue
Block a user