summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2013-02-27 09:15:15 +0000
committerMichael Palimaka <kensington@gentoo.org>2013-02-27 09:15:15 +0000
commita583d27f3678e1b1cd1a9289f2e4ada12823569c (patch)
tree0ee5b6f0ddf836832d26839036c411a239e52225 /app-emulation/uae
parentAdd DEPEND virtual/pkgconfig. (diff)
downloadgentoo-2-a583d27f3678e1b1cd1a9289f2e4ada12823569c.tar.gz
gentoo-2-a583d27f3678e1b1cd1a9289f2e4ada12823569c.tar.bz2
gentoo-2-a583d27f3678e1b1cd1a9289f2e4ada12823569c.zip
Remove unused file wrt bug #340731.
(Portage version: 2.1.11.52/cvs/Linux x86_64, signed Manifest commit with key 675D0D2C)
Diffstat (limited to 'app-emulation/uae')
-rw-r--r--app-emulation/uae/ChangeLog5
-rw-r--r--app-emulation/uae/files/split_cpuemu.pl32
2 files changed, 4 insertions, 33 deletions
diff --git a/app-emulation/uae/ChangeLog b/app-emulation/uae/ChangeLog
index 0699c98d65ab..8c6c7ea0152f 100644
--- a/app-emulation/uae/ChangeLog
+++ b/app-emulation/uae/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-emulation/uae
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/uae/ChangeLog,v 1.40 2013/02/16 12:23:31 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/uae/ChangeLog,v 1.41 2013/02/27 09:15:15 kensington Exp $
+
+ 27 Feb 2013; Michael Palimaka <kensington@gentoo.org> -files/split_cpuemu.pl:
+ Remove unused file wrt bug #340731.
16 Feb 2013; Pacho Ramos <pacho@gentoo.org>
-files/uae-0.8.25-close_window_hack.diff,
diff --git a/app-emulation/uae/files/split_cpuemu.pl b/app-emulation/uae/files/split_cpuemu.pl
deleted file mode 100644
index 0ddacecc6c87..000000000000
--- a/app-emulation/uae/files/split_cpuemu.pl
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/usr/bin/perl
-
-open(INPUT, "<cpuemu_6.c");
-open(OUT1, ">cpuemu_6.t");
-open(OUT2, ">cpuemu_7.c");
-
-$header = 1;
-$part = 0;
-
-while ($line = <INPUT>) {
-
- $size += length($line);
-
- if (($line =~ /^#/ || $line eq "\n") && ($line ne "#ifdef PART_1\n") && $header) {
- print OUT1 $line;
- print OUT2 $line;
- } else {
-
- $header = 0;
-
- if ($line ne "#ifdef PART_4\n" && $part == 0) {
- print OUT1 $line;
- } else {
- $part = 1;
- print OUT2 $line;
- }
- }
-}
-
-close(OUT2);
-close(OUT1);
-close(INPUT);