source: ProjectBuilder/projects/mondorescue/pbconf/branches/3.0/website/pbinit@ 1442

Last change on this file since 1442 was 1442, checked in by Bruno Cornec, 12 years ago
  • Addes extdir to the filtering system as now mandatory in pb.
  • Property svn:executable set to *
File size: 1.6 KB
Line 
1#!/usr/bin/perl -w
2#
3# Init script for mondo with Project-Builder
4#
5
6# Export documentation to generate what is needed
7use ProjectBuilder::Base;
8use ProjectBuilder::Filter;
9use ProjectBuilder::CMS;
10use ProjectBuilder::Env;
11use File::Basename;
12
13pb_mkdir_p("docs");
14my %pb;
15$pb{'pkg'} = "PBPKG";
16$pb{'ver'} = "PBVER";
17$pb{'tag'} = "PBTAG";
18$pb{'rev'} = "PBREV";
19$pb{'proj'} = "PBPROJ";
20$pb{'date'} = "PBDATE";
21$pb{'repo'} = "PBREPO";
22$pb{'extdir'} = "PBEXTDIR";
23
24# Action needs to be pbinit
25my ($filteredfiles, $supfiles, $defpkgdir, $extpkgdir) = pb_env_init($pb{'proj'},undef,"pbinit");
26my ($scheme,$uri) = pb_cms_init(undef);
27
28foreach my $f ("mondoarchive.8", "mondorestore.8", "fdl.sgml", "mondorescue-howto.sgml", "mondorescue-howto.dsl", "Makefile.howto", "Makefile.man", "mindi.8", "HOWTO-_Deploy_Linux_from_SCSI_to_SATA.pdf", "hwmigration.pdf", "mondo-presentation-v1.pdf", "mondo-presentation-v2.pdf", "p2v.odt", "p2v.pdf", "LabMondoRescue.odt", "LabMondoRescue.pdf", "mondo-ref-card.pdf") {
29 pb_cms_export($uri,"$ENV{'PBDIR'}/mondo-doc/$f","docs");
30}
31pb_cms_export($uri,"$ENV{'PBDIR'}/mondo-doc/images","docs/images");
32
33# call filter_file here
34my $ptr = pb_get_filters($pb{'pkg'});
35foreach my $f ((<docs/*.8>),(<docs/*.sgml>)) {
36 pb_filter_file_inplace($ptr,$f,\%pb);
37}
38
39system("cd docs ; make -f Makefile.howto ; make -f Makefile.man");
40
41# Fix man pages for Web usage
42foreach my $f (<docs/*.8.html>) {
43 my $content = pb_get_content($f);
44 $content =~ s~/man8/~/docs/~g;
45 $content =~ s~<A HREF[=./A-z0-9"]*/man1/[^<]*>([A-z0-9]*)</A>~$1~g;
46 $content =~ s~/index.html~/index.shtml~g;
47 pb_set_content($f,$content);
48 }
Note: See TracBrowser for help on using the repository browser.