~ubuntu-branches/ubuntu/lucid/perl-tk/lucid

« back to all changes in this revision

Viewing changes to JPEG/Makefile.PL

  • Committer: Bazaar Package Importer
  • Author(s): Colin Tuckley
  • Date: 2008-02-15 13:56:59 UTC
  • mfrom: (1.1.3 upstream) (4.1.1 hardy)
  • Revision ID: james.westby@ubuntu.com-20080215135659-ru2oqlykuju20fav
Tags: 1:804.028-1
* New Upstream Release (Closes: #463080).
* Update to Debhelper v5.
* Build with XFT=1 (Closes: #411129).

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
 {
26
26
  push(@args, MYEXTLIB  => "jpeg/libjpeg$l",
27
27
              'INC'     => '-Ijpeg');
28
 
  copy("jpeg/Makefile.maybe","jpeg/Makefile.PL");
 
28
  copy("Makefile.jpeg.maybe","jpeg/Makefile.PL");
29
29
  warn "Building jpeg/libjpeg$l\n";
30
30
 }
31
31
 
43
43
 
44
44
   );
45
45
 
 
46
sub MY::test_via_harness
 
47
{
 
48
 my($self, $perl, $tests) = @_;
 
49
 qq{\t$perl "-I../t" "-MTkTest" "-MExtUtils::Command::MM" }.
 
50
 qq{"-e" "check_display_harness; test_harness(\$(TEST_VERBOSE), '\$(INST_LIB)', '\$(INST_ARCHLIB)')" $tests\n};
 
51
}
 
52
 
46
53
package MY;
47
54
 
48
55