summaryrefslogtreecommitdiff
path: root/misc/bogosort
diff options
context:
space:
mode:
authorPeter Pentchev <roam@FreeBSD.org>2002-09-06 22:01:14 +0000
committerPeter Pentchev <roam@FreeBSD.org>2002-09-06 22:01:14 +0000
commitf5cc1d4d52177200ff5ebd802899881789ea621c (patch)
tree71011dd310d9eac725f6947da31ff76563fcc2b8 /misc/bogosort
parentUpdate to 1.0b5 (diff)
Update to bogosort-0.4.1; Ulrik accepted my files/patch-bogosort.c fix,
thus rendering this patch superfluous.
Notes
Notes: svn path=/head/; revision=65744
Diffstat (limited to 'misc/bogosort')
-rw-r--r--misc/bogosort/Makefile2
-rw-r--r--misc/bogosort/distinfo2
-rw-r--r--misc/bogosort/files/patch-bogosort.c17
3 files changed, 2 insertions, 19 deletions
diff --git a/misc/bogosort/Makefile b/misc/bogosort/Makefile
index 3ee6f2eb7fe8..99ef13f26ff7 100644
--- a/misc/bogosort/Makefile
+++ b/misc/bogosort/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= bogosort
-PORTVERSION= 0.4.0
+PORTVERSION= 0.4.1
CATEGORIES= misc
MASTER_SITES= http://www.lysator.liu.se/~qha/bogosort/ \
ftp://l82.ryd.student.liu.se/pub/unix/bogosort/
diff --git a/misc/bogosort/distinfo b/misc/bogosort/distinfo
index 0b0a860b366d..5b45b9e0d575 100644
--- a/misc/bogosort/distinfo
+++ b/misc/bogosort/distinfo
@@ -1 +1 @@
-MD5 (bogosort/0.4.0/bogosort.tar.gz) = f8c15c10c7179e1c980bc440e7575717
+MD5 (bogosort/0.4.1/bogosort.tar.gz) = 2e4f4e4472eb7dfaa84328322ccd20dd
diff --git a/misc/bogosort/files/patch-bogosort.c b/misc/bogosort/files/patch-bogosort.c
deleted file mode 100644
index c200151429fc..000000000000
--- a/misc/bogosort/files/patch-bogosort.c
+++ /dev/null
@@ -1,17 +0,0 @@
---- bogosort.c 6 Sep 2002 08:46:36 -0000 1.1.1.3
-+++ bogosort.c 6 Sep 2002 08:50:10 -0000 1.3
-@@ -77,10 +77,11 @@
-
- /* The name the program was run with */
- /* stripped of any leading path. */
-- program_name = strrchr(argv[0], '/') + 1;
-+ program_name = strrchr(argv[0], '/');
- if (program_name == NULL)
-- program_name = argv[0];
--
-+ program_name = argv[0];
-+ else
-+ program_name++;
-
- nextarg = decode_switches(argc, argv);
-