1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
|
#
# $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Glib/Makefile.PL,v 1.51 2005/03/07 20:34:23 kaffeetisch Exp $
#
use 5.008;
use strict;
use warnings;
use ExtUtils::MakeMaker;
use File::Spec;
use Cwd;
# minimum required version of dependencies we need to build
our %build_reqs = (
'perl-ExtUtils-Depends' => '0.200',
'perl-ExtUtils-PkgConfig' => '1.00',
'Glib' => '2.0.0',
);
our %PREREQ_PM = (
'ExtUtils::Depends' => $build_reqs{'perl-ExtUtils-Depends'},
'ExtUtils::PkgConfig' => $build_reqs{'perl-ExtUtils-PkgConfig'},
);
# Writing a fake Makefile ensures that CPAN will pick up the correct
# dependencies and install them.
unless (eval "use ExtUtils::Depends '$build_reqs{'perl-ExtUtils-Depends'}';"
. "use ExtUtils::PkgConfig '$build_reqs{'perl-ExtUtils-PkgConfig'}';"
. "1") {
warn "$@\n";
WriteMakefile(
NAME => 'Glib',
PREREQ_FATAL => 1,
PREREQ_PM => \%PREREQ_PM,
);
exit 1; # not reached
}
# client modules may use Glib::MakeHelper -- he's not installed at this
# point, so we have to require him directly.
require 'MakeHelper.pm';
mkdir 'build', 0777;
# this is the order in which we want the api docs from the XS files to
# appear in Glib::xsapi
our @xs_files = qw(
Glib.xs
GError.xs
GUtils.xs
GLog.xs
GType.xs
GBoxed.xs
GObject.xs
GValue.xs
GClosure.xs
GSignal.xs
GMainLoop.xs
GIOChannel.xs
GParamSpec.xs
);
our %pm_files = (
'Glib.pm' => '$(INST_LIBDIR)/Glib.pm',
'Subclass.pm' => '$(INST_LIBDIR)/Glib/Object/Subclass.pm',
'ParseXSDoc.pm' => '$(INST_LIBDIR)/Glib/ParseXSDoc.pm',
'GenPod.pm' => '$(INST_LIBDIR)/Glib/GenPod.pm',
'MakeHelper.pm' => '$(INST_LIBDIR)/Glib/MakeHelper.pm',
'devel.pod' => '$(INST_LIBDIR)/Glib/devel.pod',
);
our %pod_files = (
'Glib.pm' => '$(INST_MAN3DIR)/Glib.$(MAN3EXT)',
'Subclass.pm' => '$(INST_MAN3DIR)/Glib::Object::Subclass.$(MAN3EXT)',
'ParseXSDoc.pm' => '$(INST_MAN3DIR)/Glib::ParseXSDoc.$(MAN3EXT)',
'GenPod.pm' => '$(INST_MAN3DIR)/Glib::GenPod.$(MAN3EXT)',
'MakeHelper.pm' => '$(INST_MAN3DIR)/Glib::MakeHelper.$(MAN3EXT)',
'devel.pod' => '$(INST_MAN3DIR)/Glib::devel.$(MAN3EXT)',
'$(INST_LIB)/$(FULLEXT)/xsapi.pod' => '$(INST_MAN3DIR)/Glib::xsapi.$(MAN3EXT)',
Glib::MakeHelper->do_pod_files (@xs_files),
);
my %glibcfg = ExtUtils::PkgConfig->find ('gobject-2.0 >= '.$build_reqs{Glib});
# optional thread-safety
my $nothreads = grep /disable[-_]threadsafe/i, @ARGV;
my %gthreadcfg;
if (!$nothreads) {
eval {
%gthreadcfg = ExtUtils::PkgConfig->find ('gthread-2.0');
};
$nothreads = 1 if $@;
}
else
{
warn " *** \n";
warn " *** configuring Glib to build without thread safety\n";
warn " *** \n";
%gthreadcfg = (
cflags => ' -DGPERL_DISABLE_THREADSAFE ',
libs => '',
);
}
our $glib = ExtUtils::Depends->new ('Glib');
# add -I. and -I./build to the include path so we can find our own files.
# this will be inherited by dependant modules, so they can find their
# generated files.
$glib->set_inc ($glibcfg{cflags} . $gthreadcfg{cflags} . ' -I. ');
$glib->set_libs ($glibcfg{libs} . $gthreadcfg{libs});
my $cwd = cwd();
$glib->add_typemaps (map {File::Spec->catfile($cwd,$_)} 'typemap');
$glib->add_pm (%pm_files);
$glib->add_xs (@xs_files);
$glib->add_c (qw(gperl-gtypes.c));
$glib->install (qw(gperl.h gperl_marshal.h doctypes));
$glib->save_config ('build/IFiles.pm');
# exports list needed for win32, unused on others
our @exports;
require 'Glib.exports';
WriteMakefile(
NAME => 'Glib',
VERSION_FROM => 'Glib.pm', # finds $VERSION
ABSTRACT_FROM => 'Glib.pm', # retrieve abstract from module
PREREQ_PM => \%PREREQ_PM,
XSPROTOARG => '-noprototypes',
MAN3PODS => $glib ? \%pod_files : {},
FUNCLIST => \@exports,
DL_FUNCS => { Glib => [] },
$glib ? $glib->get_makefile_vars : (),
);
package MY;
# rule to build the documentation
sub postamble
{
require 'MakeHelper.pm';
return "
# these are special for Glib since it's providing the modules,
# it just has to make sure that they are ready before it can go
build/doc.pl :: \$(INST_LIB)/Glib/ParseXSDoc.pm
build/podindex :: \$(INST_LIB)/Glib/GenPod.pm
\$(INST_LIB)/\$(FULLEXT)/xsapi.pod :: build/doc.pl apidoc.pl xsapi.pod.head xsapi.pod.foot
$^X apidoc.pl xsapi.pod.head xsapi.pod.foot build/doc.pl > \$@
"
. Glib::MakeHelper->postamble_clean ()
. Glib::MakeHelper->postamble_docs_full (
DEPENDS => $main::glib,
DOCTYPES => 'doctypes',
COPYRIGHT_FROM => 'copyright.pod',
)
. Glib::MakeHelper->postamble_rpms (
'GLIB' => $build_reqs{'Glib'},
'PERL_EXTUTILS_DEPENDS' =>
$build_reqs{'perl-ExtUtils-Depends'},
'PERL_EXTUTILS_PKGCONFIG' =>
$build_reqs{'perl-ExtUtils-PkgConfig'},
);
}
__END__
Copyright (C) 2003-2005 by the gtk2-perl team (see the file AUTHORS for
the full list)
This library is free software; you can redistribute it and/or modify it under
the terms of the GNU Library General Public License as published by the Free
Software Foundation; either version 2.1 of the License, or (at your option) any
later version.
This library is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE. See the GNU Library General Public License for more
details.
You should have received a copy of the GNU Library General Public License along
with this library; if not, write to the Free Software Foundation, Inc., 59
Temple Place - Suite 330, Boston, MA 02111-1307 USA.
|