ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/Makefile.PL
Revision: 1.32
Committed: Wed Apr 19 23:37:48 2006 UTC (18 years ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.31: +1 -0 lines
Log Message:
*** empty log message ***

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     $INC = join " ", qx<sdl-config --cflags>, qx<pkg-config pangoft2 --cflags>;
20     $LIBS = join " ", qx<sdl-config --libs>, "-lSDL_image -lSDL_mixer", qx<pkg-config pangoft2 --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     SDL => 2.1,
39     Crossfire => 0.1,
40     Time::HiRes => 0,
41     Event => 1.01,
42     AnyEvent => 0,
43     Compress::LZF => 1.6,
44 root 1.21 },
45 elmex 1.7 PM => {
46 root 1.13 'CFClient.pm' => '$(INST_LIBDIR)/CFClient.pm',
47 root 1.32 'CFClient/OpenGL.pm' => '$(INST_LIBDIR)/CFClient/OpenGL.pm',
48 root 1.14 'CFClient/UI.pm' => '$(INST_LIBDIR)/CFClient/UI.pm',
49 root 1.31 'CFClient/MapWidget.pm' => '$(INST_LIBDIR)/CFClient/MapWidget.pm',
50 root 1.28 (map +($_ => "\$(INST_LIBDIR)/CFClient/$_"),
51     <resources/*.ttf>,
52     <resources/*.png>,
53     <resources/sounds/*.wav>,
54 root 1.30 <resources/sounds/*.ogg>,
55 root 1.28 <resources/sounds/config>,
56 root 1.29 <resources/music/*.ogg>,
57 root 1.28 ),
58 elmex 1.7 }
59 root 1.1 );