diff options
author | Peter Pentchev <roam@FreeBSD.org> | 2006-02-10 19:38:08 +0000 |
---|---|---|
committer | Peter Pentchev <roam@FreeBSD.org> | 2006-02-10 19:38:08 +0000 |
commit | 18abb275df15fc01daa41bf9fcb4289c89b49297 (patch) | |
tree | 48333571654ca79a9438ccba6e83033cc3946a80 /sysutils | |
parent | 1be90192701c30ff3e1e06bb0c9c39874e8141b2 (diff) | |
download | ports-18abb275df15fc01daa41bf9fcb4289c89b49297.tar.gz ports-18abb275df15fc01daa41bf9fcb4289c89b49297.zip |
Notes
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/sysgather/Makefile | 2 | ||||
-rw-r--r-- | sysutils/sysgather/distinfo | 6 | ||||
-rw-r--r-- | sysutils/sysgather/files/patch-Makefile | 24 | ||||
-rw-r--r-- | sysutils/sysgather/files/patch-sysgather.pl | 40 |
4 files changed, 4 insertions, 68 deletions
diff --git a/sysutils/sysgather/Makefile b/sysutils/sysgather/Makefile index 294d1e54c5b0..87d641efcaf4 100644 --- a/sysutils/sysgather/Makefile +++ b/sysutils/sysgather/Makefile @@ -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/} diff --git a/sysutils/sysgather/distinfo b/sysutils/sysgather/distinfo index d2b5946010d1..c5a525661944 100644 --- a/sysutils/sysgather/distinfo +++ b/sysutils/sysgather/distinfo @@ -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 diff --git a/sysutils/sysgather/files/patch-Makefile b/sysutils/sysgather/files/patch-Makefile deleted file mode 100644 index b7d68f5e7f37..000000000000 --- a/sysutils/sysgather/files/patch-Makefile +++ /dev/null @@ -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} diff --git a/sysutils/sysgather/files/patch-sysgather.pl b/sysutils/sysgather/files/patch-sysgather.pl deleted file mode 100644 index eb292e4f01b8..000000000000 --- a/sysutils/sysgather/files/patch-sysgather.pl +++ /dev/null @@ -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"; - } - |