summaryrefslogtreecommitdiffstats
path: root/build.xml
blob: c890c1a7de22ba04c7fed929136d18317cb090bb (plain)
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
<project name="Sands" default="dist" basedir=".">
    <description>
        Build file for Sands office data tool
    </description>

  <!-- set global properties for this build -->
  <property name="version"     location="0.45"/>
  <property name="src"         location="src"/>
  <property name="gtk"         location="c:/gtk210"/>
  <property name="lib"         location="lib"/>
  <property name="build"       location="build"/>
  <property name="dist"        location="inkscape"/>

  <target name="init">
    <!-- Create the build directory structure used by compile -->
    <mkdir dir="${build}"/>
    <mkdir dir="${dist}"/>
    <makefile file="config.h">
        #ifndef _CONFIG_H_
        #define _CONFIG_H_

        #ifndef WIN32
        #define WIN32
        #endif

        /*######################################
        ## This is for require-config.h, whose
        ## purpose I cannot fathom.
        ######################################*/
        
        #define PACKAGE_TARNAME

        /*######################################
        #### RESOURCE DIRECTORIES
        ######################################*/

        #define INKSCAPE_DATADIR       "."
        #define PACKAGE_LOCALE_DIR     "locale"


        /*######################################
        #### OTHER DEFINITIONS
        ######################################*/

        #define GETTEXT_PACKAGE "inkscape"

        #define PACKAGE_STRING                VERSION

        #define HAVE_GETOPT_H                 1
        #define HAVE_STRING_H                 1
        #define HAVE_LIBINTL_H                1
        #define HAVE_MALLOC_H                 1
        #define HAVE_STDLIB_H                 1
        #define HAVE_SYS_STAT_H               1

        #define ENABLE_LCMS                   1

        #define ENABLE_NLS                    1
        #define HAVE_BIND_TEXTDOMAIN_CODESET  1

        /* keep binreloc off */
        #define BR_PTHREADS 0
        #undef ENABLE_BINRELOC

        /* CairoPDF options */
        #define HAVE_CAIRO_PDF                1
        #define PANGO_ENABLE_ENGINE           1
        #define RENDER_WITH_PANGO_CAIRO       1

        #define HAVE_GTK_WINDOW_FULLSCREEN    1

        #define g_ascii_strtod fixed_g_ascii_strtod

        #endif /* _CONFIG_H_ */
    </makefile>
  </target>

  <target name="compile" depends="init"
        description="compile the source " >
    <!-- Compile from source to build -->
    <cc cc="gcc" cxx="g++" destdir="${build}/obj">
	    <fileset dir="${src}">
            <!-- THINGS TO EXCLUDE -->
	        <exclude name="ast/.*"/>
	        <exclude name="bonobo/.*"/>
	        <exclude name="deptool.cpp"/>
	        <exclude name="dialogs/filedialog-win32.cpp"/>
	        <exclude name="display/testnr.cpp"/>
	        <exclude name="display/bezier-utils-test.cpp"/>
	        <exclude name="dom/jsdombind.cpp"/>
	        <exclude name="dom/work/.*"/>
	        <exclude name="dom/odf/SvgOdg.cpp"/>
	        <exclude name="extension/api.cpp"/>
	        <exclude name="extension/dxf2svg/.*"/>
	        <exclude name="extension/internal/gnome.cpp"/>
	        <exclude name="extension/script/bindtest.cpp"/>
	        <exclude name="extension/script/cpptest.cpp"/>
	        <exclude name="extension/plugin/.*"/>
	        <exclude name="extract-uri-test.cpp"/>
	        <exclude name="helper/units-test.cpp"/>
	        <exclude name="inkview.cpp"/>
	        <exclude name="libnr/in-svg-plane-test.cpp"/>
	        <exclude name="libnr/nr-compose-reference.cpp"/>
	        <exclude name="libnr/nr-compose-test.cpp"/>
	        <exclude name="libnr/nr-matrix-test.cpp"/>
	        <exclude name="libnr/nr-point-fns-test.cpp"/>
	        <exclude name="libnr/nr-rotate-fns-test.cpp"/>
	        <exclude name="libnr/nr-rotate-test.cpp"/>
	        <exclude name="libnr/nr-scale-test.cpp"/>
	        <exclude name="libnr/nr-translate-test.cpp"/>
	        <exclude name="libnr/nr-types-test.cpp"/>
	        <exclude name="livarot/Path-test.cpp"/>
	        <exclude name="mod360-test.cpp"/>
	        <exclude name="trace/potrace/potest.cpp"/>
	        <exclude name="round-test.cpp"/>
	        <exclude name="sp-gradient-test.cpp"/>
	        <exclude name="svg/ftos.cpp"/>
	        <exclude name="utest/.*"/>
	        <exclude name="widgets/test-widgets.cpp"/>
	        <exclude name="xml/quote-test.cpp"/>
	        <exclude name="xml/repr-action-test.cpp"/>
	        <exclude name="io/streamtest.cpp"/>
            <!--JABBER-->
	        <exclude name="pedro/pedrogui.cpp"/>
	        <exclude name="pedro/pedrogui.h"/>
	        <exclude name="pedro/work/.*"/>
            <!--WHITEBOARD-->
	        <exclude name="ui/dialog/session-player.cpp"/>
	        <exclude name="ui/dialog/whiteboard-connect.cpp"/>
	        <exclude name="ui/dialog/whiteboard-sharewithchat.cpp"/>
	        <exclude name="ui/dialog/whiteboard-sharewithuser.cpp"/>
	        <exclude name="dialogs/whiteboard-connect-dialog.cpp"/>
	        <exclude name="dialogs/whiteboard-common-dialog.cpp"/>
	        <exclude name="dialogs/whiteboard-sharewithchat-dialog.cpp"/>
	        <exclude name="dialogs/whiteboard-sharewithuser-dialog.cpp"/>
	        <exclude name="jabber_whiteboard/node-tracker.cpp"/>
	        <exclude name="jabber_whiteboard/node-utilities.cpp"/>
            <!--WHITEBOARD-->
	        <exclude name="removeoverlap/placement_SolveVPSC.cpp"/>
	        <exclude name="removeoverlap/placement_SolveVPSC.h"/>
	        <exclude name="removeoverlap/test.cpp"/>
	        <exclude name="removeoverlap/remove_rectangle_overlap-test.cpp"/>
	        <exclude name="removeoverlap/remove_rectangle_overlap-test.h"/>
	    </fileset>
        <flags>
            -Wall -g -O3
			-mms-bitfields
        </flags>
        <defines>
            -DVERSION=\"${version}\"
            -DHAVE_CONFIG_H
            -DXP_WIN <!-- for JS -->
			-D_INTL_REDIRECT_INLINE
            -DWITH_INKBOARD -DHAVE_SSL <!-- inkboard -->
        </defines>
        <includes>
            -I${gtk}/include
			<!-- GTK / GTKMM -->
            -I${gtk}/include/glibmm-2.4
		    -I${gtk}/lib/glibmm-2.4/include
            -I${gtk}/include/gtkmm-2.4
		    -I${gtk}/lib/gtkmm-2.4/include
            -I${gtk}/include/gdkmm-2.4
		    -I${gtk}/lib/gdkmm-2.4/include
            -I${gtk}/include/pangomm-1.4
            -I${gtk}/include/atkmm-1.6
            -I${gtk}/include/cairomm-1.0
            -I${gtk}/include/sigc++-2.0
		    -I${gtk}/lib/sigc++-2.0/include
            -I${gtk}/include/gtk-2.0
		    -I${gtk}/lib/gtk-2.0/include
            -I${gtk}/include/atk-1.0
		    -I${gtk}/include/pango-1.0
            -I${gtk}/include/glib-2.0
		    -I${gtk}/lib/glib-2.0/include
		    <!-- OTHER -->
            -I${gtk}/include/libxml2 
			-I${gtk}/include/freetype2
		    -I${gtk}/include/cairo
		    <!-- PERL -->
		    -Wno-comment -I${gtk}/perl/lib/CORE
		    <!-- PYTHON -->
		    -I${gtk}/python/include
        </includes>
	</cc>
  </target>
  
  <target name="lib" depends="compile">
    <staticlib file="${build}/libinkscape.a">
	   <fileset dir="${build}/obj">
	       <exclude name="main,o"/>
	       <exclude name="winmain,o"/>
	   </fileset>
	</staticlib>
  </target>

  <target name="i18n" depends="compile">
    <msgfmt todir="${build}/po">
	   <fileset dir="po">
	   </fileset>
	</msgfmt>
  </target>

  <target name="link" depends="lib">
    <rc command="windres -o" 
	    file="${src}/inkscape.rc"
	    out="${build}/inkres.o">
		<flags>
		--include-dir=${src}
		</flags>
	</rc>
    <link command="g++" out="${build}/inkscape.exe">
       <flags>
       </flags>
	   <fileset dir="${build}">
	       <include name="inkres.o"/>
	       <include name="obj/main.o"/>
	       <include name="obj/winmain.o"/>
	       <include name="libinkscape.a"/>
	   </fileset>
	   <libs>
	       -L${gtk}/lib
           -lgtkmm-2.4 -lgdkmm-2.4 -lglibmm-2.4
           -latkmm-1.6 -lpangomm-1.4 -lsigc-2.0
           -lgtk-win32-2.0 -lgdk-win32-2.0 -latk-1.0
           -lgdk_pixbuf-2.0
           -lpangocairo-1.0 -lpangoft2-1.0 -lpangowin32-1.0 -lpango-1.0
           -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lglib-2.0 -lcairo
           <!-- PERL -->
		   -L${gtk}/perl/lib/CORE -lperl58
           <!-- PYTHON -->
           -L${gtk}/python/libs -lpython24
           ${gtk}/bin/libxml2.dll
           ${gtk}/lib/iconv.lib
           -lfreetype.dll -lfontconfig.dll
           -llcms.dll
           -lssl -lcrypto
           -lpng -lpopt ${gtk}/lib/zdll.lib
           -lgc -mwindows -lws2_32 -lintl -lm
	   </libs>
	</link>
	<!--<strip file="${build}/inkscape.exe"/>-->
  </target>

  <target name="dist" depends="link,i18n"
        description="generate the distribution" >
    <!-- Create the distribution directory -->
    <copy file="${build}/inkscape.exe" todir="${dist}"/>
    <copy file="AUTHORS" todir="${dist}"/>
    <copy file="COPYING" todir="${dist}"/>
    <copy file="COPYING.LIB" todir="${dist}"/>
    <copy file="NEWS" todir="${dist}"/>
    <copy file="README" todir="${dist}"/>
    <copy file="TRANSLATORS" todir="${dist}"/>
    <copy file="${gtk}/bin/libatkmm-1.6-1.dll" todir="${dist}"/>
    <copy file="${gtk}/bin/libglibmm-2.4-1.dll" todir="${dist}"/>
    <copy file="${gtk}/bin/libgtkmm-2.4-1.dll" todir="${dist}"/>
    <copy file="${gtk}/bin/libgdkmm-2.4-1.dll" todir="${dist}"/>
    <copy file="${gtk}/bin/libpangomm-1.4-1.dll" todir="${dist}"/>
    <copy file="${gtk}/bin/libcairomm-1.0-1.dll" todir="${dist}"/>
    <copy file="${gtk}/bin/libsigc-2.0-0.dll" todir="${dist}"/>
    <copy file="${gtk}/bin/freetype6.dll" todir="${dist}"/>
    <copy file="${gtk}/bin/libatk-1.0-0.dll" todir="${dist}"/>
    <copy file="${gtk}/bin/libgdk-win32-2.0-0.dll" todir="${dist}"/>
    <copy file="${gtk}/bin/libgdk_pixbuf-2.0-0.dll" todir="${dist}"/>
    <copy file="${gtk}/bin/libglib-2.0-0.dll" todir="${dist}"/>
    <copy file="${gtk}/bin/libgmodule-2.0-0.dll" todir="${dist}"/>
    <copy file="${gtk}/bin/libgobject-2.0-0.dll" todir="${dist}"/>
    <copy file="${gtk}/bin/libgtk-win32-2.0-0.dll" todir="${dist}"/>
    <copy file="${gtk}/bin/libgthread-2.0-0.dll" todir="${dist}"/>
    <copy file="${gtk}/bin/libcairo-2.dll" todir="${dist}"/>
    <copy file="${gtk}/bin/libpangocairo-1.0-0.dll" todir="${dist}"/>
    <copy file="${gtk}/bin/libpango-1.0-0.dll" todir="${dist}"/>
    <copy file="${gtk}/bin/libpangoft2-1.0-0.dll" todir="${dist}"/>
    <copy file="${gtk}/bin/libpangowin32-1.0-0.dll" todir="${dist}"/>
    <copy file="${gtk}/bin/freetype6.dll" todir="${dist}"/>
    <copy file="${gtk}/bin/libfontconfig-1.dll" todir="${dist}"/>
    <copy file="${gtk}/bin/libxml2.dll" todir="${dist}"/>
    <copy file="${gtk}/bin/xmlparse.dll" todir="${dist}"/>
    <copy file="${gtk}/bin/jpeg62.dll" todir="${dist}"/>
    <copy file="${gtk}/bin/libpng13.dll" todir="${dist}"/>
    <copy file="${gtk}/bin/msvcr70.dll" todir="${dist}"/>
    <copy file="${gtk}/bin/msvcr71.dll" todir="${dist}"/>
    <copy file="${gtk}/bin/zlib1.dll" todir="${dist}"/>
    <copy file="${gtk}/bin/iconv.dll" todir="${dist}"/>
    <copy file="${gtk}/bin/popt1.dll" todir="${dist}"/>
    <copy file="${gtk}/bin/liblcms-1.dll" todir="${dist}"/>
    <copy file="${gtk}/bin/intl.dll" todir="${dist}"/>
    <copy file="${gtk}/bin/intl.dll" tofile="${dist}/libintl-2.dll"/>

    <!-- MSGFMT files -->
    <copy todir="${dist}">
	    <fileset dir="${build}/po">
		  <exclude name=".*\.am"/>
		</fileset>
	</copy>

    <!-- GTK -->
    <copy todir="${dist}"> <fileset dir="${gtk}/etc"/> </copy>
    <copy file="${gtk}/share/themes/MS-Windows/gtk-2.0/gtkrc" todir="${dist}/etc/gtk-2.0"/>
    <copy todir="${dist}/lib"> <fileset dir="${gtk}/lib/gtk-2.0"/> </copy>
    <copy todir="${dist}/lib"> <fileset dir="${gtk}/lib/glib-2.0"/> </copy>
    <copy todir="${dist}/lib"> <fileset dir="${gtk}/lib/locale"/> </copy>
    <copy todir="${dist}/lib"> <fileset dir="${gtk}/lib/pango"/> </copy>
    <copy todir="${dist}">
	    <fileset dir="share">
		  <exclude name=".*\.am"/>
		</fileset>
	</copy>
    <copy todir="${dist}/share"> <fileset dir="${gtk}/share/themes"/> </copy>
    <mkdir dir="${dist}/data"/>
    <mkdir dir="${dist}/locale"/>
    <mkdir dir="${dist}/modules"/>
    <mkdir dir="${dist}/plugins"/>
    <copy file="${gtk}/bin/gdb.exe" todir="${dist}"/>

    <!-- PERL -->
    <copy file="${gtk}/perl/bin/perl58.dll" todir="${dist}"/>

    <!-- PYTHON -->
    <copy file="${gtk}/python/python24.dll" todir="${dist}"/>
    <copy file="${gtk}/python/python.exe" todir="${dist}/python"/>
    <copy todir="${dist}/python"> <fileset dir="${gtk}/python/Lib"/> </copy>
    <copy todir="${dist}/python"> <fileset dir="${gtk}/python/DLLs"/> </copy>
    <copy todir="${dist}/python"> <fileset dir="${gtk}/python/Scripts"/> </copy>


  </target>

  <target name="clean"
        description="clean up" >
    <!-- Delete the ${build} and ${dist} directory trees -->
    <delete dir="${build}"/>
    <delete dir="${dist}"/>
  </target>
</project>