source: MondoRescue/branches/stable/pbconf/mondo/pbinit@ 1619

Last change on this file since 1619 was 1619, checked in by Bruno Cornec, 17 years ago

mondo and mindi seems ok with pb up to local pkg

  • Property svn:executable set to *
File size: 1009 bytes
RevLine 
[1607]1#!/usr/bin/perl -w
2#
3# Init script for mondo with Project-Builder
4#
5
6# Export documentation to generate what is needed
[1619]7use ProjectBuilder::Base qw (pb_cms_init pb_cms_export pb_mkdir_p);
[1607]8
[1608]9system("./bootstrap");
[1619]10pb_mkdir_p("docs/en");
11pb_mkdir_p("docs/man");
12
13my $cms = pb_cms_init($ENV{'PBPROJ'},undef);
14
15pb_cms_export($cms,undef,"$ENV{'PBROOT'}/mondo-doc/mondoarchive.8","docs/man");
16pb_cms_export($cms,undef,"$ENV{'PBROOT'}/mondo-doc/mondorestore.8","docs/man");
17pb_cms_export($cms,undef,"$ENV{'PBROOT'}/mondo-doc/images","docs/en/images");
18pb_cms_export($cms,undef,"$ENV{'PBROOT'}/mondo-doc/fdl.sgml","docs/en");
19pb_cms_export($cms,undef,"$ENV{'PBROOT'}/mondo-doc/mondorescue-howto.sgml","docs/en");
20pb_cms_export($cms,undef,"$ENV{'PBROOT'}/mondo-doc/mondorescue-howto.dsl","docs/en");
21pb_cms_export($cms,undef,"$ENV{'PBROOT'}/mondo-doc/Makefile.howto","docs/en");
[1607]22# should call filter_file here
[1619]23system("cd docs/en ; ls -lR > /tmp/1 ; make -f Makefile.howto mondorescue-howto.pdf mondorescue-howto.html");
Note: See TracBrowser for help on using the repository browser.