forked from istathar/java-gnome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure
executable file
·2310 lines (1906 loc) · 59.1 KB
/
configure
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/perl -w
#
# java-gnome, a UI library for writing GTK and GNOME programs from Java!
#
# Copyright © 2005-2013 Operational Dynamics Consulting, Pty Ltd and Others
#
# The code in this file, and the program it is a part of, is made available
# to you by its authors as open source software: you can redistribute it
# and/or modify it under the terms of the GNU General Public License version
# 2 ("GPL") as published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GPL for more details.
#
# You should have received a copy of the GPL along with this program. If not,
# see http://www.gnu.org/licenses/. The authors of this program may be
# contacted through http://java-gnome.sourceforge.net/.
#
#
# configure
# part of Equivalence, version 0.2.x
#
# THIS IS A PROTOTYPE. Although functional enough, this has grown to the point
# of being a somewhat embarrassing and monolithic piece of code. Patches are
# gladly accepted to this file to fix bugs and improve prerequisite detection,
# but be aware that a new and refactored version is in progress. With any
# luck, it will be easier to extend and suitable for use by other projects. See
# http://research.operationaldynamics.com/projects/equivalence/ In the mean
# time, see README for instructions on how to use this one.
#
use strict;
use File::Basename;
use Cwd 'abs_path';
#
# Configure java-gnome for building. We:
#
# - determine the operating system
#
# - set known defaults that correspond to that OS
#
# - for items where we have multiple possibilities, work through the
# possibilities until we find one
#
# - for items where there are options to choose from (notably which java
# compiler and VM we're using), we select a sensible default unless
# instructed otherwise on the command line.
#
my $os;
my $cpu_arch = ""; # set only when needed
my $quiet;
# There's nothing worse than having an old config file, getting half way
# through this, having it break, and then being able to build, but getting
# errors because configure really didn't finish. We do leave .config.tmp
# in place on error to facilitate troubleshooting.
`rm -f .config`;
`rm -f Hello.java Hello.class`;
# --------------------------------------------------------------------
# Utility and checking functions
# --------------------------------------------------------------------
#
# Very simply: if the msg does not contain a newline, then it is assumed
# to introduce a statement, so we print it and left pad it with spaces.
# If the text does contain a newline, then probably it is concluding a
# statement (ok, failed, whatever) but not necessarily - just print the thing
# without any padding.
#
sub output {
my $str = shift;
if ($str =~ /\n/) {
print $str unless $quiet;
} else {
printf "%-35s", $str unless $quiet;
}
}
sub which {
my $program = shift;
my $path = $ENV{'PATH'};
my @path_dirs = split /:+/, $path;
foreach my $dir (@path_dirs) {
if (-f "$dir/$program") {
return abs_path("$dir/$program");
}
}
return $program;
}
sub bail {
my $status = shift || "failed";
my $msg = shift || "";
# assuming that we're in an incomplete line
output "$status\n\n";
print "$msg\n\n" if $msg;
print "Failed to complete configuration.\n";
exit(1);
}
# Check for all the required gnome development libraries. Distributions such as
# Ubuntu/Debian and Fedora don't always install the gnome development libs
# (for whatever reason). If they aren't installed, we bomb here in configure
# instead of dying unceremoniously while make'ing.
sub check_system_library(\@$$@) {
my ($gnomedevref, $pkgconfig, $item, $package) = @_;
output " - ".$item;
my $found;
my $str = "";
my $tries = "";
$found = system("pkg-config --exists '$pkgconfig'");
if ($found) {
my $msg;
$msg = `pkg-config --modversion --errors-to-stdout '$pkgconfig'`;
$str .= "$msg\n" if ($msg =~ /^Requested /);
$str .= "In order to build java-gnome, you will need the GNOME\n";
$str .= "development libraries. Depending on what you have installed,\n";
$str .= "this could be a considerable set of packages, but if you\n";
$str .= "want to be a GNOME hacker, that's the way it is.\n\n";
$str .= "On a ".ucfirst($os)." system, you should be able to satisfy this\n";
$str .= "requirement by doing:\n\n";
$str .= " # ";
if ($os eq "gentoo") {
$str .= "emerge";
} elsif ($os eq "debian") {
$str .= "apt-get install";
} elsif ($os eq "fedora") {
$str .= "yum install";
} elsif ($os eq "suse") {
$str .= "zypper install";
} elsif ($os eq "arch") {
$str .= "pacman -S";
} elsif ($os eq "mandriva") {
$str .= "urpmi";
} elsif ($os eq "solaris") {
$str .= "pkgadd";
} elsif ($os eq "slackware") {
$str .= "slackpkg install";
} else {
$str .= "[FIXME fetch and install command for this OS]";
}
$str .= " $package";
bail "not found!", $str;
}
print "found\n";
push(@$gnomedevref, $found);
}
# The files (jars) to check for should be listed in order of preference, as the
# first one found will be the one selected. For example, if you want version 3
# but version 2 will do, list them in that order. Typically, this means that
# you list newer libraries first, on the presumption that you'd rather use the
# newer one than the older one; when adding upgrades put them above the
# already present entries.
sub check_prereq (\@$$@) {
my ($jararrayref, $item, $package, @files) = @_;
output " - ".$item;
my $str;
my $tries = "";
my $found = "";
foreach my $file ( @files ) {
if ( -f "$file" ) {
$found = $file;
last;
}
$tries .= ($tries ? ", or" : "" ) . "\n\t". basename($file) . "\t(looked in ".dirname($file).")";
}
if ( ! "$found" ) {
$str = "In order to build java-gnome, you need\n".$tries;
$str .= "\n\nwhich is part of the $item Java library.\n";
$str .= "On a ".ucfirst($os)." system, you should be able to get this requirement by doing:\n\n";
$str .= " # ";
if ($os eq "gentoo") {
$str .= "emerge";
} elsif ($os eq "debian") {
$str .= "apt-get install";
} elsif ($os eq "fedora") {
$str .= "yum install";
} elsif ($os eq "suse") {
$str .= "zypper install";
} elsif ($os eq "arch") {
$str .= "pacman -S";
} elsif ($os eq "mandriva") {
$str .= "urpmi";
} elsif ($os eq "solaris") {
$str .= "pkgadd";
} elsif ($os eq "slackware") {
$str .= "slackpkg install";
} else {
$str .= "[FIXME fetch and install command for this OS]";
}
$str .= " $package";
bail "not found!", $str;
}
print "found\n";
push (@$jararrayref, $found);
}
# if we return without setting the variable pointed at by scalarref, its being
# empty will be used later to indicate that this compiler wasn't present /
# usable.
#
# The "not present" check is somewhat spurious given the input in many cases
# is the result of a `which` call.
sub check_compiler (\$$$$) {
my $scalarref = $_[0];
my $item = $_[1];
my $program = $_[2];
my $args = $_[3];
chomp $program;
if ( ! -f "$program") {
$$scalarref = "";
return;
}
# appealing to my sense of economy, we only print something out if
# it's there - that way we can list lots of options to check without
# cluttering things endlessly.
output " - ".$item;
if ( ! -x "$program") {
output "found but not executable\n";
$$scalarref = "";
return;
}
# Ok, so inline code is lame, but it's so small, and only one,
# and, avoids having a file in tests/ that will be picked up later
# as neededing compiling.
if (! -f "Hello.java") {
open HELLO, ">Hello.java";
print HELLO <<HERE ;
public class Hello {
public static void main(String[] args) {
System.out.println("Hello");
}
}
HERE
close HELLO;
}
`$program $args -sourcepath . Hello.java >/dev/null 2>&1`;
if ($? != 0) {
output "doesn't work\n";
$$scalarref = "";
return
}
output "works\n";
$$scalarref = "$program $args";
}
#
# Check that a jar program somewhere works.
#
sub check_jar (\$$$$) {
my $scalarref = $_[0];
my $item = $_[1];
my $program = $_[2];
my $args = $_[3];
chomp $program;
if ( ! -f "$program") {
$$scalarref = "";
return;
}
# appealing to my sense of economy, we only print something out if
# it's there - that way we can list lots of options to check without
# cluttering things endlessly.
output " - ".$item;
if ( ! -x "$program") {
output "found but not executable\n";
$$scalarref = "";
return;
}
`$program cf Hello.jar $args Hello.class >/dev/null 2>&1`;
if (($? != 0) || (! -f "Hello.jar")) {
output "doesn't work\n";
$$scalarref = "";
return
}
# TODO validate the result
output "works\n";
$$scalarref = "$program $args";
}
#
# Check that a javadoc program somewhere works.
#
sub check_javadoc (\$$$$) {
my $scalarref = $_[0];
my $item = $_[1];
my $program = $_[2];
my $args = $_[3];
chomp $program;
if ( ! -f "$program") {
$$scalarref = "";
return;
}
# appealing to my sense of economy, we only print something out if
# it's there - that way we can list lots of options to check without
# cluttering things endlessly.
output " - ".$item;
if ( ! -x "$program") {
output "found but not executable\n";
$$scalarref = "";
return;
}
# TODO validate the result
output "found\n";
$$scalarref = "$program $args";
}
sub check_runtime (\$$$$) {
my $scalarref = $_[0];
my $item = $_[1];
my $program = $_[2];
my $args = $_[3];
chomp $program;
if ( ! -f "$program") {
$$scalarref = "";
return;
}
output " - ".$item;
if ( ! -x "$program") {
output "found but not executable\n";
$$scalarref = "";
return;
}
my $output = `$program -version 2>&1 | grep 'version "'`;
$output =~ s/.*version \"(.*)\".*/$1/g;
my @version = split(/[\.\-\_]/, $output);
for (my $i = 0; $i < 3; $i++) {
chomp $version[$i];
if (!($version[$i] =~ /^\d+$/)) {
output "can't parse version\n";
$$scalarref = "";
return
}
}
if (
($version[0] < 1) ||
($version[0] == 1 && ($version[1] < 4))
) {
output "not >= 1.5.0\n";
$$scalarref = "";
return
}
$output = `$program $args Hello 2>/dev/null`;
chomp $output;
if (($? != 0) || ($output ne "Hello")) {
output "doesn't work\n";
$$scalarref = "";
return
}
output "works\n";
$$scalarref = "$program $args";
}
sub check_jni_header_generator(\$$$$) {
my $scalarref = $_[0];
my $item = $_[1];
my $program = $_[2];
my $args = $_[3];
chomp $program;
if ( ! -f "$program") {
$$scalarref = "";
return;
}
# appealing to my sense of economy, we only print something out if
# it's there - that way we can list lots of options to check without
# cluttering things endlessly.
output " - ".$item;
if ( ! -x "$program") {
output "found but not executable\n";
$$scalarref = "";
return;
}
# FIXME do a test!
output "found\n";
$$scalarref = "$program $args";
}
# test for C compiler
sub check_CC (\$$$$) {
my $scalarref = $_[0];
my $item = $_[1];
my $program = $_[2];
my $args = $_[3];
chomp $program;
if ( ! -f "$program") {
$$scalarref = "";
return;
}
# appealing to my sense of economy, we only print something out if
# it's there - that way we can list lots of options to check without
# cluttering things endlessly.
output " - ".$item;
if ( ! -x "$program") {
output "found but not executable\n";
$$scalarref = "";
return;
}
# Hello.java should already available.
open HELLO, ">Hello.c";
print HELLO <<HERE ;
#include <stdio.h>
int main(int argc, char **argv) {
printf("Hello");
return 0;
}
HERE
close HELLO;
# compile
`$program $args -o Hello.o -c Hello.c >/dev/null 2>&1`;
if ($? != 0) {
output "compiling doesn't work\n";
$$scalarref = "";
return
}
if ( ! -f "Hello.o") {
bail "internal error","why isn't Hello.o present?";
}
# link
`$program $args -o Hello Hello.o >/dev/null 2>&1`;
if ($? != 0) {
output "linking doesn't work\n";
$$scalarref = "";
return
}
# run
my $output = `./Hello 2>/dev/null`;
chomp $output;
if (($? != 0) || ($output ne "Hello")) {
output "executable doesn't work\n";
$$scalarref = "";
return
}
output "works\n";
$$scalarref = "$program $args";
}
# --------------------------------------------------------------------
# Process command line arguments for overrides
# --------------------------------------------------------------------
my $prefix;
my $libdir;
my $jardir;
my $compiler;
my $runtime;
my $jdk_home;
my $gcj_home;
my $jamvm_bin;
my $cacao_bin;
my $strict = "";
foreach my $arg (@ARGV) {
my ($key, $value) = split /=/, "$arg";
if ($key eq "quiet") {
$quiet = 1;
} elsif (($key =~ /^-\?$/) ||
($key =~ /^-h$/) ||
($key =~ /^--help$/) ||
($key =~ /^-help$/) ||
($key =~ /^help$/)) {
print <<HERE ;
This is Equivalence, a simple build system suited to the
unique needs of configuring and compiling Java programs on
Linux and Unix.
Look at the README file in this directory for information
about this project and instructions on how to adjust the
./configure script's behaviour.
HERE
exit 4;
} elsif (($key =~ /^--prefix$/) ||
($key =~ /^prefix$/)) {
$prefix="$value";
} elsif (($key =~ /^--libdir$/) ||
($key =~ /^libdir$/)) {
$libdir="$value";
} elsif (($key =~ /^--jardir$/) ||
($key =~ /^jardir$/)) {
$jardir="$value";
} elsif ($key =~ /^runtime/) {
$runtime="$value";
} elsif ($key =~ /^compiler/) {
$compiler="$value";
} elsif ($key =~ /^jdk/) {
$jdk_home="$value";
} elsif ($key =~ /^gcj/) {
$gcj_home="$value";
} elsif ($key =~ /^cacao/) {
$cacao_bin="$value";
} elsif ($key =~ /^jamvm/) {
$jamvm_bin="$value";
} elsif ($key =~ /^strict/) {
$strict="yes";
}
}
# check jdk_home and gcj_home overrides. compiler and runtime are checked
# later (at the end) against choices that have been validated.
if ($jdk_home) {
$jdk_home =~ s/\/$//;
if (! -x "$jdk_home/bin/javac") {
bail "bad override", "jdk_home specified doesn't seem to be a Java Development Kit home directory!";
}
}
if ($gcj_home) {
$gcj_home =~ s/\/$//;
if (! -x "$gcj_home/bin/gcj") {
bail "bad override", "gcj_home specified doesn't seem to be a GCJ install!";
}
}
# --------------------------------------------------------------------
# Determine Operating System
# --------------------------------------------------------------------
output "\n";
open CONFIG, ">.config.tmp";
print CONFIG <<HERE ;
# This is an automatically generated Makefile fragment which is used
# to configure java-gnome for building. Do not edit (your changes will
# be overwritten next time ./configure is run), do not commit to
# repository. Anyone packaging java-gnome on any operating system:
# please do not override this file by patching it! Figure out what the
# problem is, and let us know so we can improve the ./configure perl
# script which generates it.
HERE
output "equivalence, v0.2\n";
output "...configuring Java projects to build and run on Linux & Unix\n";
output "\n";
output "Identify operating system:";
if (( -f "/etc/gentoo-release" ) || ( -f "/etc/make.conf" )) {
output "Gentoo\n";
$os = "gentoo";
} elsif ( -f "/etc/debian_version") {
output "Debian\n";
# and Ubuntu
$os = "debian";
} elsif ( -f "/etc/fedora-release" ) {
output "Fedora";
$os = "fedora";
} elsif ( -f "/etc/SuSE-release" ) {
output "Open SuSE";
$os = "suse";
} elsif ( -f "/etc/arch-release" ) {
output "Arch";
$os = "arch";
} elsif ( -f "/etc/mandriva-release" ) {
output "Mandriva";
$os = "mandriva";
# Mandriva Linux has different package names
# for 64-bit CPU architectures
if (-x "/bin/arch") {
my $arch = `/bin/arch`;
if ($arch =~ m/_64/) { # 64-bit OS
$cpu_arch = "64";
}
}
} elsif ( -f "/etc/release" ) {
if (`grep Solaris /etc/release`) {
output "Solaris";
$os = "solaris";
}
} elsif ( -f "/etc/slackware-version" ) {
output "Slackware";
$os = "slackware";
} elsif ( -f "/usr/bin/cygwin1.dll" ) {
output "Cygwin";
$os = "cygwin";
} elsif ( -f "/etc/centos-release" ) {
output "CentOS";
$os = "fedora";
} elsif ( -f "/etc/redhat-release" ) {
output "RedHat";
$os = "fedora";
} elsif ( -f "/etc/java/jpackage-release" ) {
output "JPackage";
$os = "fedora";
}
if ($os) {
print CONFIG "OS=$os\n\n";
} else {
bail "unknown!", <<HERE ;
What we really need you to do is to look into this configure program,
and tell us what to add. Based on the examples of what is specified
for other distributions, you can probably quickly figure out what the
appropriate settings are for your platform.
Letting us know what changes you had to make here (ie, whatever
actions resulted in a .config that allows you to build and test
java-gnome, and run the java-gnome demo) we can help others with your
operating system take advantage of this program.
HERE
}
output "\n";
# --------------------------------------------------------------------
# Specify locations of dependencies, by operating system, and
# verify pre-requisites are present.
# --------------------------------------------------------------------
my @junit_jars;
my $jni_path;
output "Check for required jar files:\n";
# ADVICE TO PEOPLE EXTENDING THIS SECTION FOR THEIR OWN OPERATING SYSTEM:
# You might as well list things in such an order that you tell the builder
# the package whose dependencies will bring the rest of the pre-requisites
# in along the way...
if ($os eq "gentoo") {
check_prereq(@junit_jars,
"JUnit test framework",
"junit",
"/usr/share/junit/lib/junit.jar");
} elsif ($os eq "debian") {
check_prereq(@junit_jars,
"JUnit test framework",
"junit",
"/usr/share/java/junit.jar");
} elsif ($os eq "fedora") {
check_prereq(@junit_jars,
"JUnit test framework",
"junit",
"/usr/share/java/junit.jar");
} elsif ($os eq "arch") {
check_prereq(@junit_jars,
"JUnit test framework",
"junit",
"/usr/share/java/junit.jar");
} elsif ($os eq "mandriva") {
check_prereq(@junit_jars,
"JUnit test framework",
"junit",
"/usr/share/java/junit.jar");
} elsif ($os eq "suse") {
check_prereq(@junit_jars,
"JUnit test framework",
"junit",
"/usr/share/java/junit.jar");
} elsif ($os eq "solaris") {
check_prereq(@junit_jars,
"JUnit test framework",
"junit",
"/usr/share/lib/java/junit.jar");
} elsif ($os eq "slackware") {
check_prereq(@junit_jars,
"JUnit test framework",
"junit",
"/usr/share/java/junit.jar");
} elsif ($os eq "cygwin") {
check_prereq(@junit_jars,
"JUnit test framework",
"junit",
"/usr/share/java/junit.jar");
} else {
bail "failed!", "This OS not configured with defaults!\nTHIS IS AN INTERNAL ERROR, PLEASE FILE A BUG.";
}
# This section checks for all the GNOME pre requisites.
# Paths mentioned here, are relative to the prefix.
my @gnomedev_libs;
output "\nCheck for required system libraries:\n";
if ($os eq "gentoo") {
check_system_library(@gnomedev_libs,
"glib-2.0 >= 2.28
gtk+-3.0 >= 3.0.0
pango >= 1.28
librsvg-2.0
atk
gdk-3.0
gtk+-unix-print-3.0
cairo-svg >= 1.10.0
gtksourceview-3.0",
"GNOME",
"gnome");
check_system_library(@gnomedev_libs,
"enchant",
"Enchant",
"app-text/enchant");
# check_system_library(@gnomedev_libs,
# "gtkspell-3.0",
# "GtkSpell",
# "gtkspell");
} elsif ($os eq "slackware") {
# on slackware gdk-2.0 and gtk+-unix-print-2.0 are part of gtk+-2.0
# use http://packages.slackware.it/ for more details.
check_system_library(@gnomedev_libs,
"glib-2.0 >= 2.28",
"GLib",
"FIXME");
check_system_library(@gnomedev_libs,
"gtk+-3.0 >= 3.0.0",
"GTK+",
"gtk+2");
check_system_library(@gnomedev_libs,
"pango >= 1.28",
"Pango",
"pango");
check_system_library(@gnomedev_libs,
"librsvg-2.0",
"RSVG",
"FIXME");
check_system_library(@gnomedev_libs,
"atk",
"ATK",
"atk");
check_system_library(@gnomedev_libs,
"gtksourceview-3.0",
"GtkSourceView",
"FIXME");
# check_system_library(@gnomedev_libs,
# "gtkspell-3.0",
# "GtkSpell",
# "FIXME");
check_system_library(@gnomedev_libs,
"enchant",
"Enchant",
"FIXME");
} elsif ($os eq "debian") {
check_system_library(@gnomedev_libs,
"cairo-svg >= 1.10",
"Cairo",
"libcairo2-dev");
check_system_library(@gnomedev_libs,
"glib-2.0 >= 2.28",
"GLib",
"libglib2.0-dev");
check_system_library(@gnomedev_libs,
"gtk+-3.0 >= 3.0
gdk-3.0
gtk+-unix-print-3.0",
"GTK+",
"libgtk3.0-dev");
check_system_library(@gnomedev_libs,
"pango >= 1.28",
"Pango",
"libpango1.0-dev");
check_system_library(@gnomedev_libs,
"librsvg-2.0",
"RSVG",
"librsvg2-dev");
check_system_library(@gnomedev_libs,
"atk",
"ATK",
"libatk1.0-dev");
check_system_library(@gnomedev_libs,
"gtksourceview-3.0",
"GtkSourceView",
"libgtksourceview-3.0-dev");
check_system_library(@gnomedev_libs,
"enchant",
"Enchant",
"libenchant-dev");
# check_system_library(@gnomedev_libs,
# "gtkspell-3.0",
# "GtkSpell",
# "libgtkspell-dev");
} elsif ($os eq "arch") {
check_system_library(@gnomedev_libs,
"cairo-svg >= 1.10",
"Cairo",
"cairo");
check_system_library(@gnomedev_libs,
"glib-2.0 >= 2.28",
"GLib",
"glib2");
check_system_library(@gnomedev_libs,
"gtk+-3.0 >= 3.0
gdk-3.0
gtk+-unix-print-3.0",
"GTK+",
"gtk3");
check_system_library(@gnomedev_libs,
"pango >= 1.28",
"Pango",
"pango");
check_system_library(@gnomedev_libs,
"librsvg-2.0",
"RSVG",
"librsvg");
check_system_library(@gnomedev_libs,
"atk",
"ATK",
"atk");
check_system_library(@gnomedev_libs,
"gtksourceview-3.0",
"GtkSourceView",
"gtksourceview3");
check_system_library(@gnomedev_libs,
"enchant",
"Enchant",
"enchant");
check_system_library(@gnomedev_libs,
"gtkspell3-3.0",
"GtkSpell",
"gtkspell3");
} elsif ($os eq "suse") {
check_system_library(@gnomedev_libs,
"cairo-svg >= 1.10",
"Cairo",
"cairo-devel");
check_system_library(@gnomedev_libs,
"glib-2.0 >= 2.28
gtk+-3.0 >= 3.0.0
pango >= 1.22
atk
gdk-3.0
gtk+-unix-print-3.0",
"GNOME development libraries",
"libgnome-devel");
check_system_library(@gnomedev_libs,
"librsvg-2.0",
"RSVG",
"librsvg-devel");
check_system_library(@gnomedev_libs,
"gtksourceview-3.0",
"GtkSourceView",
"gtksourceview-devel");
check_system_library(@gnomedev_libs,
"libnotify",
"LibNotify",
"libnotify-devel");
# check_system_library(@gnomedev_libs,
# "gtkspell-3.0",
# "GtkSpell",
# "FIXME");
check_system_library(@gnomedev_libs,
"enchant",
"Enchant",
"enchant-devel");
} elsif ($os eq "mandriva") {
check_system_library(@gnomedev_libs,
"cairo-svg >= 1.10",
"Cairo",
"lib{$cpu_arch}cairo-devel");
# lib64cairo-devel-1.10.2-2-mdv2011.0.x86_64
check_system_library(@gnomedev_libs,
"glib-2.0 >= 2.28