ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/Makefile.PL
Revision: 1.36
Committed: Thu May 11 23:41:45 2006 UTC (18 years ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.35: +2 -2 lines
Log Message:
implement rgba layouts using the cairo backend

File Contents

# Content
1 use ExtUtils::MakeMaker;
2
3 print <<EOF;
4
5 *** microsoft compatibility forced us to only support manual configuration
6 *** by editing Makefile.PL. complain to microsoft.
7
8 *** opengl 1.2 is required to run this client
9
10 *** HINT: BerkeleyDB must be linked against version 4.3 or higher of libdb
11
12 EOF
13
14 if ($^O =~ /win32/i or $^O =~ /mswin/) {
15 warn "do manual configuration, please\n";
16 $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";
17 $LIBS = "-L/gtk/lib -lSDL -lSDL_image -lSDL_mixer -lpangoft2-1.0 -lpango-1.0 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0 -lfreetype -lfontconfig -lz -lopengl32",
18 } else {
19 $INC = join " ", qx<sdl-config --cflags>, qx<pkg-config pangoft2 --cflags>, qx<pkg-config pangocairo --cflags>;
20 $LIBS = join " ", qx<sdl-config --libs>, "-lSDL_image -lSDL_mixer", qx<pkg-config pangoft2 --libs>, qx<pkg-config pangocairo --libs>;
21
22 $INC =~ s/\n/ /g for $INC, $LIBS;
23 }
24
25 WriteMakefile(
26 dist => {
27 PREOP => 'pod2text CFClient.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
28 COMPRESS => 'gzip -9v',
29 SUFFIX => '.gz',
30 },
31 NAME => "CFClient",
32 INC => $INC,
33 LIBS => [$LIBS],
34 EXE_FILES => [qw(bin/pclient)],
35 VERSION_FROM => "CFClient.pm",
36 PREREQ_PM => {
37 BerkeleyDB => 0.27,
38 Crossfire => 0.1,
39 Time::HiRes => 0,
40 Event => 1.01,
41 AnyEvent => 0,
42 Compress::LZF => 1.6,
43 },
44 PM => {
45 'CFClient.pm' => '$(INST_LIBDIR)/CFClient.pm',
46 'CFClient/OpenGL.pm' => '$(INST_LIBDIR)/CFClient/OpenGL.pm',
47 'CFClient/UI.pm' => '$(INST_LIBDIR)/CFClient/UI.pm',
48 'CFClient/MapWidget.pm' => '$(INST_LIBDIR)/CFClient/MapWidget.pm',
49 (map +($_ => "\$(INST_LIBDIR)/CFClient/$_"),
50 <resources/*.png>,
51 <resources/fonts/*.ttf>,
52 <resources/sounds/*.wav>,
53 <resources/sounds/*.ogg>,
54 <resources/sounds/config>,
55 <resources/music/*.ogg>,
56 <resources/ui/*.png>,
57 <resources/ui/resist/*.png>,
58 ),
59 }
60 );