/[fuse_dbi]/fuse-couchdb/Makefile.PL
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Annotation of /fuse-couchdb/Makefile.PL

Parent Directory Parent Directory | Revision Log Revision Log


Revision 51 - (hide annotations)
Sat Nov 27 14:02:18 2004 UTC (19 years, 4 months ago) by dpavlin
Original Path: trunk/Makefile.PL
File MIME type: text/plain
File size: 962 byte(s)
Improvements in getattr and statfs: du will not return meaningful values and
df will return something which is not as wrong as it was (but, still not
correct).

Fuse::DBI will not try to load kernel module using sudo, and try to umount
using sudo umount if fusermount -u fails (as it happends with current CVS
version of fuse).

New webgui test target in Makefile which work as test on my local machine
(and hopefully on any with webgui default installation).

1 dpavlin 9 use 5.008;
2     use ExtUtils::MakeMaker;
3     # See lib/ExtUtils/MakeMaker.pm for details of how to influence
4     # the contents of the Makefile that is written.
5     WriteMakefile(
6     NAME => 'Fuse::DBI',
7     VERSION_FROM => 'DBI.pm', # finds $VERSION
8     PREREQ_PM => {
9 dpavlin 16 'POSIX' => 0,
10     'Fuse' => 0,
11     'DBI' => 0,
12     'Carp' => 0,
13 dpavlin 33 'File::Find' => 0,
14 dpavlin 9 }, # e.g., Module::Name => 1.1
15     ($] >= 5.005 ? ## Add these new keywords supported since 5.005
16 dpavlin 11 (ABSTRACT_FROM => 'DBI.pm', # retrieve abstract from module
17 dpavlin 9 AUTHOR => 'Dobrica Pavlinusic <dpavlin@rot13.org>') : ()),
18 dpavlin 43 depend => {
19     dist => 'changelog',
20     },
21 dpavlin 9 );
22    
23     sub MY::postamble {
24     return <<'MAKE_MORE';
25    
26     html: DBI.pm
27 dpavlin 27 pod2html DBI.pm > DBI.html
28     pod2html examples/webgui.pl > WebGUI.html
29     rm pod2htm?.tmp
30 dpavlin 9
31 dpavlin 43 changelog:
32     svn update && svn -v log > Changes
33    
34 dpavlin 51 webgui: all
35     sudo umount /mnt2 || echo -n
36     ./examples/webgui.pl /data/WebGUI/etc/WebGUI.conf /mnt2
37    
38 dpavlin 9 MAKE_MORE
39     }

  ViewVC Help
Powered by ViewVC 1.1.26