source: ProjectBuilder/projects/mondorescue/pbconf/branches/2.2.7/website/pbinit@ 556

Last change on this file since 556 was 556, checked in by Bruno Cornec, 16 years ago
  • Prepare a web delivery function
  • Creates a pbinit script for website for mondorescue
  • Adds a pb_set_content function
  • 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
13system("./bootstrap");
14pb_mkdir_p("docs");
15my %pb;
16$pb{'pkg'} = "PBPKG";
17$pb{'ver'} = "PBVER";
18$pb{'tag'} = "PBTAG";
19$pb{'rev'} = "PBREV";
20$pb{'proj'} = "PBPROJ";
21$pb{'date'} = "PBDATE";
22$pb{'repo'} = "PBREPO";
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
28pb_cms_export($uri,"$ENV{'PBDIR'}/mondo-doc/mondoarchive.8","docs");
29pb_cms_export($uri,"$ENV{'PBDIR'}/mondo-doc/mondorestore.8","docs");
30pb_cms_export($uri,"$ENV{'PBDIR'}/mondo-doc/images","docs/images");
31pb_cms_export($uri,"$ENV{'PBDIR'}/mondo-doc/fdl.sgml","docs");
32pb_cms_export($uri,"$ENV{'PBDIR'}/mondo-doc/mondorescue-howto.sgml","docs");
33pb_cms_export($uri,"$ENV{'PBDIR'}/mondo-doc/mondorescue-howto.dsl","docs");
34pb_cms_export($uri,"$ENV{'PBDIR'}/mondo-doc/Makefile.howto","docs");
35pb_cms_export($uri,"$ENV{'PBDIR'}/mondo-doc/mindi.8","docs");
36
37# call filter_file here
38my $ptr = pb_get_filters($pb{'pkg'});
39foreach my $f ((<docs/*.8>),(<docs/*.sgml>)) {
40 pb_filter_file_inplace($ptr,$f,\%pb);
41}
42
43system("cd docs ; make -f Makefile.howto ; make -f Makefile.man");
44
45# Fix man pages for Web usage
46foreach my $f (<docs/*.8.html>) {
47 my $content = pb_get_content($f);
48 $content =~ s~/man8/~/docs/~g;
49 $content =~ s~<A HREF[=./A-z0-9"]*/man1/[^<]*>([A-z0-9]*)</A>~$1~g;
50 $content =~ s~/index.html~/index.shtml~
51 pb_set_content($f,$content);
52 }
Note: See TracBrowser for help on using the repository browser.