Code

Updating the READMEs to better handle OSX.
[inkscape.git] / build.xml
1 <!--
2  * Inkscape build file.
3  *
4  * See buildtool.cpp for use.
5  *
6  * Authors:
7  *   Bob Jamison
8  *   Others 
9  *
10  * Copyright (C) 2006-2008 Inkscape.org
11  *
12  *  This library is free software; you can redistribute it and/or
13  *  modify it under the terms of the GNU Lesser General Public
14  *  License as published by the Free Software Foundation; either
15  *  version 2.1 of the License, or (at your option) any later version.
16  *
17  *  This library is distributed in the hope that it will be useful,
18  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
19  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
20  *  Lesser General Public License for more details.
21  *
22  *  You should have received a copy of the GNU Lesser General Public
23  *  License along with this library; if not, write to the Free Software
24  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
25 -->
29 <!--
30 ########################################################################
31 ## P R O J E C T   :   I N K S C A P E
32 ########################################################################
33 -->
34 <project name="Inkscape" default="dist-all" basedir=".">
35     <description>
36         Build file for the Inkscape SVG editor.  This file
37         was written for GTK-2.10 on Win32, but it should work
38         well for other types of builds with only minor adjustments.
39         Note that the default target is 'dist-all'.  You can execute other
40         targets instead, by "btool {target}",  like  "btool compile", if
41         you want to save time, or "dist-inkscape" if you don't want inkview.
42     </description>
44   <!-- set global properties for this build -->
45   <property name="version"       value="0.47+devel"/>
46   <property name="src"           location="src"/>
47   <property name="lib"           location="lib"/>
48   <property name="build"         location="build"/>
49   <property name="dist"          location="inkscape"/>
51   <!-- Use these settings for the native compiler -->  
52   <!-- -->
53   <property name="arch"          value="mingw32-"/>
54   <property name="archutil"      value=""/>
55   <property name="devlibs"       location="${env.DEVLIBS_PATH}"/>
56   <property name="mingw_bin"     location="${env.MINGW_BIN}"/>
57   <property name="cxxtest"       location="cxxtest"/>
58   <property name="python"        location="${devlibs}/python/python.exe"/>
59   <!-- -->
61   <!-- Use these settings for the cross compiler -->  
62   <!--
63   <property name="arch"          value="i686-pc-mingw32-"/>
64   <property name="archutil"      value="${arch}"/>
65   <property name="devlibs"       location="/target"/>
66   <property name="mingw_bin"     location="${env.MINGW_BIN}"/>
67   <property name="cxxtest"       location="cxxtest"/>
68   <property name="python"        location="python"/>
69   -->
71   <!-- Extra properties -->  
72   <property name="refresh"       value="false"/>
74   <!--
75     This is for package-config.  With these two settings, pkg-config
76     queries can be as simple as ${pcc.packageName} for cflags, and
77     ${pcl.packageName} for libs.  Dependencies are calculated automatically.
78   -->
79   <property name="pkg-config-path"   location="${devlibs}/lib/pkgconfig"/>
80   <property name="pkg-config-prefix" location="${devlibs}"/>
83   <!--
84   ########################################################################
85   ## T A R G E T    :    I N I T
86   ########################################################################
87   -->
88   <target name="init"
89       description=
90       "Do all preparatory tasks, like make directories and copy files">
93     <mkdir dir="${build}"/>
94     <mkdir dir="${build}/java"/>
95     <mkdir dir="${build}/java/classes"/>
96     <mkdir dir="${build}/java/lib"/>
97     <mkdir dir="${dist}"/>
98     
99     <copy file="${src}/helper/sp-marshal.h.mingw"
100           tofile="${src}/helper/sp-marshal.h"/>
101     <copy file="${src}/helper/sp-marshal.cpp.mingw"
102           tofile="${src}/helper/sp-marshal.cpp"/>
103           
104     <!--makefile file="${src}/inkscape-version.cpp">
105         namespace Inkscape {
106             char const *version_string = "${version} ${svn.revision}";
107         }
108     </makefile-->
109     <makefile file="${src}/inkscape-version.cpp">
110         namespace Inkscape {
111             char const *version_string = "${version}";
112         }
113     </makefile>
114     <makefile file="config.h">
115         #ifndef _CONFIG_H_
116         #define _CONFIG_H_
118         #ifndef WIN32
119         #define WIN32
120         #endif
122         /*######################################
123         ## This is for require-config.h, whose
124         ## purpose I cannot fathom.
125         ######################################*/
126         
127         #define PACKAGE_TARNAME
129         /*######################################
130         #### RESOURCE DIRECTORIES
131         ######################################*/
133         #define INKSCAPE_DATADIR       "."
134         #define PACKAGE_LOCALE_DIR     "locale"
137         /*######################################
138         #### OTHER DEFINITIONS
139         ######################################*/
141         #define GETTEXT_PACKAGE "inkscape"
143         #define PACKAGE_STRING                VERSION
145         #define HAVE_GETOPT_H                 1
146         #define HAVE_STRING_H                 1
147         #define HAVE_LIBINTL_H                1
148         #define HAVE_MALLOC_H                 1
149         #define HAVE_STDLIB_H                 1
150         #define HAVE_SYS_STAT_H               1
151         #define HAVE_INTTYPES_H               1
152         #define HAVE_OPENMP                   1
154         #define ENABLE_LCMS                   1
156         #define ENABLE_NLS                    1
157         #define HAVE_BIND_TEXTDOMAIN_CODESET  1
159         /* keep binreloc off */
160         #define BR_PTHREADS 0
161         #undef ENABLE_BINRELOC
163         /* CairoPDF options */
164         #define HAVE_CAIRO_PDF                1
165         #define PANGO_ENABLE_ENGINE           1
166         #define RENDER_WITH_PANGO_CAIRO       1
168         #define HAVE_GTK_WINDOW_FULLSCREEN    1
169         
170         /* internal interpreter */
171         #define WITH_PYTHON                   1
173         /* shared whiteboard */
174         #undef WITH_INKBOARD
175         #undef HAVE_SSL
176         
177         /* use poppler for pdf import? */
178         #define HAVE_POPPLER                  1
179         #define HAVE_POPPLER_CAIRO            1
181         /* do we want bitmap manipulation? */
182         #define WITH_IMAGE_MAGICK             1
184         /* Allow reading WordPerfect? */
185         #define WITH_LIBWPG                   1
187         /* Do we support SVG Fonts? */
188         #define ENABLE_SVG_FONTS              1
190         /* Do we want experimental, unsupported, unguaranteed, etc., LivePathEffects enabled? */
191         #define LPE_ENABLE_TEST_EFFECTS    1
193         #define HAVE_ASPELL                   1
195         #endif /* _CONFIG_H_ */
196     </makefile>
197   </target>
199   <!--
200   ########################################################################
201   ## T A R G E T    :    C X X T E S T
202   ########################################################################
203   -->
204   <target name="cxxtest" depends="init"
205         description="generate test files" >
207     <!-- Generate CxxTest files -->
208     <cxxtestpart command="${python} ${cxxtest}/cxxtestgen.py --have-eh"
209                  out="${src}/test-src.cpp">
210         <fileset dir="${src}">
211             <include name="attributes-test.h"/>
212             <include name="color-profile-test.h"/>
213             <include name="dir-util-test.h"/>
214             <include name="extract-uri-test.h"/>
215             <include name="marker-test.h"/>
216             <include name="mod360-test.h"/>
217             <include name="preferences-test.h"/>
218             <include name="round-test.h"/>
219             <include name="sp-gradient-test.h"/>
220             <include name="sp-style-elem-test.h"/>
221             <include name="syle-test.h"/>
222             <include name="test-helpers.h"/>
223             <include name="verbs-test.h"/>
224         </fileset>
225     </cxxtestpart>
226     <cxxtestpart command="${python} ${cxxtest}/cxxtestgen.py --have-eh"
227                  out="${src}/display/test-display.cpp">
228         <fileset dir="${src}/display">
229             <include name="curve-test.h"/>
230         </fileset>
231     </cxxtestpart>
232     <cxxtestpart command="${python} ${cxxtest}/cxxtestgen.py --have-eh"
233                  out="${src}/helper/test-helper.cpp">
234         <fileset dir="${src}/helper">
235             <include name="units-test.h"/>
236         </fileset>
237     </cxxtestpart>
238     <cxxtestpart command="${python} ${cxxtest}/cxxtestgen.py --have-eh"
239                  out="${src}/libnr/test-nr.cpp">
240         <fileset dir="${src}/libnr">
241             <include name="nr-compose-test.h"/>
242             <include name="nr-types-test.h"/>
243             <include name="nr-translate-test.h"/>
244             <include name="nr-rotate-test.h"/>
245             <include name="nr-scale-test.h"/>
246             <include name="nr-point-fns-test.h"/>
247             <include name="nr-rotate-fns-test.h"/>
248             <include name="in-svg-plane-test.h"/>
249             <include name="nr-matrix-test.h"/>
250         </fileset>
251     </cxxtestpart>
252     <cxxtestpart command="${python} ${cxxtest}/cxxtestgen.py --have-eh"
253                  out="${src}/svg/test-svg.cpp">
254         <fileset dir="${src}/svg">
255             <include name="css-ostringstream-test.h"/>
256             <include name="stringstream-test.h"/>
257             <include name="svg-affine-test.h"/>
258             <include name="svg-color-test.h"/>
259             <include name="svg-length-test.h"/>
260             <include name="svg-path-geom-test.h"/>
261         </fileset>
262     </cxxtestpart>
263     <cxxtestpart command="${python} ${cxxtest}/cxxtestgen.py --have-eh"
264                  out="${src}/util/test-util.cpp">
265         <fileset dir="${src}/util">
266             <include name="list-container-test.h"/>
267         </fileset>
268     </cxxtestpart>
269     <cxxtestpart command="${python} ${cxxtest}/cxxtestgen.py --have-eh"
270                  out="${src}/xml/test-xml.cpp">
271         <fileset dir="${src}/xml">
272             <include name="repr-action-test.h"/>
273             <include name="quote-test.h"/>
274         </fileset>
275     </cxxtestpart>
276     <cxxtestroot command="${python} ${cxxtest}/cxxtestgen.py" 
277                  out="${src}/test-main.cpp"
278                  template="${src}/cxxtest-template.tpl">
279         <fileset dir="${src}">
280             <include name="MultiPrinter.h"/>
281             <include name="PylogFormatter.h"/>
282             <include name="TRPIFormatter.h"/>
283         </fileset>
284     </cxxtestroot>
285   </target>
288   <!--
289   ########################################################################
290   ## T A R G E T    :    C O M P I L E
291   ########################################################################
292   -->
293   <target name="compile" depends="cxxtest"
294         description="compile the source to .o" >
296     <!-- Compile from source to build -->
297     <cc cc="${arch}gcc" cxx="${arch}g++"
298              destdir="${build}/obj"
299              continueOnError="true"
300              refreshCache="${refresh}">
301         <fileset dir="${src}">
302             <!-- THINGS TO EXCLUDE -->
303             <exclude name="2geom/chebyshev.cpp"/>
304             <exclude name="ast/.*"/>
305             <exclude name="bonobo/.*"/>
306             <exclude name="deptool.cpp"/>
307             <exclude name="cxxtests.cpp"/>
308             <!--<exclude name="test-main.cpp"/>-->
309             <!--<exclude name="test-src.cpp"/>-->
310             <exclude name="display/test-display.cpp"/>
311             <exclude name="display/testnr.cpp"/>
312             <exclude name="dom/work/.*"/>
313             <exclude name="dom/odf/SvgOdg.cpp"/>
314             <exclude name="extension/api.cpp"/>
315             <exclude name="extension/dxf2svg/.*"/>
316             <exclude name="extension/implementation/plugin.cpp"/>
317             <exclude name="extension/script/bindtest.cpp"/>
318             <exclude name="extension/script/cpptest.cpp"/>
319             <exclude name="extension/plugin/.*"/>
320             <exclude name="extract-uri-test.cpp"/>
321             <exclude name="helper/units-test.cpp"/>
322             <!-- exclude name="inkview.cpp"/-->
323             <!--<exclude name="libnr/test-nr.cpp"/>-->
324             <exclude name="libnr/test-nr-main.cpp"/>
325             <exclude name="libnr/testnr.cpp"/>
326             <exclude name="libnr/in-svg-plane-test.cpp"/>
327             <exclude name="libnr/nr-matrix-test.cpp"/>
328             <exclude name="libnr/nr-point-fns-test.cpp"/>
329             <exclude name="libnr/nr-rotate-fns-test.cpp"/>
330             <exclude name="libnr/nr-rotate-test.cpp"/>
331             <exclude name="libnr/nr-scale-test.cpp"/>
332             <exclude name="libnr/nr-translate-test.cpp"/>
333             <exclude name="libnr/nr-types-test.cpp"/>
334             <exclude name="livarot/Path-test.cpp"/>
335             <exclude name="mod360-test.cpp"/>
336             <exclude name="trace/potrace/potest.cpp"/>
337             <exclude name="round-test.cpp"/>
338             <exclude name="sp-gradient-test.cpp"/>
339             <exclude name="style-test.cpp"/>
340             <exclude name="svg/ftos.cpp"/>
341             <!--<exclude name="svg/test-svg.cpp"/>-->
342             <exclude name="svg/test-svg-main.cpp"/>
343             <exclude name="util/list-container-test.cpp"/>
344             <exclude name="widgets/test-widgets.cpp"/>
345             <exclude name="xml/quote-test.cpp"/>
346             <exclude name="xml/repr-action-test.cpp"/>
347             <exclude name="xml/test-xml.cpp"/>
348             <!--<exclude name="xml/test-xml-main.cpp"/>-->
349             <exclude name="io/streamtest.cpp"/>
350             <!--JABBER-->
351             <exclude name="pedro/pedrogui.cpp"/>
352             <exclude name="pedro/pedrogui.h"/>
353             <exclude name="pedro/work/.*"/>
354             <!--WHITEBOARD-->
355             <exclude name="ui/dialog/session-player.cpp"/>
356             <exclude name="ui/dialog/whiteboard-connect.cpp"/>
357             <exclude name="ui/dialog/whiteboard-sharewithchat.cpp"/>
358             <exclude name="ui/dialog/whiteboard-sharewithuser.cpp"/>
359             <exclude name="dialogs/whiteboard-connect-dialog.cpp"/>
360             <exclude name="dialogs/whiteboard-common-dialog.cpp"/>
361             <exclude name="dialogs/whiteboard-sharewithchat-dialog.cpp"/>
362             <exclude name="dialogs/whiteboard-sharewithuser-dialog.cpp"/>
363             <exclude name="jabber_whiteboard/node-tracker.cpp"/>
364             <exclude name="jabber_whiteboard/node-utilities.cpp"/>
365             <!--OVERLAP-->
366             <exclude name="removeoverlap/placement_SolveVPSC.cpp"/>
367             <exclude name="removeoverlap/placement_SolveVPSC.h"/>
368             <exclude name="removeoverlap/test.cpp"/>
369             <exclude name="removeoverlap/remove_rectangle_overlap-test.cpp"/>
370             <exclude name="removeoverlap/remove_rectangle_overlap-test.h"/>
371         </fileset>
372         <excludeinc dir="${src}">
373             <file name="extension/param"/>
374         </excludeinc>
375         <flags>
376             -Wall -Wformat -Werror=format-security -W -Wpointer-arith -Wcast-align -Wsign-compare -Woverloaded-virtual -Wswitch
377             -O2
378             -mms-bitfields
379             -fopenmp
380         </flags>
381         <defines>
382             -DVERSION=\"${version}\"
383             -DHAVE_CONFIG_H
384             -D_INTL_REDIRECT_INLINE
385             -DHAVE_SSL
386             -DRELAYTOOL_SSL="static const int libssl_is_present=1; static int __attribute__((unused)) libssl_symbol_is_present(char *s){ return 1; }" <!-- inkboard -->
387             -DPOPPLER_NEW_GFXFONT <!-- poppler changed the api for 0.8.3 -->
388         </defines>
389         <includes>
390             -I${devlibs}/include
391             <!-- GTK / GTKMM -->
392             ${pcc.gtkmm-2.4}
393             <!-- OTHER -->
394             -I${devlibs}/include/libxml2 
395             ${pcc.freetype2}
396             ${pcc.cairo}
397             ${pcc.poppler}
398             -I${devlibs}/include/gc
399             ${pcc.libwpg-0.1} ${pcc.libwpg-stream-0.1}
400             -I${cxxtest}
401             <!-- PERL -->
402             <!-- -Wno-comment -I${devlibs}/perl/lib/CORE -->
403             <!-- PYTHON -->
404             -I${devlibs}/python/include
405             <!-- JAVA -->
406             -I${src}/bind/javainc -I${src}/bind/javainc/win32
407         </includes>
408     </cc>
409   </target>
410   
412   <!--
413   ########################################################################
414   ## T A R G E T    :    L I B
415   ########################################################################
416   -->
417   <target name="lib" depends="compile"
418       description="create a static library">
419     <staticlib command="${archutil}ar crsv"
420            file="${build}/libinkscape.a">
421        <fileset dir="${build}/obj">
422            <exclude name="main.o"/>
423            <exclude name="winmain.o"/>
424            <exclude name="inkview.o"/>
425            <!-- CxxTest -->
426            <exclude name="test-main.o"/>
427            <exclude name="test-src.o"/>
428            <exclude name="display/test-display.o"/>
429            <exclude name="helper/test-helper.o"/>
430            <exclude name="libnr/nr-compose-reference.o"/>
431            <exclude name="libnr/test-nr.o"/>
432            <exclude name="svg/test-svg.o"/>
433            <exclude name="util/test-util.o"/>
434            <exclude name="xml/test-xml.o"/>
435        </fileset>
436     </staticlib>
437   </target>
441   <!--
442   ########################################################################
443   ## T A R G E T    :    I 1 8 N
444   ########################################################################
445   -->
446   <target name="i18n" depends="compile"
447       description="compile gettext .po files to .mo">
449     <msgfmt todir="${build}/locale" owndir="true"
450          out="LC_MESSAGES/inkscape.mo">
451        <fileset dir="po">
452        </fileset>
453     </msgfmt>
454   </target>
460   <!--
461   ########################################################################
462   ## T A R G E T    :    L I N K
463   ########################################################################
464   -->
465   <target name="link" depends="lib"
466       description="link objects and library to create executable">
468     <rc command="${archutil}windres" 
469         file="${src}/inkscape.rc"
470         out="${build}/inkres.o">
471         <flags>
472         --include-dir=${src}
473         </flags>
474     </rc>
475     <link command="${arch}g++" out="${build}/inkscape.exe"
476               strip="true" symfile="${build}/inkscape.dbg"
477               stripcommand="${archutil}strip"
478               objcopycommand="${archutil}objcopy">
479        <flags>
480            -mconsole
481            -mthreads
482        </flags>
483        <fileset dir="${build}">
484            <include name="inkres.o"/>
485            <include name="obj/main.o"/>
486            <include name="obj/winmain.o"/>
487            <include name="libinkscape.a"/>
488        </fileset>
489        <!-- WARNING: If you change these libraries, don't forget to change them for inkview and cxxtests below as well! -->
490        <libs>
491            -L${devlibs}/lib
492            ${pcl.poppler-cairo} ${pcl.poppler-glib} ${pcl.poppler} 
493            ${pcl.gtkmm-2.4}  ${pcl.pangoft2} ${pcl.gthread-2.0}
494            ${devlibs}/bin/libxml2.dll
495            ${devlibs}/bin/libxslt.dll
496            ${pcl.cairo} ${pcl.cairomm-1.0}
497            ${pcl.libwpg-0.1} ${pcl.libwpg-stream-0.1}
498            ${devlibs}/lib/iconv.lib
499            ${pcl.ImageMagick++}
500            ${pcl.fontconfig} ${pcl.freetype2}
501            -lssl -lcrypto
502            ${pcl.lcms}
503            ${pcl.gsl}
504            -lpng -ljpeg.dll -ltiff.dll -lpopt ${devlibs}/lib/zdll.lib
505            -lgc
506            -lws2_32 -lintl -lgdi32 -lcomdlg32 -lm
507            -lgomp -lpthreadGC2 -laspell
508            -lmscms  <!-- required for color profiles -->
509        </libs>
510     </link>
511   </target>
512   
517   <!--
518   ########################################################################
519   ## T A R G E T    :    L I N K I N K V I E W
520   ########################################################################
521   -->
522   <target name="linkinkview" depends="lib"
523         description="link objects and library to create Inkview executable">
525     <rc command="${archutil}windres" 
526         file="${src}/inkview.rc"
527         out="${build}/inkviewres.o">
528         <flags>
529         --include-dir=${src}
530         </flags>
531     </rc>
532     <link command="${arch}g++" out="${build}/inkview.exe"
533               strip="true" symfile="${build}/inkview.dbg"
534               stripcommand="${archutil}strip"
535               objcopycommand="${archutil}objcopy">
536        <flags>
537            -mconsole
538            -mthreads
539        </flags>
540        <fileset dir="${build}">
541            <include name="inkviewres.o"/>
542            <include name="obj/inkview.o"/>
543            <include name="libinkscape.a"/>
544        </fileset>
545        <libs>
546            -L${devlibs}/lib
547            ${pcl.poppler-cairo} ${pcl.poppler-glib} ${pcl.poppler} 
548            ${pcl.gtkmm-2.4}  ${pcl.pangoft2} ${pcl.gthread-2.0}
549            ${devlibs}/bin/libxml2.dll
550            ${devlibs}/bin/libxslt.dll
551            ${pcl.cairo} ${pcl.cairomm-1.0}
552            ${pcl.libwpg-0.1} ${pcl.libwpg-stream-0.1}
553            ${devlibs}/lib/iconv.lib
554            ${pcl.ImageMagick++}
555            ${pcl.fontconfig} ${pcl.freetype2}
556            -lssl -lcrypto
557            ${pcl.lcms}
558            ${pcl.gsl}
559            -lpng -ljpeg.dll -ltiff.dll -lpopt ${devlibs}/lib/zdll.lib
560            -lgc
561            -lws2_32 -lintl -lgdi32 -lcomdlg32 -lm
562            -lgomp -lpthreadGC2 -laspell
563            -lmscms  <!-- required for color profiles -->
564        </libs>
565     </link>
566   </target>
570   <!--
571   ########################################################################
572   ## T A R G E T    :    L I N K C X X T E S T S
573   ########################################################################
574   -->
575   <target name="linkcxxtests" depends="lib"
576       description="link objects and library to create executable">
578     <link command="${arch}g++" out="${build}/cxxtests.exe"
579               strip="true" symfile="${build}/cxxtests.dbg"
580               stripcommand="${archutil}strip"
581               objcopycommand="${archutil}objcopy">
582        <flags>
583            -mthreads
584        </flags>
585        <fileset dir="${build}">
586            <include name="obj/test-main.o"/>
587            <include name="obj/test-src.o"/>
588            <include name="obj/display/test-display.o"/>
589            <include name="obj/helper/test-helper.o"/>
590            <include name="obj/libnr/nr-compose-reference.o"/>
591            <include name="obj/libnr/test-nr.o"/>
592            <include name="obj/svg/test-svg.o"/>
593            <include name="obj/util/test-util.o"/>
594            <include name="obj/xml/test-xml.o"/>
595            <include name="libinkscape.a"/>
596        </fileset>
597        <libs>
598            -L${devlibs}/lib
599            ${pcl.poppler-cairo} ${pcl.poppler-glib} ${pcl.poppler} 
600            ${pcl.gtkmm-2.4}  ${pcl.pangoft2} ${pcl.gthread-2.0}
601            ${devlibs}/bin/libxml2.dll
602            ${devlibs}/bin/libxslt.dll
603            ${pcl.cairo} ${pcl.cairomm-1.0}
604            ${pcl.libwpg-0.1} ${pcl.libwpg-stream-0.1}
605            ${devlibs}/lib/iconv.lib
606            ${pcl.ImageMagick++}
607            ${pcl.fontconfig} ${pcl.freetype2}
608            -lssl -lcrypto
609            ${pcl.lcms}
610            ${pcl.gsl}
611            -lpng -ljpeg.dll -ltiff.dll -lpopt ${devlibs}/lib/zdll.lib
612            -lgc
613            -lws2_32 -lintl -lgdi32 -lcomdlg32 -lm
614            -lgomp -lpthreadGC2 -laspell
615            -lmscms  <!-- required for color profiles -->
616        </libs>
617     </link>
618   </target>
621   <!--
622   ########################################################################
623   ## T A R G E T    :    D I S T B A S E
624   ########################################################################
625   -->
626   <target name="distbase" depends="i18n"
627       description="generate the distribution directory with all needed files">
629     <!-- Create the distribution directory -->
630     <copy todir="${dist}" file="AUTHORS"/>
631     <copy todir="${dist}" file="COPYING"/>
632     <copy todir="${dist}" file="COPYING.LIB"/>
633     <copy todir="${dist}" file="NEWS"/>
634     <copy todir="${dist}" file="README"/>
635     <copy todir="${dist}" file="TRANSLATORS"/>
636     <copy todir="${dist}" file="${devlibs}/bin/libatkmm-1.6-1.dll"/>
637     <copy todir="${dist}" file="${devlibs}/bin/libglibmm-2.4-1.dll"/>
638     <copy todir="${dist}" file="${devlibs}/bin/libgtkmm-2.4-1.dll"/>
639     <copy todir="${dist}" file="${devlibs}/bin/libgdkmm-2.4-1.dll"/>
640     <copy todir="${dist}" file="${devlibs}/bin/libpangomm-1.4-1.dll"/>
641     <copy todir="${dist}" file="${devlibs}/bin/libcairomm-1.0-1.dll"/>
642     <copy todir="${dist}" file="${devlibs}/bin/libsigc-2.0-0.dll"/>
643     <copy todir="${dist}" file="${devlibs}/bin/freetype6.dll"/>
644     <copy todir="${dist}" file="${devlibs}/bin/libatk-1.0-0.dll"/>
645     <copy todir="${dist}" file="${devlibs}/bin/libgdk-win32-2.0-0.dll"/>
646     <copy todir="${dist}" file="${devlibs}/bin/libgdk_pixbuf-2.0-0.dll"/>
647     <copy todir="${dist}" file="${devlibs}/bin/libglib-2.0-0.dll"/>
648     <copy todir="${dist}" file="${devlibs}/bin/libgmodule-2.0-0.dll"/>
649     <copy todir="${dist}" file="${devlibs}/bin/libgobject-2.0-0.dll"/>
650     <copy todir="${dist}" file="${devlibs}/bin/libgtk-win32-2.0-0.dll"/>
651     <copy todir="${dist}" file="${devlibs}/bin/libgthread-2.0-0.dll"/>
652     <copy todir="${dist}" file="${devlibs}/bin/libgio-2.0-0.dll"/>
653     <copy todir="${dist}" file="${devlibs}/bin/libcairo-2.dll"/>
654     <copy todir="${dist}" file="${devlibs}/bin/libpoppler-3.dll"/>
655     <copy todir="${dist}" file="${devlibs}/bin/libpangocairo-1.0-0.dll"/>
656     <copy todir="${dist}" file="${devlibs}/bin/libpango-1.0-0.dll"/>
657     <copy todir="${dist}" file="${devlibs}/bin/libpangoft2-1.0-0.dll"/>
658     <copy todir="${dist}" file="${devlibs}/bin/libpangowin32-1.0-0.dll"/>
659     <copy todir="${dist}" file="${devlibs}/bin/freetype6.dll"/>
660     <copy todir="${dist}" file="${devlibs}/bin/libfontconfig-1.dll"/>
661     <copy todir="${dist}" file="${devlibs}/bin/libxml2.dll"/>
662     <copy todir="${dist}" file="${devlibs}/bin/libxslt.dll"/>
663     <copy todir="${dist}" file="${devlibs}/bin/libexpat.dll"/>
664     <!--<copy file="${devlibs}/bin/libexpat.dll" tofile="${dist}/xmlparse.dll"/>-->
665     <copy todir="${dist}" file="${devlibs}/bin/libwpg-0.1.dll"/>
666     <copy todir="${dist}" file="${devlibs}/bin/libwpg-stream-0.1.dll"/>
667     <copy todir="${dist}" file="${devlibs}/bin/libwpd-0.8.dll"/>
668     <copy todir="${dist}" file="${devlibs}/bin/libwpd-stream-0.8.dll"/>
669     <copy todir="${dist}" file="${devlibs}/bin/jpeg62.dll"/>
670     <copy todir="${dist}" file="${devlibs}/bin/libpng13.dll"/>
671     <!-- GTK changed their dep file name for PNG!   :-(  -->
672     <copy todir="${dist}" file="${devlibs}/bin/libpng12-0.dll"/>
673     <copy todir="${dist}" file="${devlibs}/bin/libtiff3.dll"/>
674     <copy todir="${dist}" file="${devlibs}/bin/msvcr70.dll"/>
675     <copy todir="${dist}" file="${devlibs}/bin/msvcr71.dll"/>
676     <copy todir="${dist}" file="${devlibs}/bin/zlib1.dll"/>
677     <copy todir="${dist}" file="${devlibs}/bin/iconv.dll"/>
678     <copy todir="${dist}" file="${devlibs}/bin/libpopt-0.dll"/>
679     <copy todir="${dist}" file="${devlibs}/bin/liblcms-1.dll"/>
680     <copy todir="${dist}" file="${devlibs}/bin/intl.dll"/>
681     <copy todir="${dist}" file="${devlibs}/bin/pthreadGC2.dll"/>
682     <copy file="${devlibs}/bin/intl.dll" tofile="${dist}/libintl-2.dll"/>
683     <!-- MINGW dll needed, I think for openmp support  -->
684     <copy todir="${dist}" file="${mingw_bin}/mingwm10.dll"/>
686     <!-- MSGFMT files -->
687     <copy todir="${dist}">
688         <fileset dir="${build}/locale">
689           <exclude name=".*\.am"/>
690         </fileset>
691     </copy>
693     <mkdir dir="${dist}/data"/>
694     <mkdir dir="${dist}/locale"/>
695     <mkdir dir="${dist}/modules"/>
696     <mkdir dir="${dist}/plugins"/>
698     <!-- GTK -->
699     <copy todir="${dist}">     <fileset dir="${devlibs}/etc"/> </copy>
700     <copy todir="${dist}/lib"> <fileset dir="${devlibs}/lib/gtk-2.0"/> </copy>
701     <copy todir="${dist}/lib"> <fileset dir="${devlibs}/lib/glib-2.0"/> </copy>
702     <copy todir="${dist}">
703         <fileset dir="share">
704           <exclude name=".*\.am"/>
705           <exclude name=".*\.in"/>
706           <exclude name=".*\.sh"/>
707         </fileset>
708     </copy>
709     <copy todir="${dist}/share"> <fileset dir="${devlibs}/share/locale"/> </copy>
710     <copy todir="${dist}/share"> <fileset dir="${devlibs}/share/themes"/> </copy>
711     <copy todir="${dist}/share"> <fileset dir="${devlibs}/share/poppler"/> </copy>
712     <copy todir="${dist}" file="${devlibs}/bin/gdb.exe"/>
714     <!-- Aspell dictionaries -->
715     <copy todir="${dist}/lib"> <fileset dir="${devlibs}/lib/aspell-0.60"/> </copy>
717     <!-- Necessary to run extensions on windows if it is not in the path -->
718     <copy todir="${dist}" file="${devlibs}/bin/gspawn-win32-helper.exe"/>
719     <copy todir="${dist}" file="${devlibs}/bin/gspawn-win32-helper-console.exe"/>
721     <!-- PERL -->
722     <copy todir="${dist}" file="${devlibs}/perl/bin/perl58.dll"/>
724     <!-- PYTHON -->
725     <copy todir="${dist}" file="${devlibs}/python/python25.dll"/>
726     <copy todir="${dist}/python" file="${devlibs}/python/python.exe" />
727     <copy todir="${dist}/python" file="${devlibs}/python/pythonw.exe"/>
728     <copy todir="${dist}/python"> <fileset dir="${devlibs}/python/Lib"/> </copy>
729     <copy todir="${dist}/python"> <fileset dir="${devlibs}/python/DLLs"/> </copy>
730     <copy todir="${dist}/python"> <fileset dir="${devlibs}/python/Scripts"/> </copy>
732     <!--<copy file="${devlibs}/share/themes/MS-Windows/gtk-2.0/gtkrc" todir="${dist}/etc/gtk-2.0"/>-->
733     <makefile file="${dist}/etc/gtk-2.0/gtkrc">
734     gtk-icon-sizes = "gtk-menu=16,16:gtk-small-toolbar=16,16:gtk-large-toolbar=24,24:gtk-dnd=32,32:inkscape-decoration=16,16"
735     gtk-toolbar-icon-size = small-toolbar
737     # disable images in buttons. i've only seen ugly delphi apps use this feature.
738     gtk-button-images = 0
739     
740     # disable the annoying beep in editable controls
741     gtk-error-bell = 0
743     # enable/disable images in menus. most "stock" microsoft apps don't use these, except sparingly.
744     # the office apps use them heavily, though.
745     gtk-menu-images = 1
747     # use the win32 button ordering instead of the GNOME HIG one, where applicable
748     gtk-alternative-button-order = 1
750     style "msw-default"
751     {
752       GtkWidget::interior-focus = 1
753       GtkOptionMenu::indicator-size = { 9, 5 }
754       GtkOptionMenu::indicator-spacing = { 7, 5, 2, 2 }
755       GtkSpinButton::shadow-type = in
757       # Owen and I disagree that these should be themable
758       #GtkUIManager::add-tearoffs = 0
759       #GtkComboBox::add-tearoffs = 0
761       GtkComboBox::appears-as-list = 1
762       GtkComboBox::focus-on-click = 0
764       GOComboBox::add_tearoffs = 0
766       GtkTreeView::allow-rules = 0
767       GtkTreeView::expander-size = 12
769       GtkExpander::expander-size = 12
771       GtkScrolledWindow::scrollbar_spacing = 1
773       GtkSeparatorMenuItem::horizontal-padding = 2
775       engine "wimp"
776       {
777       }
778     }
779     class "*" style "msw-default"
780     </makefile>
782   </target>
785   <!--
786   ########################################################################
787   ## T A R G E T    :    D I S T - I N K S C A P E
788   ########################################################################
789   -->
790   <target name="dist-inkscape" depends="link,distbase"
791       description="copy inkscape to the distribution directory">
793     <!-- Create the distribution directory -->
794     <copy todir="${dist}" file="${build}/inkscape.exe"/>
795     <copy todir="${dist}" file="${build}/inkscape.dbg"/>
796   </target>
799   <!--
800   ########################################################################
801   ## T A R G E T    :    D I S T - I N K V I E W
802   ########################################################################
803   -->
804   <target name="dist-inkview" depends="linkinkview,distbase"
805       description="copy inkview to the distribution directory">
807     <!-- Create the distribution directory -->
808     <copy todir="${dist}" file="${build}/inkview.exe"/>
809     <copy todir="${dist}" file="${build}/inkview.dbg"/>
810   </target>
813   <!--
814   ########################################################################
815   ## T A R G E T    :    C H E C K
816   ########################################################################
817   -->
818   <target name="check" depends="linkcxxtests,distbase"
819       description="perform unit tests">
820     <cxxtestrun command="${build}/cxxtests" workingdir="${dist}" />
821   </target>
824   <!--
825   ########################################################################
826   ## T A R G E T    :    JAVAC
827   ########################################################################
828   -->
829   <target name="javac" depends="init"
830       description="compile java binding classes">
831     <javac srcdir="${src}/bind/java" destdir="${build}/java/classes"/>
832   </target>
835   <!--
836   ########################################################################
837   ## T A R G E T    :    JAR
838   ########################################################################
839   -->
840   <target name="jar" depends="javac"
841       description="pack java classes and resources into a jar file">
842     <copy todir="${build}/java/classes"> <fileset dir="${devlibs}/bind/data"/> </copy>
843     <jar basedir="${build}/java/classes" destfile="${build}/java/lib/inkscape.jar"/>
844   </target>
846   <!--
847   ########################################################################
848   ## T A R G E T    :    BINDDIST
849   ########################################################################
850   -->
851   <target name="binddist" depends="jar"
852       description="pack java classes and resources into a jar file">
853     <copy todir="${dist}/share/bind"> <fileset dir="${devlibs}/bind/java"/> </copy>
854     <copy todir="${dist}/share/bind/java"> <fileset dir="${build}/java/lib"/> </copy>
856   </target>
858   <!--
859   ########################################################################
860   ## T A R G E T    :    BINDCLEAN
861   ########################################################################
862   -->
863   <target name="bindclean" depends=""
864       description="clean up java binding classes">
865         <delete dir="${build}/java"/>
866   </target>
871   <!--
872   ########################################################################
873   ## T A R G E T    :    D I S T - A L L
874   ########################################################################
875   -->
876   <target name="dist-all" depends="dist-inkscape,dist-inkview"
877         description="generate the distribution, along with inkview" >
878   </target>
883   <!--
884   ########################################################################
885   ## T A R G E T    :    D I S T - A L L - C H E C K
886   ########################################################################
887   -->
888   <target name="dist-all-check" depends="dist-all,check"
889         description="generate the distribution, along with inkview and run cxxtests" >
890   </target>
896   <!--
897   ########################################################################
898   ## T A R G E T    :    C L E A N
899   ########################################################################
900   -->
901   <target name="clean" depends="bindclean"
902         description="clean up.  deleting build and distro dirs" >
904     <delete dir="${build}"/>
905     <delete dir="${dist}"/>
906     <delete file="build.dep"/>
907     <delete file="config.h"/>
908     <delete file="${src}/inkscape-version.cpp"/>
909     <delete file="${src}/test-main.cpp"/>
910     <delete file="${src}/test-src.cpp"/>
911     <delete file="${src}/display/test-display.cpp"/>
912     <delete file="${src}/helper/test-helper.cpp"/>
913     <delete file="${src}/libnr/test-nr.cpp"/>
914     <delete file="${src}/svg/test-svg.cpp"/>
915     <delete file="${src}/util/test-util.cpp"/>
916     <delete file="${src}/xml/test-xml.cpp"/>
918   </target>
922 </project>
923 <!--
924 ########################################################################
925 ## E N D
926 ########################################################################
927 -->