ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/Makefile.PL
(Generate patch)

Comparing deliantra/Deliantra-Client/Makefile.PL (file contents):
Revision 1.23 by root, Sun Apr 16 07:45:25 2006 UTC vs.
Revision 1.112 by root, Sun Aug 31 09:19:27 2008 UTC

1use Config;
1use ExtUtils::MakeMaker; 2use ExtUtils::MakeMaker;
3
4my $lddlflags = $Config{lddlflags};
5
6sub manifest_resources {
7 open my $manifest, "MANIFEST" or die "Couldn't open MANIFEST: $!";
8 map { chomp; $_ } grep /^resources\//, <$manifest>
9}
2 10
3print <<EOF; 11print <<EOF;
4 12
13*** opengl 1.1 is required to run this client
14*** opengl 1.2 is recommended to run this client
15*** opengl 2.0 helps some more....
16
17*** other dependencies:
18*** pango-1.12.3, glib-2.10
19*** libsdl-1.2.10, libSDL_mixer, libSDL_image
20
21*** Pod::POM, Compress::LZF, BDB, Deliantra, EV, AnyEvent perl modules
22
23*** HINT: Debian/Ubuntu users might have some luck with:
24*** apt-get install perl libpango1.0-dev libglib2.0-dev libsdl1.2-dev
25*** apt-get install libsdl-mixer1.2-dev libsdl-image1.2-dev
26*** apt-get install libwww-perl libdb4.4-dev
27*** apt-get install anyevent-perl
28
29EOF
30
31if ($^O =~ /win32/i or $^O =~ /mswin/) {
32 print <<EOF;
5*** microsoft compatibility forced us to only support manual configuration 33*** microsoft compatibility forced us to only support manual configuration
6*** by editing Makefile.PL. complain to microsoft. 34*** by editing Makefile.PL. complain to microsoft.
7 35
8*** HINT: BerkeleyDB must be linked against version 4.4 or above of libdb 36EOF
37 $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";
38 $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",
39} else {
40 $INC = join " ", qx<sdl-config --cflags>, qx<pkg-config pangoft2 --cflags>;
41 $LIBS = join "", map " $_ ",
42 qx<sdl-config --libs>,
43 "-lSDL_image -lSDL_mixer",
44 qx<pkg-config pangoft2 --libs>,
45 "-L/usr/X11/lib -lGL";
9 46
10EOF 47 $_ =~ s/\n/ /g for $INC, $LIBS;
11 48
12# sdl-config 49 # for extra horrid macosx joys
13# -lSDL_image 50 $lddlflags .= " $1" while $LIBS =~ s/ (-Wl,\S+) / /;
14# pkg-config pangoft2 51}
15# freetype-config
16 52
17WriteMakefile( 53WriteMakefile(
18 dist => { 54 dist => {
19 PREOP => 'pod2text CFClient.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;', 55 PREOP => 'pod2text bin/deliantra | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
20 COMPRESS => 'gzip -9v', 56 COMPRESS => 'gzip -9v',
21 SUFFIX => '.gz', 57 SUFFIX => '.gz',
22 }, 58 },
23 NAME => "CFClient", 59 NAME => "Deliantra::Client",
24 INC => '-I/usr/include/SDL -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2', 60 INC => $INC,
25 LIBS => ["-lSDL -lSDL_image -lpangoft2-1.0 -lpango-1.0 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0 -lfreetype -lz"], 61 LIBS => [$LIBS],
62 LDDLFLAGS => $lddlflags,
26 EXE_FILES => [qw(bin/pclient)], 63 EXE_FILES => [qw(bin/deliantra)],
27 VERSION_FROM => "CFClient.pm", 64 VERSION_FROM => "DC.pm",
28 PREREQ_PM => { 65 PREREQ_PM => {
29 BerkeleyDB => 0.27,
30 SDL => 2.1, 66 BDB => 1.7,
31 Crossfire => 0.1, 67 Deliantra => 1.22,
32 Time::HiRes => 0, 68 Time::HiRes => 0,
33 Event => 1.01, 69 EV => 3.42,
34 AnyEvent => 0, 70 AnyEvent => 4.22,
35 Compress::LZF => 1.6, 71 Compress::LZF => 1.6,
72 Pod::POM => 0.15,
73 LWP => 0,
74 JSON::XS => 2.01,
36 }, 75 },
76 depend => {
77 "Client.o" => 'glfunc.h pangoopengl.h pango-font.c pango-fontmap.c pango-render.c texcache.c rendercache.c',
78 },
79 clean => { FILES => 'docwiki.pst' },
37 PM => { 80 PM => {
38 'CFClient.pm' => '$(INST_LIBDIR)/CFClient.pm', 81 'DC.pm' => '$(INST_LIBDIR)/Client/private/DC.pm',
82 'DC/Protocol.pm' => '$(INST_LIBDIR)/Client/private/DC/Protocol.pm',
83 'DC/OpenGL.pm' => '$(INST_LIBDIR)/Client/private/DC/OpenGL.pm',
84 'DC/Texture.pm' => '$(INST_LIBDIR)/Client/private/DC/Texture.pm',
85 'DC/DB.pm' => '$(INST_LIBDIR)/Client/private/DC/DB.pm',
39 'CFClient/UI.pm' => '$(INST_LIBDIR)/CFClient/UI.pm', 86 'DC/UI.pm' => '$(INST_LIBDIR)/Client/private/DC/UI.pm',
40 'resources/uifont.ttf' => '$(INST_LIBDIR)/CFClient/resources/uifont.ttf', 87 'DC/MessageDistributor.pm' => '$(INST_LIBDIR)/Client/private/DC/MessageDistributor.pm',
41 'resources/uifontb.ttf' => '$(INST_LIBDIR)/CFClient/resources/uifontb.ttf', 88 'DC/UI/Canvas.pm' => '$(INST_LIBDIR)/Client/private/DC/UI/Canvas.pm',
42 'resources/uifonti.ttf' => '$(INST_LIBDIR)/CFClient/resources/uifonti.ttf', 89 'DC/UI/Dockable.pm' => '$(INST_LIBDIR)/Client/private/DC/UI/Dockable.pm',
43 'resources/uifontbi.ttf' => '$(INST_LIBDIR)/CFClient/resources/uifontbi.ttf', 90 'DC/UI/Dockbar.pm' => '$(INST_LIBDIR)/Client/private/DC/UI/Dockbar.pm',
44 'resources/d1_bg.png' => '$(INST_LIBDIR)/CFClient/resources/d1_bg.png', 91 'DC/UI/Inventory.pm' => '$(INST_LIBDIR)/Client/private/DC/UI/Inventory.pm',
45 'resources/d1_border_top.png' => '$(INST_LIBDIR)/CFClient/resources/d1_border_top.png', 92 'DC/UI/SpellList.pm' => '$(INST_LIBDIR)/Client/private/DC/UI/SpellList.pm',
46 'resources/d1_border_bottom.png' => '$(INST_LIBDIR)/CFClient/resources/d1_border_bottom.png', 93 'DC/UI/Canvas.pm' => '$(INST_LIBDIR)/Client/private/DC/UI/Canvas.pm',
47 'resources/d1_border_left.png' => '$(INST_LIBDIR)/CFClient/resources/d1_border_left.png', 94 'DC/UI/ChatView.pm' => '$(INST_LIBDIR)/Client/private/DC/UI/ChatView.pm',
48 'resources/d1_border_right.png' => '$(INST_LIBDIR)/CFClient/resources/d1_border_right.png', 95 'DC/Item.pm' => '$(INST_LIBDIR)/Client/private/DC/Item.pm',
49 'resources/b1_button_active.png' => '$(INST_LIBDIR)/CFClient/resources/b1_button_active.png', 96 'DC/Pod.pm' => '$(INST_LIBDIR)/Client/private/DC/Pod.pm',
50 'resources/s1_slider.png' => '$(INST_LIBDIR)/CFClient/resources/s1_slider.png', 97 'DC/MapWidget.pm' => '$(INST_LIBDIR)/Client/private/DC/MapWidget.pm',
51 'resources/s1_slider_bg.png' => '$(INST_LIBDIR)/CFClient/resources/s1_slider_bg.png', 98 'DC/Macro.pm' => '$(INST_LIBDIR)/Client/private/DC/Macro.pm',
52 'resources/c1_checkbox_bg.png' => '$(INST_LIBDIR)/CFClient/resources/c1_checkbox_bg.png', 99 'docwiki.pst' => '$(INST_LIBDIR)/Client/private/resources/docwiki.pst',
53 'resources/c1_checkbox_active.png' => '$(INST_LIBDIR)/CFClient/resources/c1_checkbox_active.png', 100 (map +($_ => "\$(INST_LIBDIR)/Client/private/$_"), manifest_resources),
54 'resources/g1_food_gauge_empty.png' => '$(INST_LIBDIR)/CFClient/resources/g1_food_gauge_empty.png',
55 'resources/g1_food_gauge_full.png' => '$(INST_LIBDIR)/CFClient/resources/g1_food_gauge_full.png',
56 'resources/g1_grace_gauge_empty.png' => '$(INST_LIBDIR)/CFClient/resources/g1_grace_gauge_empty.png',
57 'resources/g1_grace_gauge_full.png' => '$(INST_LIBDIR)/CFClient/resources/g1_grace_gauge_full.png',
58 'resources/g1_hp_gauge_empty.png' => '$(INST_LIBDIR)/CFClient/resources/g1_hp_gauge_empty.png',
59 'resources/g1_hp_gauge_full.png' => '$(INST_LIBDIR)/CFClient/resources/g1_hp_gauge_full.png',
60 'resources/g1_mana_gauge_empty.png' => '$(INST_LIBDIR)/CFClient/resources/g1_mana_gauge_empty.png',
61 'resources/g1_mana_gauge_full.png' => '$(INST_LIBDIR)/CFClient/resources/g1_mana_gauge_full.png',
62
63 } 101 }
64); 102);
103
104sub MY::postamble {
105 my $self = shift;
106
107 # try to add MANIFEST to CONFIGDEP
108 s/^CONFIGDEP = /CONFIGDEP = MANIFEST /m
109 for @{ $self->{RESULT} };
110
111 my $pods = join " ", <pod/*.pod>;
112
113 <<EOF
114
115all :: docwiki.pst
116
117docwiki.pst: bin/pod2wiki $pods
118 \$(PERL) -Mlib=. bin/pod2wiki $pods
119
120EOF
121}
122

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines