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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
|
#! /bin/sh
#
# Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# 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
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# This program is meant for authors or maintainers which want to import
# modules from gnulib into their packages.
progname=$0
package=gnulib
cvsdatestamp='$Date: 2005-05-14 06:03:57 $'
last_checkin_date=`echo "$cvsdatestamp" | sed -e 's,^\$[D]ate: ,,'`
version=`echo "$last_checkin_date" | sed -e 's/ .*$//' -e 's,/,-,g'`
# You can set AUTOCONFPATH to empty if autoconf 2.57 is already in your PATH.
AUTOCONFPATH=
#case $USER in
# bruno )
# AUTOCONFBINDIR=/packages/gnu-inst-autoconf/2.57/bin
# AUTOCONFPATH="eval env PATH=${AUTOCONFBINDIR}:\$PATH "
# ;;
#esac
AUTORECONF="${AUTOCONFPATH}autoreconf"
# func_usage
# outputs to stdout the --help usage message.
func_usage ()
{
echo "\
Usage: gnulib-tool --list
gnulib-tool --import [module1 ... moduleN]
gnulib-tool --create-testdir --dir=directory module1 ... moduleN
gnulib-tool --create-megatestdir --dir=directory [module1 ... moduleN]
gnulib-tool --test --dir=directory module1 ... moduleN
gnulib-tool --megatest --dir=directory [module1 ... moduleN]
gnulib-tool --extract-description module
gnulib-tool --extract-filelist module
gnulib-tool --extract-dependencies module
gnulib-tool --extract-autoconf-snippet module
gnulib-tool --extract-automake-snippet module
gnulib-tool --extract-include-directive module
gnulib-tool --extract-license module
gnulib-tool --extract-maintainer module
Operation modes:
--list print the available module names
--import import the given modules into the current package
--create-testdir create a scratch package with the given modules
--create-megatestdir create a mega scratch package with the given modules
one by one and all together
--test test the combination of the given modules
(recommended to use CC=\"gcc -Wall\" here)
--megatest test the given modules one by one and all together
(recommended to use CC=\"gcc -Wall\" here)
--extract-description extract the description
--extract-filelist extract the list of files
--extract-dependencies extract the dependencies
--extract-autoconf-snippet extract the snippet for configure.ac
--extract-automake-snippet extract the snippet for lib/Makefile.am
--extract-include-directive extract the #include directive
--extract-license report the license terms of the source files
under lib/
--extract-maintainer report the maintainer(s) inside gnulib
Options:
--dir=DIRECTORY specify the target directory
For --import, this specifies where your
configure.ac can be found. Defaults to current
directory.
--lib=LIBRARY Specify the library name. Defaults to 'libgnu'.
--source-base=DIRECTORY
Directory relative --dir where source code is
placed (default \"lib\"), for --import.
--m4-base=DIRECTORY Directory relative --dir where *.m4 macros are
placed (default \"m4\"), for --import.
--aux-dir=DIRECTORY Directory relative --dir where auxiliary build
tools are placed (default \".\"), for --import.
--lgpl Abort if modules aren't available under the LGPL.
Also modify license template from GPL to LGPL.
--libtool Use libtool rules, for --import.
--no-changelog don't update or create ChangeLog files
--dry-run For --import, only print what would have been done.
-s, --symbolic, --symlink Make symbolic links instead of copying files.
Report bugs to <bug-gnulib@gnu.org>."
}
# func_version
# outputs to stdout the --version message.
func_version ()
{
echo "$progname (GNU $package) $version"
echo "Copyright (C) 2002 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
echo "Written by" "Bruno Haible"
}
# func_fatal_error message
# outputs to stderr a fatal error message, and terminates the program.
func_fatal_error ()
{
echo "gnulib-tool: *** $1" 1>&2
echo "gnulib-tool: *** Stop." 1>&2
exit 1
}
# func_cp_if_changed SRC DEST
# Like cp, but avoids munging timestamps if the file hasn't changed.
# Uses also the variables
# - dry_run true if actions shall only be printed, blank otherwise
func_cp_if_changed ()
{
if test $# -ne 2; then
echo "usage: func_cp_if_changed SRC DEST" >&2
fi
test -n "$dry_run" && dry=echo
if cmp "$1" "$2" >/dev/null 2>&1; then
:
else
$dry cp -p "$1" "$2"
fi
}
# func_mv_if_changed SRC DEST
# Like mv, but avoids munging timestamps if the file hasn't changed.
# Removes SRC if it is not renamed.
# Uses also the variables
# - dry_run true if actions shall only be printed, blank otherwise
func_mv_if_changed ()
{
if test $# -ne 2; then
echo "usage: func_mv_if_changed SRC DEST" >&2
fi
test -n "$dry_run" && dry=echo
if cmp "$1" "$2" >/dev/null 2>&1; then
$dry rm "$1"
else
$dry mv "$1" "$2"
fi
}
# func_ln_if_changed SRC DEST
# Like ln -s, but avoids munging timestamps if the link is correct.
# Uses also the variables
# - dry_run true if actions shall only be printed, blank otherwise
func_ln_if_changed ()
{
if test $# -ne 2; then
echo "usage: func_ln_if_changed SRC DEST" >&2
fi
test -n "$dry_run" && dry=echo
if test -L "$2" -a "$1" = "`readlink "$2"`"; then
:
else
$dry rm -f "$2"
$dry ln -s "$1" "$2"
fi
}
# Command-line option processing.
# Removes the OPTIONS from the arguments. Sets the variables:
# - mode list or import or create-testdir or create-megatestdir
# - destdir from --dir
# - libname, supplied_libname from --lib
# - sourcebase from --source-base
# - m4base from --m4-base
# - auxdir from --aux-dir
# - libtool true if --libtool was given, blank otherwise
# - lgpl true if --lgpl was given, blank otherwise
# - do_changelog false if --no-changelog was given, : otherwise
# - dry_run true if --dry-run was given, blank otherwise
{
mode=
destdir=
libname=libgnu
supplied_libname=
sourcebase=
m4base=
auxdir=
libtool=
lgpl=
do_changelog=:
dry_run=
symbolic=
lgpl=
supplied_opts="$@"
while test $# -gt 0; do
case "$1" in
--list | --lis )
mode=list
shift ;;
--import | --impor | --impo | --imp | --im | --i )
mode=import
shift ;;
--create-testdir | --create-testdi | --create-testd | --create-test | --create-tes | --create-te | --create-t )
mode=create-testdir
shift ;;
--create-megatestdir | --create-megatestdi | --create-megatestd | --create-megatest | --create-megates | --create-megate | --create-megat | --create-mega | --create-meg | --create-me | --create-m )
mode=create-megatestdir
shift ;;
--test | --tes | --te | --t )
mode=test
shift ;;
--megatest | --megates | --megate | --megat | --mega | --meg | --me | --m )
mode=megatest
shift ;;
--extract-* )
mode=`echo "X$1" | sed -e 's/^X--//'`
shift ;;
--dir )
shift
if test $# = 0; then
func_fatal_error "missing argument for --dir"
fi
destdir=$1
shift ;;
--dir=* )
destdir=`echo "X$1" | sed -e 's/^X--dir=//'`
shift ;;
--lib )
shift
if test $# = 0; then
func_fatal_error "missing argument for --lib"
fi
libname=$1
supplied_libname=true
shift ;;
--lib=* )
libname=`echo "X$1" | sed -e 's/^X--lib=//'`
supplied_libname=true
shift ;;
--source-base )
shift
if test $# = 0; then
func_fatal_error "missing argument for --source-base"
fi
sourcebase=$1
shift ;;
--source-base=* )
sourcebase=`echo "X$1" | sed -e 's/^X--source-base=//'`
shift ;;
--m4-base )
shift
if test $# = 0; then
func_fatal_error "missing argument for --m4-base"
fi
m4base=$1
shift ;;
--m4-base=* )
m4base=`echo "X$1" | sed -e 's/^X--m4-base=//'`
shift ;;
--aux-dir )
shift
if test $# = 0; then
func_fatal_error "missing argument for --aux-dir"
fi
auxdir=$1
shift ;;
--aux-dir=* )
auxdir=`echo "X$1" | sed -e 's/^X--aux-dir=//'`
shift ;;
--libtool )
libtool=true
shift ;;
--lgpl )
lgpl=true
shift ;;
--no-changelog | --no-changelo | --no-changel | --no-change | --no-chang | --no-chan | --no-cha | --no-ch | --no-c )
do_changelog=false
shift ;;
--dry-run )
dry_run=true
shift ;;
-s | --symbolic | --symlink )
symbolic=true
shift ;;
--help | --hel | --he | --h )
func_usage
exit 0 ;;
--version | --versio | --versi | --vers | --ver | --ve | --v )
func_version
exit 0 ;;
-- )
# Stop option prcessing
shift
break ;;
-* )
echo "gnulib-tool: unknown option $1" 1>&2
echo "Try 'gnulib-tool --help' for more information." 1>&2
exit 1 ;;
* )
break ;;
esac
done
}
case "$0" in
/*) self_abspathname="$0" ;;
*/*) self_abspathname=`pwd`/"$0" ;;
*) for d in `echo ":$PATH:" | sed -e 's/:::*/:.:/g' | sed -e 's/:/ /g'`; do
if test -x "$d/$0" && test ! -d "$d/$0"; then
self_abspathname="$d/$0"
break
fi
done
if test -z "$self_abspathname"; then
func_fatal_error "could not locate the gnulib-tool program - how did you invoke it?"
fi
;;
esac
while test -h "$self_abspathname"; do
# Resolve symbolic link.
sedexpr1='s, -> ,#%%#,'
sedexpr2='s,^.*#%%#\(.*\)$,\1,p'
linkval=`LC_ALL=C ls -l "$self_abspathname" | sed -e "$sedexpr1" | sed -n -e "$sedexpr2"`
test -n "$linkval" || break
case "$linkval" in
/* ) self_abspathname="$linkval" ;;
* ) self_abspathname=`echo "$self_abspathname" | sed -e 's,/[^/]*$,,'`/"$linkval" ;;
esac
done
gnulib_dir=`echo "$self_abspathname" | sed -e 's,/[^/]*$,,'`
# func_all_modules
func_all_modules ()
{
(cd "$gnulib_dir/modules" && ls -1) \
| sed -e '/^CVS$/d' -e '/^ChangeLog$/d' -e '/^README$/d' -e '/^TEMPLATE$/d' -e '/~$/d' \
| sort
}
# func_verify_module
# verifies a module name
func_verify_module ()
{
if test ! -f "$gnulib_dir/modules/$module" \
|| test "CVS" = "$module" \
|| test "ChangeLog" = "$module" \
|| test "README" = "$module" \
|| test "TEMPLATE" = "$module"; then
echo "gnulib-tool: module $module doesn't exist" 1>&2
module=
fi
}
sed_extract_prog=':[ ]*$/ {
:a
n
s/^Description:[ ]*$//
s/^Files:[ ]*$//
s/^Depends-on:[ ]*$//
s/^configure\.ac:[ ]*$//
s/^Makefile\.am:[ ]*$//
s/^Include:[ ]*$//
s/^License:[ ]*$//
s/^Maintainer:[ ]*$//
tb
p
ba
:b
}'
# func_get_description module
func_get_description ()
{
sed -n -e "/^Description$sed_extract_prog" < "$gnulib_dir/modules/$1"
}
# func_get_filelist module
func_get_filelist ()
{
sed -n -e "/^Files$sed_extract_prog" < "$gnulib_dir/modules/$1"
#echo m4/onceonly.m4
echo m4/onceonly_2_57.m4
}
# func_get_dependencies module
func_get_dependencies ()
{
sed -n -e "/^Depends-on$sed_extract_prog" < "$gnulib_dir/modules/$1"
}
# func_get_autoconf_snippet module
func_get_autoconf_snippet ()
{
sed -n -e "/^configure\.ac$sed_extract_prog" < "$gnulib_dir/modules/$1"
}
# func_get_automake_snippet module
func_get_automake_snippet ()
{
sed -n -e "/^Makefile\.am$sed_extract_prog" < "$gnulib_dir/modules/$1"
}
# func_get_include_directive module
func_get_include_directive ()
{
sed -n -e "/^Include$sed_extract_prog" < "$gnulib_dir/modules/$1" | \
sed -e 's/^\(["<]\)/#include \1/'
}
# func_get_license module
func_get_license ()
{
sed -n -e "/^License$sed_extract_prog" < "$gnulib_dir/modules/$1"
}
# func_get_maintainer module
func_get_maintainer ()
{
sed -n -e "/^Maintainer$sed_extract_prog" < "$gnulib_dir/modules/$1"
}
# func_modules_transitive_closure
# Input:
# - modules list of specified modules
# Output:
# - modules list of modules, including dependencies
func_modules_transitive_closure ()
{
while true; do
xmodules=
for module in $modules; do
func_verify_module
if test -n "$module"; then
# Duplicate dependenies are harmless, but Jim wants a warning.
duplicated_deps=`func_get_dependencies $module | sort | uniq -d`
if test -n "$duplicated_deps"; then
echo "warning: module $module has duplicated dependencies: "`echo $duplicated_deps` 1>&2
fi
xmodules="$xmodules $module "`func_get_dependencies $module`
fi
done
xmodules=`for m in $xmodules; do echo $m; done | sort | uniq`
if test "$xmodules" = "$modules"; then
break
fi
modules="$xmodules"
done
}
# func_modules_to_filelist
# Input:
# - modules list of modules, including dependencies
# Output:
# - files list of files
func_modules_to_filelist ()
{
files=
for module in $modules; do
func_verify_module
if test -n "$module"; then
files="$files "`func_get_filelist $module`
fi
done
files=`for f in $files; do echo $f; done | sort | uniq`
}
# func_emit_lib_Makefile_am
# emits the contents of lib/Makefile.am to standard output.
# Input:
# - modules list of modules, including dependencies
# - libname library name
# - libtool true if libtool will be used, blank otherwise
# - cmd (optional) command that led to this invocation
# - actioncmd (optional) command that will reproduce this invocation
func_emit_lib_Makefile_am ()
{
if test -n "$libtool"; then
libext=la
perhapsLT=LT
else
libext=a
perhapsLT=
fi
echo "## Process this file with automake to produce Makefile.in."
echo "# Copyright (C) 2004 Free Software Foundation, Inc."
echo "#"
echo "# This file is free software, distributed under the terms of the GNU"
echo "# General Public License. As a special exception to the GNU General"
echo "# Public License, this file may be distributed as part of a program"
echo "# that contains a configuration script generated by Automake, under"
echo "# the same distribution terms as the rest of that program."
echo "#"
echo "# Generated by gnulib-tool."
if test -n "$cmd"; then
echo "# Invoked as: $cmd"
fi
if test -n "$actioncmd"; then
echo "# Reproduce by: $actioncmd"
fi
echo
# No need to generate dependencies since the sources are in gnulib, not here.
echo "AUTOMAKE_OPTIONS = 1.5 gnits no-dependencies"
echo
echo "noinst_${perhapsLT}LIBRARIES = $libname.$libext"
echo
echo "${libname}_${libext}_SOURCES ="
echo "${libname}_${libext}_LIBADD = @${perhapsLT}LIBOBJS@"
echo "EXTRA_DIST ="
echo "BUILT_SOURCES ="
echo "SUFFIXES ="
echo "MOSTLYCLEANFILES ="
echo "CLEANFILES ="
echo "DISTCLEANFILES ="
echo "MAINTAINERCLEANFILES ="
echo
for module in $modules; do
func_verify_module
if test -n "$module"; then
{
func_get_automake_snippet "$module" |
sed -e 's,lib_\([A-Z][A-Z]*\),'"${libname}_${libext}"'_\1,g'
if test "$module" = 'alloca'; then
echo "${libname}_${libext}_LIBADD += @${perhapsLT}ALLOCA@"
fi
} > amsnippet.tmp
# Skip the contents if its entirely empty.
if grep '[^ ]' amsnippet.tmp > /dev/null ; then
echo "## begin gnulib module $module"
echo
cat amsnippet.tmp
echo "## end gnulib module $module"
echo
fi
rm -f amsnippet.tmp
fi
done
echo
echo "# Makefile.am ends here"
}
# func_import modules
# Uses also the variables
# - destdir target directory
# - libname library name
# - sourcebase directory relative to destdir where to place source code
# - m4base directory relative to destdir where to place *.m4 macros
# - libtool true if libtool will be used, blank otherwise
# - lgpl true if library's license shall be LGPL, blank otherwise
# - dry_run true if actions shall only be printed, blank otherwise
# - symbolic true if files should be symlinked, copied otherwise
# - supplied_opts all options passed to gnulib-tool
func_import ()
{
modules="$1"
modules=`for m in $modules; do echo $m; done | sort | uniq`
# Determine final module list.
func_modules_transitive_closure
echo "Module list with included dependencies:"
echo "$modules" | sed -e 's/^/ /'
# If --lgpl, check the license of modules are compatible.
if test -n "$lgpl"; then
for module in $modules; do
license=`func_get_license $module`
if test $license != LGPL; then
func_fatal_error "incompatible license on module \`$module\`: $license"
fi
done
fi
# Determine final file list.
func_modules_to_filelist
echo "File list:"
echo "$files" | sed -e 's/^/ /'
test -n "$files" \
|| func_fatal_error "refusing to do nothing"
# Copy files or make symbolic links.
for f in $files; do
source=
case "$f" in
build-aux/*) g=`echo "$f" | sed -e "s,^build-aux/,$auxdir/,"` ;;
lib/*) g=`echo "$f" | sed -e "s,^lib/,$sourcebase/,"`; source=true ;;
m4/*) g=`echo "$f" | sed -e "s,^m4/,$m4base/,"` ;;
*) g="$f" ;;
esac
if test -z "$symbolic"; then
func_cp_if_changed "$gnulib_dir/$f" "$destdir/$g"
else
func_ln_if_changed "$gnulib_dir/$f" "$destdir/$g"
fi
# Update license.
if test -z "$dry_run" && test -n "$lgpl" && test -n "$source"; then
perl -pi -e 's/GNU General/GNU Lesser General/g;' \
-e 's/version 2([ ,])/version 2.1\1/g' \
$destdir/$g
fi
done
# Commands printed in a comment in generated files.
cmd="gnulib-tool $supplied_opts"
opt_libtool=
if test -n "$libtool"; then
opt_libtool="--libtool"
fi
opt_lgpl=
if test -n "$lgpl"; then
opt_lgpl="--lgpl"
fi
actioncmd="gnulib-tool --import --dir=$destdir --lib=$libname --source-base=$sourcebase --m4-base=$m4base --aux-dir=$auxdir $opt_libtool $opt_lgpl `echo $modules`"
# Create lib/Makefile.am.
echo "Creating $destdir/$sourcebase/Makefile.am..."
if test -z "$dry_run"; then
func_emit_lib_Makefile_am > $destdir/$sourcebase/Makefile.am.new
else
func_emit_lib_Makefile_am
fi
func_mv_if_changed $destdir/$sourcebase/Makefile.am.new \
$destdir/$sourcebase/Makefile.am
# Create gnulib.m4.
echo "Creating $destdir/$m4base/gnulib.m4..."
(
if test -z "$dry_run"; then
exec > $destdir/$m4base/gnulib.m4.new
else
echo "# $destdir/$m4base/gnulib.m4"
fi
echo "# Copyright (C) 2004 Free Software Foundation, Inc."
echo "# This file is free software, distributed under the terms of the GNU"
echo "# General Public License. As a special exception to the GNU General"
echo "# Public License, this file may be distributed as part of a program"
echo "# that contains a configuration script generated by Autoconf, under"
echo "# the same distribution terms as the rest of that program."
echo "#"
echo "# Generated by gnulib-tool."
echo "#"
echo "# Invoked as: $cmd"
echo "# Reproduce by: $actioncmd"
echo
echo "AC_DEFUN([gl_EARLY],"
echo "["
if grep AC_GNU_SOURCE "$destdir"/$m4base/*.m4 > /dev/null; then
echo " AC_GNU_SOURCE"
fi
if grep gl_USE_SYSTEM_EXTENSIONS "$destdir"/$m4base/*.m4 > /dev/null; then
echo " gl_USE_SYSTEM_EXTENSIONS"
fi
echo "])"
echo
echo "AC_DEFUN([gl_INIT],"
echo "["
for module in $modules; do
func_verify_module
if test -n "$module"; then
func_get_autoconf_snippet "$module" | sed -e '/^$/d;' -e 's/^/ /' -e 's/AM_GNU_GETTEXT(\[external\])/dnl you must add AM_GNU_GETTEXT([external]) or similar to configure.ac./'
if test "$module" = 'alloca' && test -n "$libtool"; then
echo 'changequote(,)dnl'
echo 'LTALLOCA=`echo "$ALLOCA" | sed '"'"'s/\.[^.]* /.lo /g;s/\.[^.]*$/.lo/'"'"'`'
echo 'changequote([, ])dnl'
echo 'AC_SUBST(LTALLOCA)'
fi
fi
done
echo "])"
echo
echo "dnl Usage: gl_MODULES(module1 module2 ...)"
echo "AC_DEFUN([gl_MODULES], [])"
echo
echo "dnl Usage: gl_SOURCE_BASE(DIR)"
echo "AC_DEFUN([gl_SOURCE_BASE], [])"
echo
echo "dnl Usage: gl_M4_BASE(DIR)"
echo "AC_DEFUN([gl_M4_BASE], [])"
echo
echo "dnl Usage: gl_LIB(LIBNAME)"
echo "AC_DEFUN([gl_LIB], [])"
echo
echo "dnl Usage: gl_LGPL"
echo "AC_DEFUN([gl_LGPL], [])"
echo
echo "# gnulib.m4 ends here"
)
func_mv_if_changed $destdir/$m4base/gnulib.m4.new $destdir/$m4base/gnulib.m4
echo "Finished."
echo
echo "You may need to add #include directives for the following .h files."
for module in $modules; do
func_get_include_directive "$module"
done | LC_ALL=C sort -u | sed -e '/^$/d;' -e 's/^/ /'
echo
echo "Don't forget to add \"$sourcebase/Makefile\""
echo "to AC_CONFIG_FILES in \"$configure_ac\" and to mention"
echo "\"`basename $sourcebase`\" in SUBDIRS in some Makefile.am."
}
# func_create_testdir testdir modules
func_create_testdir ()
{
testdir="$1"
modules="$2"
modules=`for m in $modules; do echo $m; done | sort | uniq`
# Determine final module list.
func_modules_transitive_closure
echo "Module list with included dependencies:"
echo "$modules" | sed -e 's/^/ /'
# Determine final file list.
func_modules_to_filelist
echo "File list:"
echo "$files" | sed -e 's/^/ /'
# Create directories.
for d in `echo "$files" | sed -n -e 's,^\(.*\)/[^/]*,\1,p'`; do
if test "$d" = build-aux; then
mkdir -p "$testdir/$auxdir"
else
mkdir -p "$testdir/$d"
fi
done
# Copy files or make symbolic links.
for f in $files; do
case "$f" in
build-aux/*) g=`echo "$f" | sed -e "s,^build-aux/,$auxdir/,"` ;;
*) g="$f" ;;
esac
ln "$gnulib_dir/$f" "$testdir/$g" 2>/dev/null ||
if test -z "$symbolic"; then
cp -p "$gnulib_dir/$f" "$testdir/$g"
else
ln -s "$gnulib_dir/$f" "$testdir/$g"
fi
done
# Create lib/Makefile.am.
mkdir -p "$testdir/lib"
func_emit_lib_Makefile_am > "$testdir/lib/Makefile.am"
# Create m4/Makefile.am.
mkdir -p "$testdir/m4"
(echo "## Process this file with automake to produce Makefile.in."
echo
echo "EXTRA_DIST ="
for f in $files; do
case "$f" in
m4/* )
echo "EXTRA_DIST += "`echo "$f" | sed -e 's,^m4/,,'` ;;
esac
done
) > "$testdir/m4/Makefile.am"
subdirs="lib m4"
if test -f "$testdir"/m4/gettext.m4; then
# Avoid stupid error message from automake:
# "AM_GNU_GETTEXT used but `po' not in SUBDIRS"
mkdir -p "$testdir/po"
(echo "## Process this file with automake to produce Makefile.in."
) > "$testdir/po/Makefile.am"
subdirs="$subdirs po"
fi
# Create Makefile.am.
(echo "## Process this file with automake to produce Makefile.in."
echo
echo "AUTOMAKE_OPTIONS = 1.5 foreign"
echo
echo "SUBDIRS = $subdirs"
echo
echo "ACLOCAL_AMFLAGS = -I m4"
) > "$testdir/Makefile.am"
# Create configure.ac.
(echo "# Process this file with autoconf to produce a configure script."
echo "AC_INIT(dummy,0)"
echo "AM_INIT_AUTOMAKE"
echo
echo "AM_CONFIG_HEADER(config.h)"
echo
echo "AC_PROG_CC"
echo "AC_PROG_INSTALL"
echo "AC_PROG_MAKE_SET"
echo "AC_PROG_RANLIB"
echo
if grep AC_GNU_SOURCE "$testdir"/m4/*.m4 > /dev/null; then
echo "AC_GNU_SOURCE"
echo
fi
if grep gl_USE_SYSTEM_EXTENSIONS "$testdir"/m4/*.m4 > /dev/null; then
echo "gl_USE_SYSTEM_EXTENSIONS"
echo
fi
for module in $modules; do
func_verify_module
if test -n "$module"; then
func_get_autoconf_snippet "$module"
fi
done
echo
makefiles="Makefile"
for d in $subdirs; do
makefiles="$makefiles $d/Makefile"
done
echo "AC_OUTPUT([$makefiles])"
) > "$testdir/configure.ac"
# Create autogenerated files.
(cd "$testdir"
echo "executing ${AUTORECONF} --force --install"
${AUTORECONF} --force --install
)
if grep '^BUILT_SOURCES *+=' "$testdir/lib/Makefile.am" > /dev/null; then
(cd "$testdir"
./configure
cd lib
built_sources=`grep '^BUILT_SOURCES *=' Makefile.in | sed -e 's/^BUILT_SOURCES *=//'`
if test -n "$built_sources"; then
make $built_sources
fi
cd ..
make distclean
)
fi
}
# func_create_megatestdir megatestdir allmodules
func_create_megatestdir ()
{
megatestdir="$1"
allmodules="$2"
if test -z "$allmodules"; then
allmodules=`func_all_modules`
fi
megasubdirs=
# First, all modules one by one.
for onemodule in $allmodules; do
func_create_testdir "$megatestdir/$onemodule" $onemodule
megasubdirs="${megasubdirs}$onemodule "
done
# Then, all modules all together.
# Except fnmatch-posix, which conflicts with fnmatch-gnu. FIXME.
allmodules=`for m in $allmodules; do if test $m != fnmatch-posix; then echo $m; fi; done`
func_create_testdir "$megatestdir/ALL" "$allmodules"
megasubdirs="${megasubdirs}ALL"
# Create Makefile.am.
(echo "## Process this file with automake to produce Makefile.in."
echo
echo "AUTOMAKE_OPTIONS = 1.5 foreign"
echo
echo "SUBDIRS = $megasubdirs"
) > "$megatestdir/Makefile.am"
# Create configure.ac.
(echo "# Process this file with autoconf to produce a configure script."
echo "AC_INIT(dummy,0)"
echo "AM_INIT_AUTOMAKE"
echo
echo "AC_PROG_MAKE_SET"
echo
echo "AC_CONFIG_SUBDIRS([$megasubdirs])"
echo "AC_OUTPUT([Makefile])"
) > "$megatestdir/configure.ac"
# Create autogenerated files.
(cd "$megatestdir"
echo "executing ${AUTORECONF} --force --install"
${AUTORECONF} --force --install
)
}
case $mode in
"" )
func_fatal_error "no mode specified" ;;
list )
func_all_modules
;;
import )
# Where to import.
if test -z "$destdir"; then
destdir=.
fi
test -d "$destdir" \
|| func_fatal_error "destination directory does not exist: $destdir"
# Prefer configure.ac to configure.in
test -f $destdir/configure.in && configure_ac=$destdir/configure.in
test -f $destdir/configure.ac && configure_ac=$destdir/configure.ac
test -f "$configure_ac" \
|| func_fatal_error "cannot find $destdir/configure.ac"
# Get settings.
my_sed_traces='s,#.*$,,; s,^dnl .*$,,; s, dnl .*$,,;
/gl_MODULES[^_]/ {
s,^.*gl_MODULES([[ ]*\([^])]*\).*$,ac_modules="\1",; p;
};
/gl_SOURCE_BASE/ {
s,^.*gl_SOURCE_BASE([[ ]*\([^])]*\).*$,ac_sourcebase="\1",; p;
};
/gl_M4_BASE/ {
s,^.*gl_M4_BASE([[ ]*\([^])]*\).*$,ac_m4base="\1",; p;
};
/gl_LIB/ {
s,^.*gl_LIB([[ ]*\([^])]*\).*$,ac_libname="\1",; p;
};
/AC_CONFIG_AUX_DIR/ {
s,^.*AC_CONFIG_AUX_DIR([[ ]*\([^])]*\).*$,ac_auxdir="\1",; p;
}
/A[CM]_PROG_LIBTOOL/ { s,^.*$,seen_libtool=:,; p; };
/LT_INIT/ { s,^.*$,seen_libtool=:,; p; };
/gl_LGPL/ { s,^.*$,lgpl=true,; p; };
d;'
eval `cat $configure_ac | sed "$my_sed_traces"`
# Override libname?
if test -z "$supplied_libname" && test -n "$ac_libname"; then
libname="$ac_libname"
fi
# Set up source base.
test -z "$sourcebase" && sourcebase="$ac_sourcebase"
test -z "$sourcebase" && sourcebase="lib"
test -d "$destdir/$sourcebase" \
|| (test -z "$dry_run" && mkdir "$destdir/$sourcebase") \
|| func_fatal_error "source base $destdir/$sourcebase doesn't exist"
# Set up m4 base.
test -z "$m4base" && m4base="$ac_m4base"
test -z "$m4base" && m4base="m4"
test -d "$destdir/$m4base" \
|| (test -z "$dry_run" && mkdir "$destdir/$m4base") \
|| func_fatal_error "m4 base $destdir/$m4base doesn't exist"
# Set up auxiliary directory.
test -z "$auxdir" && auxdir="$ac_auxdir"
test -z "$auxdir" && auxdir="."
test -d "$destdir/$auxdir" \
|| (test -z "$dry_run" && mkdir "$destdir/$auxdir") \
|| func_fatal_error "aux directory $destdir/$auxdir doesn't exist"
# Using libtool?
if test -n "$seen_libtool"; then
libtool=true
fi
# What modules to extract.
if test $# = 0; then
modules="$ac_modules"
else
modules="$*"
fi
func_import "$modules"
;;
create-testdir )
if test -z "$destdir"; then
func_fatal_error "please specify --dir option"
fi
mkdir "$destdir"
test -d "$destdir" \
|| func_fatal_error "could not create destination directory"
func_create_testdir "$destdir" "$*"
;;
create-megatestdir )
if test -z "$destdir"; then
func_fatal_error "please specify --dir option"
fi
mkdir "$destdir" || func_fatal_error "could not create destination directory"
func_create_megatestdir "$destdir" "$*"
;;
test )
test -n "$destdir" || destdir=testdir$$
mkdir "$destdir" || func_fatal_error "could not create destination directory"
func_create_testdir "$destdir" "$*"
cd "$destdir"
mkdir build
cd build
../configure
make
make check
make distclean
remaining=`find . -type f -print`
if test -n "$remaining"; then
echo "Remaining files:" $remaining 1>&2
echo "gnulib-tool: *** Stop." 1>&2
exit 1
fi
cd ..
cd ..
rm -rf "$destdir"
;;
megatest )
test -n "$destdir" || destdir=testdir$$
mkdir "$destdir" || func_fatal_error "could not create destination directory"
func_create_megatestdir "$destdir" "$*"
cd "$destdir"
mkdir build
cd build
../configure
make
make check
make distclean
remaining=`find . -type f -print`
if test -n "$remaining"; then
echo "Remaining files:" $remaining 1>&2
echo "gnulib-tool: *** Stop." 1>&2
exit 1
fi
cd ..
cd ..
rm -rf "$destdir"
;;
extract-description )
for module
do
func_verify_module
if test -n "$module"; then
func_get_description "$module"
fi
done
;;
extract-filelist )
for module
do
func_verify_module
if test -n "$module"; then
func_get_filelist "$module"
fi
done
;;
extract-dependencies )
for module
do
func_verify_module
if test -n "$module"; then
func_get_dependencies "$module"
fi
done
;;
extract-autoconf-snippet )
for module
do
func_verify_module
if test -n "$module"; then
func_get_autoconf_snippet "$module"
fi
done
;;
extract-automake-snippet )
for module
do
func_verify_module
if test -n "$module"; then
func_get_automake_snippet "$module"
fi
done
;;
extract-include-directive )
for module
do
func_verify_module
if test -n "$module"; then
func_get_include_directive "$module"
fi
done
;;
extract-license )
for module
do
func_verify_module
if test -n "$module"; then
func_get_license "$module"
fi
done
;;
extract-maintainer )
for module
do
func_verify_module
if test -n "$module"; then
func_get_maintainer "$module"
fi
done
;;
* )
func_fatal_error "unknown operation mode --$mode" ;;
esac
exit 0
|