This file is indexed.

/usr/share/doc/libperlmenu-perl/examples/create_menu.pl is in libperlmenu-perl 4.0-5.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#!/usr/local/bin/perl
#****************************************************************************
# create_menu.pl
#
# Function: Convert Perl5-style "perlmenu.pm" to Perl4-style "menu.pl"
#
# Version:  4.0
#
# Date:     February 1997
#
# Author:   Steven L. Kunz
#           Networked Applications
#           Iowa State University Computation Center
#           Ames, IA  50011
#****************************************************************************

  open(PM,"perlmenu.pm") || die "Cannot find perlmenu.pm here!\n";
  open(PL,">menu.pl") || die "Cannot open menu.pl here for output!\n";

  print "\nConverting perlmenu.pm to menu.pl ...";

  $flushing = 0;
  $found_name = 0;

  while (<PM>) {
    if (/^#%PERL5ONLY%/o) { $flushing = !$flushing; }
    elsif (!$flushing) {
      if (/^sub menu_/o) {	# Could be an external entry point ...
	($rtn_name,$rest) = /^sub (\S+) (.*)/o;
	if ($external_entry{$rtn_name}) { $_ = "sub main'$rtn_name $rest\n"; } 
      } elsif (!$found_name) {	# A small attempt at effeciency
	if (/^# perlmenu.pm/) {
	  $found_name = 1;
	  $_ = "# menu.pl -- Perl Menu Support Facility\n";
	}
      }

      # curseperl entry points are in "main"
      s/\&clear/\&main\'clear/;
      s/\&subwin/\&main\'subwin/;
      s/\&wmove/\&main\'wmove/;
      s/\&addstr/\&main\'addstr/;
      s/\&endwin/\&main\'endwin/;
      s/\&wgetch/\&main\'wgetch/;
      s/\&initscr/\&main\'initscr/;
      s/\&noecho/\&main\'noecho/;
      s/\&wdelch/\&main\'wdelch/;
      s/\&getch/\&main\'getch/;
      s/\&wclrtoeol/\&main\'wclrtoeol/;
      s/\&standend/\&main\'standend/;
      s/\&tigetstr/\&main\'tigetstr/;
      s/\&winsch/\&main\'winsch/;
      s/\&waddstr/\&main\'waddstr/;
      s/\&clrtoeol/\&main\'clrtoeol/;
      s/\&getcap/\&main\'getcap/;
      s/\&cbreak/\&main\'cbreak/;
      s/\&delwin/\&main\'delwin/;
      s/\&nocbreak/\&main\'nocbreak/;
      s/\&wrefresh/\&main\'wrefresh/;
      s/\&echo/\&main\'echo/;
      s/\&refresh/\&main\'refresh/;
      s/\&standout/\&main\'standout/;
      s/\&move/\&main\'move/;
      s/sub perlmenu::getcap/sub main::getcap/;

      # Certain perlmenu entry points are in "main", too
      if (!/^#/o) { # (Don't change the comments)
	s/\&menu_getstr/\&main\'menu_getstr/;
	s/\&menu_overlay_clear/\&main\'menu_overlay_clear/;
	s/\&menu_setexit/\&main\'menu_setexit/;
	s/\&menu_getexit/\&main\'menu_getexit/;
      }

      print PL $_;
    } elsif (/\@EXPORT/) {	# List of external entry points follows ...
      $collect = "";
      while (<PM>) {		# Collect all names
	last if !/menu_/;
	chop($_);
        $collect .= $_;
      }
      # Split names into hashed array for later.
      for (split(/\s+/, $collect)) { $external_entry{$_} = 1; }
    }
  }

  close(PM);
  close(PL);

  print "\nAll done.\n\n";
  print "You now have a \"menu.pl\" to use with Perl4/curseperl.\n";
  print "It can also be used for existing applications under Perl5,\n";
  print "however it would be BEST for covert them to \'use perlmenu;\'\n";
  print "rather than \'require \"menu.pl\";\'.\n";
  print "Save your \"perlmenu.pm\" module for whenever you convert to Perl5+Curses.\n\n";