ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/Makefile.PL
Revision: 1.97
Committed: Wed Dec 26 21:03:21 2007 UTC (16 years, 4 months ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.96: +18 -18 lines
Log Message:
initial module hiding

File Contents

# Content
1 use ExtUtils::MakeMaker;
2
3 sub manifest_resources {
4 open my $manifest, "MANIFEST" or die "Couldn't open MANIFEST: $!";
5 map { chomp; $_ } grep /^resources\//, <$manifest>
6 }
7
8 print <<EOF;
9
10 *** opengl 1.1 is required to run this client
11 *** opengl 1.2 is recommended to run this client
12 *** opengl 2.0 helps some more....
13
14 *** other dependencies:
15 *** pango-1.12.3, glib-2.10
16 *** libsdl, libSDL_mixer, libSDL_image
17
18 *** Pod::POM, Compress::LZF, BDB, Deliantra, EV, AnyEvent perl modules
19
20 *** HINT: Debian/Ubuntu users might have some luck with:
21 *** apt-get install perl libpango1.0-dev libglib2.0-dev libsdl1.2-dev
22 *** apt-get install libsdl-mixer1.2-dev libsdl-image1.2-dev
23 *** apt-get install libwww-perl libdb4.4-dev
24 *** apt-get install anyevent-perl
25
26 EOF
27
28 if ($^O =~ /win32/i or $^O =~ /mswin/) {
29 print <<EOF;
30 *** microsoft compatibility forced us to only support manual configuration
31 *** by editing Makefile.PL. complain to microsoft.
32
33 EOF
34 $INC = "-I/gtk/include -I/gtk/include/pango-1.0 -I/gtk/include/glib-2.0 -I/gtk/lib/glib-2.0/include/ -I/gtk/include/freetype2";
35 $LIBS = "-L/gtk/lib -lSDL -lSDL_image -lSDL_mixer -lpango-1.0 -lpangoft2-1.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lfreetype -lfontconfig -lopengl32 -lwininet",
36 } else {
37 $INC = join " ", qx<sdl-config --cflags>, qx<pkg-config pangoft2 --cflags>;
38 $LIBS = join " ", qx<sdl-config --libs>, "-lSDL_image -lSDL_mixer", qx<pkg-config pangoft2 --libs>, "-lGL";
39
40 $INC =~ s/\n/ /g for $INC, $LIBS;
41 }
42
43 WriteMakefile(
44 dist => {
45 PREOP => 'pod2text bin/deliantra | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
46 COMPRESS => 'gzip -9v',
47 SUFFIX => '.gz',
48 },
49 NAME => "Deliantra::Client",
50 INC => $INC,
51 LIBS => [$LIBS],
52 EXE_FILES => [qw(bin/deliantra)],
53 VERSION_FROM => "DC.pm",
54 PREREQ_PM => {
55 BDB => 1.4,
56 Deliantra => 1.13,
57 Time::HiRes => 0,
58 EV => 1.72,
59 AnyEvent => 2.6,
60 Compress::LZF => 1.6,
61 Pod::POM => 0.15,
62 LWP => 0,
63 JSON::XS => 2.01,
64 },
65 depend => {
66 "Client.o" => 'glfunc.h pangoopengl.h pango-font.c pango-fontmap.c pango-render.c texcache.c rendercache.c',
67 },
68 clean => { FILES => 'docwiki.pst' },
69 PM => {
70 'DC.pm' => '$(INST_LIBDIR)/Client/private/DC.pm',
71 'DC/Protocol.pm' => '$(INST_LIBDIR)/Client/private/DC/Protocol.pm',
72 'DC/OpenGL.pm' => '$(INST_LIBDIR)/Client/private/DC/OpenGL.pm',
73 'DC/Texture.pm' => '$(INST_LIBDIR)/Client/private/DC/Texture.pm',
74 'DC/DB.pm' => '$(INST_LIBDIR)/Client/private/DC/DB.pm',
75 'DC/UI.pm' => '$(INST_LIBDIR)/Client/private/DC/UI.pm',
76 'DC/UI/Canvas.pm' => '$(INST_LIBDIR)/Client/private/DC/UI/Canvas.pm',
77 'DC/UI/Dockable.pm' => '$(INST_LIBDIR)/Client/private/DC/UI/Dockable.pm',
78 'DC/UI/Inventory.pm' => '$(INST_LIBDIR)/Client/private/DC/UI/Inventory.pm',
79 'DC/UI/SpellList.pm' => '$(INST_LIBDIR)/Client/private/DC/UI/SpellList.pm',
80 'DC/UI/Canvas.pm' => '$(INST_LIBDIR)/Client/private/DC/UI/Canvas.pm',
81 'DC/UI/ChatView.pm' => '$(INST_LIBDIR)/Client/private/DC/UI/ChatView.pm',
82 'DC/UI/MessageWindow.pm' => '$(INST_LIBDIR)/Client/private/DC/UI/MessageWindow.pm',
83 'DC/Item.pm' => '$(INST_LIBDIR)/Client/private/DC/Item.pm',
84 'DC/Pod.pm' => '$(INST_LIBDIR)/Client/private/DC/Pod.pm',
85 'DC/MapWidget.pm' => '$(INST_LIBDIR)/Client/private/DC/MapWidget.pm',
86 'DC/Macro.pm' => '$(INST_LIBDIR)/Client/private/DC/Macro.pm',
87 'docwiki.pst' => '$(INST_LIBDIR)/Client/private/resources/docwiki.pst',
88 (map +($_ => "\$(INST_LIBDIR)/Client/private/$_"), manifest_resources),
89 }
90 );
91
92 sub MY::postamble {
93 my $self = shift;
94
95 # try to add MANIFEST to CONFIGDEP
96 s/^CONFIGDEP = /CONFIGDEP = MANIFEST /m
97 for @{ $self->{RESULT} };
98
99 my $pods = join " ", <pod/*.pod>;
100
101 <<EOF
102
103 all :: docwiki.pst
104
105 docwiki.pst: bin/pod2wiki $pods
106 \$(PERL) -Mlib=. bin/pod2wiki $pods
107
108 EOF
109 }
110