aboutsummaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorMario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>2002-01-06 23:56:04 +0000
committerMario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>2002-01-06 23:56:04 +0000
commit064df785531c0ae5fa5a0e8bdf67e69cbb3fa4f4 (patch)
tree84f6c1307c3f20fc68268fa4d068da73183565ea /misc
parentd7dfa874bd55ec13bd76d8f73d7febf408396bae (diff)
downloadports-064df785531c0ae5fa5a0e8bdf67e69cbb3fa4f4.tar.gz
ports-064df785531c0ae5fa5a0e8bdf67e69cbb3fa4f4.zip
Notes
Diffstat (limited to 'misc')
-rw-r--r--misc/kenny/Makefile3
-rw-r--r--misc/kenny/distinfo2
-rw-r--r--misc/kenny/files/patch-kenny42
3 files changed, 2 insertions, 45 deletions
diff --git a/misc/kenny/Makefile b/misc/kenny/Makefile
index 319948f9d6d2..47ea59a4e13c 100644
--- a/misc/kenny/Makefile
+++ b/misc/kenny/Makefile
@@ -8,8 +8,7 @@
#
PORTNAME= kenny
-PORTVERSION= 1.6
-PORTREVISION= 1
+PORTVERSION= 1.7
CATEGORIES= misc perl5
MASTER_SITES= http://www.h.shuttle.de/mitch/stuff/
DISTNAME= kenny.pl-${PORTVERSION}
diff --git a/misc/kenny/distinfo b/misc/kenny/distinfo
index ea00a6cb56a3..662937dbe7e1 100644
--- a/misc/kenny/distinfo
+++ b/misc/kenny/distinfo
@@ -1 +1 @@
-MD5 (kenny.pl-1.6.gz) = 49c51ed4a33cd475cb4add69acfc46bf
+MD5 (kenny.pl-1.7.gz) = 2205f33c7088bde718b7fbab32716814
diff --git a/misc/kenny/files/patch-kenny b/misc/kenny/files/patch-kenny
deleted file mode 100644
index 9e901f819cb7..000000000000
--- a/misc/kenny/files/patch-kenny
+++ /dev/null
@@ -1,42 +0,0 @@
---- kenny.orig Sat Jan 5 23:45:34 2002
-+++ kenny Sat Jan 5 23:45:34 2002
-@@ -149,6 +149,7 @@
- sub translate($);
- sub addGermanUmlauts($);
- sub printHelp();
-+sub theyKilledKenny();
-
-
-
-@@ -169,6 +170,15 @@
-
-
-
-+##### Install signal handlers
-+
-+$SIG{HUP} = \&theyKilledKenny;
-+$SIG{INT} = \&theyKilledKenny;
-+$SIG{QUIT} = \&theyKilledKenny;
-+$SIG{TERM} = \&theyKilledKenny;
-+
-+
-+
- ##### Parse commandline arguments
-
- # "-h" switch (print help):
-@@ -224,6 +234,15 @@
- ##### That's all, folks!
-
- exit 0;
-+
-+
-+##### Signal handler, if we're kill(1)ed
-+
-+sub theyKilledKenny()
-+{
-+ print "Oh my God! They killed Kenny! You bastards!\n";
-+ exit 0;
-+}
-
-
-