ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/Makefile.PL
Revision: 1.47
Committed: Fri May 26 18:28:23 2006 UTC (17 years, 11 months ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.46: +1 -0 lines
Log Message:
unbundled CFClient::Texture

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