Update to sysgather-1.0pre6.
This commit is contained in:
parent
1be9019270
commit
18abb275df
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=155671
4 changed files with 4 additions and 68 deletions
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= sysgather
|
||||
PORTVERSION= 1.0.b5
|
||||
PORTVERSION= 1.0.b6
|
||||
CATEGORIES= sysutils
|
||||
MASTER_SITES= http://devel.ringlet.net/sysutils/sysgather/
|
||||
DISTNAME= ${PORTNAME}-${PORTVERSION:S/.b/pre/}
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
MD5 (sysgather-1.0pre5.tar.gz) = 59b4883be5237508b45f2651261eb869
|
||||
SHA256 (sysgather-1.0pre5.tar.gz) = 60d5c68b15646bd432fec0dcfaf63f543e3abd9fa9ed9a16ea5c85c7181a4e71
|
||||
SIZE (sysgather-1.0pre5.tar.gz) = 8777
|
||||
MD5 (sysgather-1.0pre6.tar.gz) = c0e7d058731e2cb33259b79395c9d43a
|
||||
SHA256 (sysgather-1.0pre6.tar.gz) = 7007486d2f3f774550cfc1194e02fa80778ba355a6b266aa81d9da1a6d89d445
|
||||
SIZE (sysgather-1.0pre6.tar.gz) = 11269
|
||||
|
|
|
@ -1,24 +0,0 @@
|
|||
Index: Makefile
|
||||
===================================================================
|
||||
--- Makefile (revision 217)
|
||||
+++ Makefile (revision 218)
|
||||
@@ -61,8 +61,10 @@
|
||||
SED?= sed
|
||||
CP?= cp
|
||||
TAR?= tar
|
||||
+PODCHECKER?= podchecker
|
||||
|
||||
TAR_CREATE?= -zcf
|
||||
+PODCHECKER_ARGS?= -w
|
||||
|
||||
VERSION_MAJ?= 1
|
||||
VERSION_MIN?= 0
|
||||
@@ -84,7 +86,7 @@
|
||||
perl -c ${PROG}
|
||||
|
||||
${MANPAGE}: ${PROG}
|
||||
- podchecker -w ${PROG}
|
||||
+ ${PODCHECKER} ${PODCHECKER_ARGS} ${PROG}
|
||||
pod2man --section=1 ${PROG} > ${MANPAGE} || ${RM} ${MANPAGE}
|
||||
|
||||
${REALCONF}: ${TESTCONF}
|
|
@ -1,40 +0,0 @@
|
|||
Index: sysgather.pl
|
||||
===================================================================
|
||||
--- sysgather.pl (revision 217)
|
||||
+++ sysgather.pl (revision 219)
|
||||
@@ -211,7 +211,7 @@
|
||||
die "No base directory $g->{basedir} for $pkg\n";
|
||||
}
|
||||
if (! -d $g->{'confdir'}) {
|
||||
- mkdir $g->{'confdir'} or
|
||||
+ mkdir $g->{'confdir'}, 0777 or
|
||||
die "Could not create $g->{confdir}: $!\n";
|
||||
}
|
||||
|
||||
@@ -269,7 +269,7 @@
|
||||
die "No source directory $g->{srcdir} for $pkg\n";
|
||||
}
|
||||
if (! -d $g->{'confdir'}) {
|
||||
- mkdir $g->{'confdir'} or
|
||||
+ mkdir $g->{'confdir'}, 0777 or
|
||||
die "Could not create $g->{confdir}: $!\n";
|
||||
}
|
||||
|
||||
@@ -325,7 +325,7 @@
|
||||
die "No base directory $g->{basedir} for $pkg\n";
|
||||
}
|
||||
if (! -d $g->{'confdir'}) {
|
||||
- mkdir $g->{'confdir'} or
|
||||
+ mkdir $g->{'confdir'}, 0777 or
|
||||
die "Could not create $g->{confdir}: $!\n";
|
||||
}
|
||||
|
||||
@@ -457,7 +457,7 @@
|
||||
die "No source directory $g->{srcdir} for $pkg\n";
|
||||
}
|
||||
if (! -d $g->{'confdir'}) {
|
||||
- mkdir $g->{'confdir'} or
|
||||
+ mkdir $g->{'confdir'}, 0777 or
|
||||
die "Could not create $g->{confdir}: $!\n";
|
||||
}
|
||||
|
Loading…
Reference in a new issue