diff options
author | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2002-01-06 23:56:04 +0000 |
---|---|---|
committer | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2002-01-06 23:56:04 +0000 |
commit | 064df785531c0ae5fa5a0e8bdf67e69cbb3fa4f4 (patch) | |
tree | 84f6c1307c3f20fc68268fa4d068da73183565ea /misc/kenny/files/patch-kenny | |
parent | Increment PORTVERSION to 4.5, since distfile is (almost) ready (diff) |
o Remove incorporated patch
o Update to 1.7
PR: 33622
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=52674
Diffstat (limited to 'misc/kenny/files/patch-kenny')
-rw-r--r-- | misc/kenny/files/patch-kenny | 42 |
1 files changed, 0 insertions, 42 deletions
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; -+} - - - |