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

# User Rev Content
1 root 1.1 use ExtUtils::MakeMaker;
2    
3 root 1.2 print <<EOF;
4    
5     *** microsoft compatibility forced us to only support manual configuration
6     *** by editing Makefile.PL. complain to microsoft.
7    
8 root 1.27 *** 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 root 1.23
12 root 1.2 EOF
13    
14 root 1.24 if ($^O =~ /win32/i or $^O =~ /mswin/) {
15     warn "do manual configuration, please\n";
16 root 1.26 $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 root 1.24 } else {
19 root 1.36 $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 root 1.25
22     $INC =~ s/\n/ /g for $INC, $LIBS;
23 root 1.24 }
24 root 1.17
25 root 1.1 WriteMakefile(
26     dist => {
27 root 1.13 PREOP => 'pod2text CFClient.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
28 root 1.1 COMPRESS => 'gzip -9v',
29     SUFFIX => '.gz',
30     },
31 root 1.13 NAME => "CFClient",
32 root 1.25 INC => $INC,
33     LIBS => [$LIBS],
34 root 1.2 EXE_FILES => [qw(bin/pclient)],
35 root 1.13 VERSION_FROM => "CFClient.pm",
36 root 1.21 PREREQ_PM => {
37 root 1.22 BerkeleyDB => 0.27,
38     Crossfire => 0.1,
39     Time::HiRes => 0,
40     Event => 1.01,
41     AnyEvent => 0,
42     Compress::LZF => 1.6,
43 root 1.21 },
44 elmex 1.7 PM => {
45 root 1.13 'CFClient.pm' => '$(INST_LIBDIR)/CFClient.pm',
46 root 1.32 'CFClient/OpenGL.pm' => '$(INST_LIBDIR)/CFClient/OpenGL.pm',
47 root 1.14 'CFClient/UI.pm' => '$(INST_LIBDIR)/CFClient/UI.pm',
48 root 1.31 'CFClient/MapWidget.pm' => '$(INST_LIBDIR)/CFClient/MapWidget.pm',
49 root 1.28 (map +($_ => "\$(INST_LIBDIR)/CFClient/$_"),
50     <resources/*.png>,
51 root 1.35 <resources/fonts/*.ttf>,
52 root 1.28 <resources/sounds/*.wav>,
53 root 1.30 <resources/sounds/*.ogg>,
54 root 1.28 <resources/sounds/config>,
55 root 1.29 <resources/music/*.ogg>,
56 elmex 1.34 <resources/ui/*.png>,
57     <resources/ui/resist/*.png>,
58 root 1.28 ),
59 elmex 1.7 }
60 root 1.1 );