Gentoo Archives: gentoo-commits

From: "Torsten Veller (tove)" <tove@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-perl/SGMLSpm/files: sgmlspl.patch Makefile.PL
Date: Sat, 23 Aug 2008 15:55:09
Message-Id: E1KWvSF-0005OR-1Y@stork.gentoo.org
1 tove 08/08/23 15:55:07
2
3 Added: sgmlspl.patch Makefile.PL
4 Log:
5 Simplify the ebuild: Use Makefile.PL from debian.
6 (Portage version: 2.2_rc8/cvs/Linux 2.6.26-tuxonice i686)
7
8 Revision Changes Path
9 1.1 dev-perl/SGMLSpm/files/sgmlspl.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/SGMLSpm/files/sgmlspl.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/SGMLSpm/files/sgmlspl.patch?rev=1.1&content-type=text/plain
13
14 Index: sgmlspl.patch
15 ===================================================================
16 --- SGMLSpm/sgmlspl.pl.old 2008-08-23 17:06:13.000000000 +0200
17 +++ SGMLSpm/sgmlspl.pl 2008-08-23 17:07:13.000000000 +0200
18 @@ -238,7 +238,7 @@
19 package main;
20
21 $ARGV = shift;
22 -unless ($ARGV eq '' || do $ARGV) {
23 +unless ($ARGV eq '' || do 'sgmlspl-specs/' . $ARGV || do $ARGV) {
24 if (!-e $ARGV) {
25 die "FATAL: $ARGV does not exist.\n";
26 } elsif (!-r $ARGV) {
27
28
29
30 1.1 dev-perl/SGMLSpm/files/Makefile.PL
31
32 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/SGMLSpm/files/Makefile.PL?rev=1.1&view=markup
33 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/SGMLSpm/files/Makefile.PL?rev=1.1&content-type=text/plain
34
35 Index: Makefile.PL
36 ===================================================================
37 use ExtUtils::MakeMaker;
38 # See lib/ExtUtils/MakeMaker.pm for details of how to influence
39 # the contents of the Makefile that is written.
40 WriteMakefile(
41 'NAME' => 'SGMLS',
42 'VERSION' => '1.03ii',
43 'PM' => { 'SGMLS.pm' => '$(INST_LIBDIR)/SGMLS.pm',
44 'Output.pm' => '$(INST_LIBDIR)/SGMLS/Output.pm',
45 'Refs.pm' => '$(INST_LIBDIR)/SGMLS/Refs.pm',
46 'skel.pl' => '$(INST_LIBDIR)/sgmlspl-specs/skel.pl',
47 },
48 'MAN3PODS'=> { 'SGMLS.pm' => '$(INST_MAN3DIR)/SGMLS.3pm',
49 'Output.pm' => '$(INST_MAN3DIR)/SGMLS::Output.3pm',
50 'Refs.pm' => '$(INST_MAN3DIR)/SGMLS::Refs.3pm',
51 },
52 'EXE_FILES' => [ 'sgmlspl', ],
53 );