- Timestamp:
- Oct 19, 2007, 1:32:43 AM (18 years ago)
- Location:
- devel
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
devel/pb/bin/pb
r226 r231 379 379 } elsif ($dtype eq "deb") { 380 380 chdir "$ENV{'PBBUILDDIR'}" || die "Unable to chdir to $ENV{'PBBUILDDIR'}"; 381 pb_system("tar x fz $src","Extracting sources");381 pb_system("tar xpfz $src","Extracting sources"); 382 382 383 383 chdir "$pbpkg-$pbver" || die "Unable to chdir to $pbpkg-$pbver"; -
devel/pb/lib/ProjectBuilder/Base.pm
r227 r231 459 459 460 460 my @ffiles; 461 my ($ffile 0, $ffile1, $ffile2, $ffile3);462 my ($mfile 0, $mfile1, $mfile2, $mfile3);461 my ($ffiles00, $ffile0, $ffile1, $ffile2, $ffile3); 462 my ($mfiles00, $mfile0, $mfile1, $mfile2, $mfile3); 463 463 my $pbpkg = shift || die "No package specified"; 464 464 my $dtype = shift || die "No dtype specified"; … … 471 471 # Global filter files first, then package specificities 472 472 if (-d "$ENV{'PBCONF'}/pbfilter") { 473 $mfile00 = "$ENV{'PBCONF'}/pbfilter/all.pbf" if (-f "$ENV{'PBCONF'}/pbfilter/all.pbf"); 473 474 $mfile0 = "$ENV{'PBCONF'}/pbfilter/$dtype.pbf" if (-f "$ENV{'PBCONF'}/pbfilter/$dtype.pbf"); 474 475 $mfile1 = "$ENV{'PBCONF'}/pbfilter/$dfam.pbf" if (-f "$ENV{'PBCONF'}/pbfilter/$dfam.pbf"); … … 476 477 $mfile3 = "$ENV{'PBCONF'}/pbfilter/$ddir-$dver.pbf" if (-f "$ENV{'PBCONF'}/pbfilter/$ddir-$dver.pbf"); 477 478 479 push @ffiles,$mfile00 if (defined $mfile00); 478 480 push @ffiles,$mfile0 if (defined $mfile0); 479 481 push @ffiles,$mfile1 if (defined $mfile1); … … 483 485 484 486 if (-d "$ENV{'PBCONF'}/$pbpkg/pbfilter") { 487 $ffile00 = "$ENV{'PBCONF'}/$pbpkg/pbfilter/all.pbf" if (-f "$ENV{'PBCONF'}/$pbpkg/pbfilter/all.pbf"); 485 488 $ffile0 = "$ENV{'PBCONF'}/$pbpkg/pbfilter/$dtype.pbf" if (-f "$ENV{'PBCONF'}/$pbpkg/pbfilter/$dtype.pbf"); 486 489 $ffile1 = "$ENV{'PBCONF'}/$pbpkg/pbfilter/$dfam.pbf" if (-f "$ENV{'PBCONF'}/$pbpkg/pbfilter/$dfam.pbf"); … … 488 491 $ffile3 = "$ENV{'PBCONF'}/$pbpkg/pbfilter/$ddir-$dver.pbf" if (-f "$ENV{'PBCONF'}/$pbpkg/pbfilter/$ddir-$dver.pbf"); 489 492 493 push @ffiles,$ffile00 if (defined $ffile00); 490 494 push @ffiles,$ffile0 if (defined $ffile0); 491 495 push @ffiles,$ffile1 if (defined $ffile1); -
devel/pbconf/project-builder/rpm/project-builder.spec
r226 r231 40 40 %install 41 41 make DESTDIR=${RPM_BUILD_ROOT} pure_install 42 find ${RPM_BUILD_ROOT} -name perllocal.pod | xargs rm -f 42 43 43 44 %clean
Note:
See TracChangeset
for help on using the changeset viewer.