desktop: added wxLocale initialization to barrydesktop GUI
[barry.git] / buildgen.sh
blob8991c9d867807c86e313344ceef13bcbccc7ff07
1 #!/bin/sh
3 libtoolit() {
4 # Different name on the Mac
5 libtoolize --force --copy || glibtoolize --force --copy
8 doconf() {
9 aclocal -I $1 && \
10 autoheader && \
11 automake --add-missing --copy --foreign && \
12 autoconf
15 cleangettext() {
16 rm -f ABOUT-NLS \
17 m4/codeset.m4 \
18 m4/gettext.m4 \
19 m4/glibc2.m4 \
20 m4/glibc21.m4 \
21 m4/iconv.m4 \
22 m4/intdiv0.m4 \
23 m4/intl.m4 \
24 m4/intldir.m4 \
25 m4/intlmacosx.m4 \
26 m4/intmax.m4 \
27 m4/inttypes-pri.m4 \
28 m4/inttypes_h.m4 \
29 m4/lcmessage.m4 \
30 m4/lib-ld.m4 \
31 m4/lib-link.m4 \
32 m4/lib-prefix.m4 \
33 m4/lock.m4 \
34 m4/longlong.m4 \
35 m4/nls.m4 \
36 m4/po.m4 \
37 m4/printf-posix.m4 \
38 m4/progtest.m4 \
39 m4/size_max.m4 \
40 m4/stdint_h.m4 \
41 m4/uintmax_t.m4 \
42 m4/visibility.m4 \
43 m4/wchar_t.m4 \
44 m4/wint_t.m4 \
45 m4/xsize.m4 \
46 m4/libtool.m4 \
47 m4/ltoptions.m4 \
48 m4/ltsugar.m4 \
49 m4/ltversion.m4 \
50 m4/lt~obsolete.m4 \
51 po/Makefile.in.in \
52 po/Makevars.template \
53 po/fr.gmo \
54 po/es.gmo \
55 po/stamp-po
59 # Generates the build system.
62 if [ "$1" = "cleanall" ] ; then
63 make distclean
64 (cd gui && make distclean)
65 (cd desktop && make distclean)
66 (cd opensync-plugin && make distclean)
67 (cd opensync-plugin-0.4x && make distclean)
68 ./buildgen.sh clean
69 (cd gui && ./buildgen.sh clean)
70 (cd desktop && ./buildgen.sh clean)
71 (cd opensync-plugin && ./buildgen.sh clean)
72 (cd opensync-plugin-0.4x && ./buildgen.sh clean)
73 cleangettext
74 (cd gui && cleangettext && rmdir m4)
75 (cd desktop && cleangettext && rmdir m4)
76 (cd opensync-plugin && cleangettext)
77 (cd opensync-plugin-0.4x && cleangettext)
78 elif [ "$1" = "clean" ] ; then
79 rm -rf autom4te.cache
80 rm -f Makefile.in aclocal.m4 config.guess config.h.in config.sub \
81 configure depcomp install-sh ltmain.sh missing \
82 src/Makefile.in tools/Makefile.in examples/Makefile.in \
83 man/Makefile.in test/Makefile.in INSTALL config.h.in~ compile
84 # clean up Debian build trails
85 rm -rf debian/barry
86 rm -f build-arch-stamp build-indep-stamp configure-stamp \
87 debian/barry.substvars debian/files \
88 tools/bcharge
89 # clean up ctags trails
90 rm -f src/tags tools/tags examples/tags \
91 gui/src/tags \
92 desktop/src/tags \
93 opensync-plugin/src/tags \
94 opensync-plugin-0.4x/src/tags
95 elif [ "$1" = "ctags" ] ; then
96 echo "Building ctags..."
97 (cd src && ctags -R)
98 (cd tools && ctags -R)
99 (cd examples && ctags -R)
100 (cd gui/src && ctags -R)
101 (cd desktop/src && ctags -R)
102 if [ "$2" = "0.22" ] ; then
103 (cd opensync-plugin/src && ctags -R)
105 if [ "$2" = "0.4x" ] ; then
106 (cd opensync-plugin-0.4x/src && ctags -R)
108 # and one with everything
109 ctags -R -f ~/tags-barry --tag-relative=yes
111 if [ "$2" = "0.22" ] ; then
112 # add opensync library as well (yes, I know this only works for my
113 # setup... sorry) :-)
114 #OS_DIR=~/software/opensync/svn
115 OS_DIR=~/software/opensync/0.22
116 if [ -d $OS_DIR ] ; then
117 echo "Detected 0.22 opensync source tree, building ctags on it..."
118 (cd $OS_DIR && ctags -R -a -f ~/tags-barry --tag-relative=yes)
122 if [ "$2" = "0.4x" ] ; then
123 OS_DIR=~/software/opensync/git/opensync
124 if [ -d $OS_DIR ] ; then
125 echo "Detected 0.4x opensync source tree, building ctags on it..."
126 (cd $OS_DIR && ctags -R -a -f ~/tags-barry --tag-relative=yes)
127 (cd ~/software/opensync/git/osynctool && ctags -R -a -f ~/tags-barry --tag-relative=yes)
130 else
131 #autoreconf -if --include=config
132 #autoreconf -ifv --include=config
134 # Autogenerate the gettext PO support files
135 # Do this for ./ and gui/ and desktop/
136 autopoint
137 (cd gui && autopoint)
138 (cd desktop && autopoint)
140 # If we let autoreconf do this, it will run libtoolize after
141 # creating some or all of the configure files. For example,
142 # it might copy files into ../m4 again while processing the
143 # opensync-plugin/ directory, making those files newer than
144 # the gui/configure file. This will cause configure to
145 # be regenerated (incorrectly) during the make step on some
146 # systems (Fedora 11).
148 # So... we do the libtool stuff all at once at the beginning,
149 # then the rest.
150 libtoolit m4
151 (cd gui && libtoolit m4)
152 (cd desktop && libtoolit m4)
153 (cd opensync-plugin && libtoolit m4)
154 (cd opensync-plugin-0.4x && libtoolit m4)
156 # Now for aclocal, autoheader, automake, and autoconf
157 doconf m4
158 (cd gui && doconf m4)
159 (cd desktop && doconf m4)
160 (cd opensync-plugin && doconf m4)
161 (cd opensync-plugin-0.4x && doconf m4)