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 | |
parent | d7dfa874bd55ec13bd76d8f73d7febf408396bae (diff) | |
download | ports-064df785531c0ae5fa5a0e8bdf67e69cbb3fa4f4.tar.gz ports-064df785531c0ae5fa5a0e8bdf67e69cbb3fa4f4.zip |
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')
-rw-r--r-- | misc/kenny/Makefile | 3 | ||||
-rw-r--r-- | misc/kenny/distinfo | 2 | ||||
-rw-r--r-- | misc/kenny/files/patch-kenny | 42 |
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; -+} - - - |