Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 160991 | Differences between
and this patch

Collapse All | Expand All

(-)gnome-python-desktop-2.22.0-old/Makefile.am (-1 / +5 lines)
Lines 1-5 Link Here
1
1
2
SUBDIRS =  docs
2
SUBDIRS=
3
4
if BUILD_DOCS
5
  SUBDIRS += docs
6
endif
3
7
4
if BUILD_GNOMEPRINT
8
if BUILD_GNOMEPRINT
5
  SUBDIRS += gnomeprint
9
  SUBDIRS += gnomeprint
(-)gnome-python-desktop-2.22.0-old/configure.ac (-84 / +145 lines)
Lines 46-51 Link Here
46
AC_DEFINE(GNOME_PYTHON_DESKTOP_MICRO_VERSION, gnome_python_desktop_micro_version,
46
AC_DEFINE(GNOME_PYTHON_DESKTOP_MICRO_VERSION, gnome_python_desktop_micro_version,
47
                                            [Gnome-Python-Desktop macro version])
47
                                            [Gnome-Python-Desktop macro version])
48
48
49
dnl AC_ARG_BINDING(NAME, DEFAULT [, MODULENAME])
50
AC_DEFUN(AC_ARG_BINDING,
51
[AC_ARG_ENABLE([$1],
52
             AC_HELP_STRING([--ifelse([$2], [YES], dis, en)able-[$1]],
53
                            [build ifelse([$3], , [$1], [$3]) bindings (default is [$2])]),
54
             [if test "$enable_[$1]" = "yes"; then 
55
	     	build_[$1]=true
56
	      else
57
	      	build_[$1]=false
58
	      fi])
59
])
60
49
GNOME_COMMON_INIT
61
GNOME_COMMON_INIT
50
62
51
AC_DISABLE_STATIC
63
AC_DISABLE_STATIC
Lines 106-117 Link Here
106
fi
118
fi
107
119
108
120
121
AC_ARG_ENABLE([gtk-doc],
122
             AC_HELP_STRING([--disable-gtk-doc],
123
                            [Disables gtk-doc documentation generation]),,
124
		[enable_gtk_doc="yes"])
125
AM_CONDITIONAL(BUILD_DOCS, [test "$enable_gtk_doc" = "yes"])
126
127
dnl default bindings to build:
128
default_bindings_on="applet gnomeprint gnomeprintui gtksourceview wnck totem_plparser gtop nautilusburn mediaprofiles rsvg gnomekeyring gnomedesktop bugbuddy metacity evolution evolution_ecal"
129
default_bindings_off="metacity"
130
default_bindings_all="$default_bindings_on $default_bindings_off"
131
132
AC_ARG_ENABLE([allbindings],
133
             AC_HELP_STRING([--disable-allbindings],
134
                            [Changes all the bindings default values to be either enabled or disabled, overridden by any explicit bindings on the commandline.]),
135
             [if test "$enable_allbindings" = "no"; then
136
	     	default_bindings_off="$default_bindings_all"
137
		default_bindings_on=""
138
	      else
139
	     	default_bindings_off=""
140
		default_bindings_on="$default_bindings_all"
141
	      fi])
142
for binding in $default_bindings_on; do
143
	eval build_$binding=true
144
done
145
for binding in $default_bindings_off; do
146
	eval build_$binding=false
147
done
148
109
dnl should we build the gnome.applet module?
149
dnl should we build the gnome.applet module?
110
build_applet=false
150
AC_ARG_BINDING([applet],[YES],[gnome.applet])
111
PKG_CHECK_MODULES(LIBPANELAPPLET, [libpanelapplet-2.0 >= libpanelapplet_required_version
151
if $build_applet; then
112
                                   gnome-python-2.0 >= gnome_python_required_version],
152
	PKG_CHECK_MODULES(LIBPANELAPPLET, [libpanelapplet-2.0 >= libpanelapplet_required_version
113
  build_applet=true,
153
					   gnome-python-2.0 >= gnome_python_required_version],
114
  build_applet=false)
154
	  build_applet=true,
155
	  build_applet=false)
156
fi
115
AC_SUBST(LIBPANELAPPLET_CFLAGS)
157
AC_SUBST(LIBPANELAPPLET_CFLAGS)
116
AC_SUBST(LIBPANELAPPLET_LIBS)
158
AC_SUBST(LIBPANELAPPLET_LIBS)
117
AM_CONDITIONAL(BUILD_APPLET, $build_applet)
159
AM_CONDITIONAL(BUILD_APPLET, $build_applet)
Lines 123-133 Link Here
123
165
124
166
125
dnl should we build the gnomeprint module?
167
dnl should we build the gnomeprint module?
126
build_gnomeprint=false
168
AC_ARG_BINDING([gnomeprint],[YES])
127
PKG_CHECK_MODULES(LIBGNOMEPRINT, [libgnomeprint-2.2 >= libgnomeprint_required_version
169
if $build_gnomeprint; then
128
                                 gnome-python-2.0 >= gnome_python_required_version],
170
	PKG_CHECK_MODULES(LIBGNOMEPRINT, [libgnomeprint-2.2 >= libgnomeprint_required_version
129
  build_gnomeprint=true,
171
					 gnome-python-2.0 >= gnome_python_required_version],
130
  build_gnomeprint=false)
172
	  build_gnomeprint=true,
173
	  build_gnomeprint=false)
174
fi
131
AC_SUBST(LIBGNOMEPRINT_CFLAGS)
175
AC_SUBST(LIBGNOMEPRINT_CFLAGS)
132
AC_SUBST(LIBGNOMEPRINT_LIBS)
176
AC_SUBST(LIBGNOMEPRINT_LIBS)
133
AM_CONDITIONAL(BUILD_GNOMEPRINT, $build_gnomeprint)
177
AM_CONDITIONAL(BUILD_GNOMEPRINT, $build_gnomeprint)
Lines 147-157 Link Here
147
AC_SUBST(PYGNOMEPRINT_DEFS)
191
AC_SUBST(PYGNOMEPRINT_DEFS)
148
192
149
dnl should we build the gnomeprint.ui module?
193
dnl should we build the gnomeprint.ui module?
150
build_gnomeprintui=false
194
AC_ARG_BINDING([gnomeprintui],[YES],[gnomeprint.ui])
151
PKG_CHECK_MODULES(LIBGNOMEPRINTUI, [libgnomeprintui-2.2 >= libgnomeprintui_required_version,
195
if $build_gnomeprintui; then
152
                                   gnome-python-2.0 >= gnome_python_required_version],
196
	PKG_CHECK_MODULES(LIBGNOMEPRINTUI, [libgnomeprintui-2.2 >= libgnomeprintui_required_version,
153
  build_gnomeprintui=true,
197
					   gnome-python-2.0 >= gnome_python_required_version],
154
  build_gnomeprintui=false)
198
	  build_gnomeprintui=true,
199
	  build_gnomeprintui=false)
200
fi
155
AC_SUBST(LIBGNOMEPRINTUI_CFLAGS)
201
AC_SUBST(LIBGNOMEPRINTUI_CFLAGS)
156
AC_SUBST(LIBGNOMEPRINTUI_LIBS)
202
AC_SUBST(LIBGNOMEPRINTUI_LIBS)
157
AM_CONDITIONAL(BUILD_GNOMEPRINTUI, $build_gnomeprintui)
203
AM_CONDITIONAL(BUILD_GNOMEPRINTUI, $build_gnomeprintui)
Lines 160-169 Link Here
160
fi
206
fi
161
207
162
dnl should we build the gtksourceview module?
208
dnl should we build the gtksourceview module?
163
build_gtksourceview=false
209
AC_ARG_BINDING([gtksourceview],[YES])
164
PKG_CHECK_MODULES(GTKSOURCEVIEW, gtksourceview-1.0 >= gtksourceview_required_version,
210
if $build_gtksourceview; then
165
  build_gtksourceview=true,
211
	PKG_CHECK_MODULES(GTKSOURCEVIEW, gtksourceview-1.0 >= gtksourceview_required_version,
166
  build_gtksourceview=false)
212
	  build_gtksourceview=true,
213
	  build_gtksourceview=false)
214
fi
167
AM_CONDITIONAL(BUILD_GTKSOURCEVIEW, $build_gtksourceview)
215
AM_CONDITIONAL(BUILD_GTKSOURCEVIEW, $build_gtksourceview)
168
if test -n "$export_dynamic"; then
216
if test -n "$export_dynamic"; then
169
  GTKSOURCEVIEW_LIBS=`echo $GTKSOURCEVIEW_LIBS | sed -e "s/$export_dynamic//"`
217
  GTKSOURCEVIEW_LIBS=`echo $GTKSOURCEVIEW_LIBS | sed -e "s/$export_dynamic//"`
Lines 171-180 Link Here
171
219
172
220
173
dnl should we build the wnck module
221
dnl should we build the wnck module
174
build_wnck=false
222
AC_ARG_BINDING([wnck],[YES])
175
PKG_CHECK_MODULES(WNCK, libwnck-1.0 >= wnck_required_version,
223
if $build_wnck; then
176
  build_wnck=true,
224
	PKG_CHECK_MODULES(WNCK, libwnck-1.0 >= wnck_required_version,
177
  build_wnck=false)
225
	  build_wnck=true,
226
	  build_wnck=false)
227
fi
178
AM_CONDITIONAL(BUILD_WNCK, $build_wnck)
228
AM_CONDITIONAL(BUILD_WNCK, $build_wnck)
179
if test -n "$export_dynamic"; then
229
if test -n "$export_dynamic"; then
180
  WNCK_LIBS=`echo $WNCK_LIBS | sed -e "s/$export_dynamic//"`
230
  WNCK_LIBS=`echo $WNCK_LIBS | sed -e "s/$export_dynamic//"`
Lines 183-213 Link Here
183
233
184
234
185
dnl should we build the totem.plparser module?
235
dnl should we build the totem.plparser module?
186
build_totem_plparser=false
236
AC_ARG_BINDING([totem_plparser],[YES],[totem.plparser])
187
PKG_CHECK_MODULES(TOTEM_PLPARSER, [totem-plparser >= totem_required_version  pygtk-2.0 >= pygtk_required_version],
237
if $build_totem_plparser; then
188
  build_totem_plparser=true,
238
	PKG_CHECK_MODULES(TOTEM_PLPARSER, [totem-plparser >= totem_required_version  pygtk-2.0 >= pygtk_required_version],
189
  build_totem_plparser=false)
239
	  build_totem_plparser=true,
240
	  build_totem_plparser=false)
241
fi
190
AM_CONDITIONAL(BUILD_TOTEM_PLPARSER, $build_totem_plparser)
242
AM_CONDITIONAL(BUILD_TOTEM_PLPARSER, $build_totem_plparser)
191
if test -n "$export_dynamic"; then
243
if test -n "$export_dynamic"; then
192
  TOTEM_PLPARSER_LIBS=`echo $TOTEM_PLPARSER_LIBS | sed -e "s/$export_dynamic//"`
244
  TOTEM_PLPARSER_LIBS=`echo $TOTEM_PLPARSER_LIBS | sed -e "s/$export_dynamic//"`
193
fi
245
fi
194
246
195
dnl should we build the gtop module?
247
dnl should we build the gtop module?
196
build_gtop=false
248
AC_ARG_BINDING([gtop],[YES])
197
PKG_CHECK_MODULES(GTOP, [libgtop-2.0 >= libgtop_required_version pygtk-2.0 >= pygtk_required_version],
249
if $build_gtop; then
198
  build_gtop=true,
250
	PKG_CHECK_MODULES(GTOP, [libgtop-2.0 >= libgtop_required_version pygtk-2.0 >= pygtk_required_version],
199
  build_gtop=false)
251
	  build_gtop=true,
252
	  build_gtop=false)
253
fi
200
AM_CONDITIONAL(BUILD_GTOP, $build_gtop)
254
AM_CONDITIONAL(BUILD_GTOP, $build_gtop)
201
if test -n "$export_dynamic"; then
255
if test -n "$export_dynamic"; then
202
  GTOP_LIBS=`echo $GTOP_LIBS | sed -e "s/$export_dynamic//"`
256
  GTOP_LIBS=`echo $GTOP_LIBS | sed -e "s/$export_dynamic//"`
203
fi
257
fi
204
258
205
dnl should we build the nautilusburn module?
259
dnl should we build the nautilusburn module?
206
build_nautilusburn=false
260
AC_ARG_BINDING([nautilusburn],[YES])
207
PKG_CHECK_MODULES(NAUTILUSBURN, [libnautilus-burn >= libnautilus_burn_required_version
261
if $build_nautilusburn; then
208
                                 pygtk-2.0 >= pygtk_required_version],
262
	PKG_CHECK_MODULES(NAUTILUSBURN, [libnautilus-burn >= libnautilus_burn_required_version
209
  build_nautilusburn=true,
263
					 pygtk-2.0 >= pygtk_required_version],
210
  build_nautilusburn=false)
264
	  build_nautilusburn=true,
265
	  build_nautilusburn=false)
266
fi
211
AM_CONDITIONAL(BUILD_NAUTILUSBURN, $build_nautilusburn)
267
AM_CONDITIONAL(BUILD_NAUTILUSBURN, $build_nautilusburn)
212
if test -n "$export_dynamic"; then
268
if test -n "$export_dynamic"; then
213
  NAUTILUSBURN_LIBS=`echo $NAUTILUSBURN_LIBS | sed -e "s/$export_dynamic//"`
269
  NAUTILUSBURN_LIBS=`echo $NAUTILUSBURN_LIBS | sed -e "s/$export_dynamic//"`
Lines 215-238 Link Here
215
271
216
272
217
dnl should we build the mediaprofiles module?
273
dnl should we build the mediaprofiles module?
218
build_mediaprofiles=false
274
AC_ARG_BINDING([mediaprofiles],[YES])
219
PKG_CHECK_MODULES(MEDIAPROFILES, [gnome-media-profiles >= mediaprofiles_required_version
275
if $build_mediaprofiles; then
220
                           pygtk-2.0 >= pygtk_required_version
276
	PKG_CHECK_MODULES(MEDIAPROFILES, [gnome-media-profiles >= mediaprofiles_required_version
221
                           gconf-2.0 >= gconf_required_version],
277
				   pygtk-2.0 >= pygtk_required_version
222
  build_mediaprofiles=true,
278
				   gconf-2.0 >= gconf_required_version],
223
  build_mediaprofiles=false)
279
	  build_mediaprofiles=true,
280
	  build_mediaprofiles=false)
281
fi
224
AM_CONDITIONAL(BUILD_MEDIAPROFILES, $build_mediaprofiles)
282
AM_CONDITIONAL(BUILD_MEDIAPROFILES, $build_mediaprofiles)
225
if test -n "$export_dynamic"; then
283
if test -n "$export_dynamic"; then
226
  MEDIAPROFILES_LIBS=`echo $MEDIAPROFILES_LIBS | sed -e "s/$export_dynamic//"`
284
  MEDIAPROFILES_LIBS=`echo $MEDIAPROFILES_LIBS | sed -e "s/$export_dynamic//"`
227
fi
285
fi
228
286
229
dnl should we build the rsvg module?
287
dnl should we build the rsvg module?
230
build_rsvg=false
288
AC_ARG_BINDING([rsvg],[YES])
231
PKG_CHECK_MODULES(RSVG, [librsvg-2.0 >= rsvg_required_version
289
if $build_rsvg; then
232
                         pycairo
290
	PKG_CHECK_MODULES(RSVG, [librsvg-2.0 >= rsvg_required_version
233
                         pygtk-2.0 >= pygtk_required_version],
291
				 pycairo
234
  build_rsvg=true,
292
				 pygtk-2.0 >= pygtk_required_version],
235
  build_rsvg=false)
293
	  build_rsvg=true,
294
	  build_rsvg=false)
295
fi
236
AM_CONDITIONAL(BUILD_RSVG, $build_rsvg)
296
AM_CONDITIONAL(BUILD_RSVG, $build_rsvg)
237
if test -n "$export_dynamic"; then
297
if test -n "$export_dynamic"; then
238
  RSVG_LIBS=`echo $RSVG_LIBS | sed -e "s/$export_dynamic//"`
298
  RSVG_LIBS=`echo $RSVG_LIBS | sed -e "s/$export_dynamic//"`
Lines 240-249 Link Here
240
300
241
301
242
dnl should we build the metacity module
302
dnl should we build the metacity module
243
AC_ARG_ENABLE([metacity],
303
AC_ARG_BINDING([metacity],[NO])
244
             AC_HELP_STRING([--enable-metacity],
245
                            [build metacity bindings (default is NO)]),
246
             [build_metacity=true], [build_metacity=false])
247
if $build_metacity; then
304
if $build_metacity; then
248
    PKG_CHECK_MODULES(METACITY, libmetacity-private >= metacity_required_version,
305
    PKG_CHECK_MODULES(METACITY, libmetacity-private >= metacity_required_version,
249
      build_metacity=true,
306
      build_metacity=true,
Lines 255-265 Link Here
255
AM_CONDITIONAL(BUILD_METACITY, $build_metacity)
312
AM_CONDITIONAL(BUILD_METACITY, $build_metacity)
256
313
257
dnl should we build the gnomekeyring module
314
dnl should we build the gnomekeyring module
258
build_gnomekeyring=false
315
AC_ARG_BINDING([gnomekeyring],[YES])
259
PKG_CHECK_MODULES(GNOMEKEYRING, [gnome-keyring-1 >= gnomekeyring_required_version
316
if $build_gnomekeyring; then
260
                                 gobject-2.0 >= glib_required_version],
317
	PKG_CHECK_MODULES(GNOMEKEYRING, [gnome-keyring-1 >= gnomekeyring_required_version
261
  build_gnomekeyring=true,
318
					 gobject-2.0 >= glib_required_version],
262
  build_gnomekeyring=false)
319
	  build_gnomekeyring=true,
320
	  build_gnomekeyring=false)
321
fi
263
AM_CONDITIONAL(BUILD_GNOMEKEYRING, $build_gnomekeyring)
322
AM_CONDITIONAL(BUILD_GNOMEKEYRING, $build_gnomekeyring)
264
if test -n "$export_dynamic"; then
323
if test -n "$export_dynamic"; then
265
  GNOMEKEYRING_LIBS=`echo $GNOMEKEYRING_LIBS | sed -e "s/$export_dynamic//"`
324
  GNOMEKEYRING_LIBS=`echo $GNOMEKEYRING_LIBS | sed -e "s/$export_dynamic//"`
Lines 270-313 Link Here
270
fi
329
fi
271
330
272
dnl should we build the gnomedesktop module
331
dnl should we build the gnomedesktop module
273
build_gnomedesktop=false
332
AC_ARG_BINDING([gnomedesktop],[YES])
274
PKG_CHECK_MODULES(GNOMEDESKTOP, [gnome-desktop-2.0 >= gnomedesktop_required_version
333
if $build_gnomedesktop; then
275
                                 pygobject-2.0],
334
	PKG_CHECK_MODULES(GNOMEDESKTOP, [gnome-desktop-2.0 >= gnomedesktop_required_version
276
  build_gnomedesktop=true,
335
					 pygobject-2.0],
277
  build_gnomedesktop=false)
336
	  build_gnomedesktop=true,
337
	  build_gnomedesktop=false)
338
fi
278
AM_CONDITIONAL(BUILD_GNOMEDESKTOP, $build_gnomedesktop)
339
AM_CONDITIONAL(BUILD_GNOMEDESKTOP, $build_gnomedesktop)
279
if test -n "$export_dynamic"; then
340
if test -n "$export_dynamic"; then
280
  GNOMEDESKTOP_LIBS=`echo $GNOMEDESKTOP_LIBS | sed -e "s/$export_dynamic//"`
341
  GNOMEDESKTOP_LIBS=`echo $GNOMEDESKTOP_LIBS | sed -e "s/$export_dynamic//"`
281
fi
342
fi
282
343
283
dnl Check for bug-buddy
344
dnl Check for bug-buddy
284
build_bugbuddy=false
345
AC_ARG_BINDING([bugbuddy],[YES])
285
AC_PATH_PROG(BUG_BUDDY, bug-buddy)
346
if $build_bugbuddy; then
286
if test "x$BUG_BUDDY" != "x"; then 
347
	AC_PATH_PROG(BUG_BUDDY, bug-buddy)
287
  AC_MSG_CHECKING([whether bug-buddy >= 2.16])
348
	if test "x$BUG_BUDDY" != "x"; then 
288
  if $BUG_BUDDY --version | $PYTHON -c ["import sys; sys.exit([int(s) for s in sys.stdin.read().split()[2].split('.')] < [2,16])"]; then
349
	  AC_MSG_CHECKING([whether bug-buddy >= 2.16])
289
    AC_MSG_RESULT([yes])
350
	  if $BUG_BUDDY --version | $PYTHON -c ["import sys; sys.exit([int(s) for s in sys.stdin.read().split()[2].split('.')] < [2,16])"]; then
290
    build_bugbuddy=true
351
	    AC_MSG_RESULT([yes])
291
  else
352
	    build_bugbuddy=true
292
    AC_MSG_RESULT([no])
353
	  else
293
    build_bugbuddy=false
354
	    AC_MSG_RESULT([no])
294
  fi
355
	    build_bugbuddy=false
356
	  fi
357
	fi
295
fi
358
fi
296
AM_CONDITIONAL(BUILD_BUGBUDDY, $build_bugbuddy)
359
AM_CONDITIONAL(BUILD_BUGBUDDY, $build_bugbuddy)
297
360
298
dnl should we build the evolution module
361
dnl should we build the evolution module
299
AC_ARG_ENABLE(evolution,
362
AC_ARG_BINDING([evolution],[YES])
300
  AC_HELP_STRING([--enable-evolution], [Enable Evolution support]),
301
  enable_evolution=$enableval, enable_evolution=yes)
302
363
303
dnl can also build without ecal support (desirable for maemo)
364
dnl can also build without ecal support (desirable for maemo)
304
AC_ARG_ENABLE(evolution-ecal,
365
AC_ARG_BINDING([evolution_ecal],[YES],[Evolution ECal])
305
  AC_HELP_STRING([--enable-evolution-ecal], [Enable Evolution ECal support]),
366
306
  enable_evolution_ecal=$enableval, enable_evolution_ecal=yes)
367
if $build_evolution; then
307
308
build_evolution=false
309
build_evolution_ecal=false
310
if test "$enable_evolution" = yes; then
311
    PKG_CHECK_MODULES(EVOLUTION_EBOOK, [libebook-1.2 >= libebook_required_version
368
    PKG_CHECK_MODULES(EVOLUTION_EBOOK, [libebook-1.2 >= libebook_required_version
312
                                        pygobject-2.0
369
                                        pygobject-2.0
313
                                        gdk-pixbuf-2.0
370
                                        gdk-pixbuf-2.0
Lines 318-324 Link Here
318
        EVOLUTION_EBOOK_LIBS=`echo $EVOLUTION_EBOOK_LIBS | sed -e "s/$export_dynamic//"`
375
        EVOLUTION_EBOOK_LIBS=`echo $EVOLUTION_EBOOK_LIBS | sed -e "s/$export_dynamic//"`
319
    fi
376
    fi
320
    
377
    
321
    if test "$enable_evolution_ecal" = yes; then
378
    if $build_evolution_ecal; then
322
        PKG_CHECK_MODULES(EVOLUTION_ECAL,  [libecal-1.2 >= libecal_required_version
379
        PKG_CHECK_MODULES(EVOLUTION_ECAL,  [libecal-1.2 >= libecal_required_version
323
                                            pygobject-2.0
380
                                            pygobject-2.0
324
                                            gdk-pixbuf-2.0
381
                                            gdk-pixbuf-2.0
Lines 329-334 Link Here
329
            EVOLUTION_ECAL_LIBS=`echo $EVOLUTION_ECAL_LIBS | sed -e "s/$export_dynamic//"`
386
            EVOLUTION_ECAL_LIBS=`echo $EVOLUTION_ECAL_LIBS | sed -e "s/$export_dynamic//"`
330
        fi
387
        fi
331
    fi
388
    fi
389
else
390
    if $build_evolution_ecal; then
391
      AC_MSG_ERROR(You must enable the Evolution module as well if you want the Evolution Cal module)
392
    fi
332
fi
393
fi
333
AM_CONDITIONAL(BUILD_EVOLUTION, $build_evolution)
394
AM_CONDITIONAL(BUILD_EVOLUTION, $build_evolution)
334
AM_CONDITIONAL(BUILD_EVOLUTION_ECAL, $build_evolution_ecal)
395
AM_CONDITIONAL(BUILD_EVOLUTION_ECAL, $build_evolution_ecal)
(-)gnome-python-desktop-2.22.0-old/docs/Makefile.am (-1 / +12 lines)
Lines 1-5 Link Here
1
EXTRA_DIST = common.xsl html.xsl ref-html-style.xsl tut-html-style.xsl \
1
EXTRA_DIST = common.xsl html.xsl ref-html-style.xsl tut-html-style.xsl \
2
	     pdf-style.xsl pdf.xsl devhelp.xsl pygtk-ref-docs.make
2
	     pdf-style.xsl pdf.xsl devhelp.xsl pygtk-ref-docs.make
3
3
4
SUBDIRS = gtksourceview gnomeprint gnomeprintui
4
SUBDIRS=
5
5
6
if BUILD_GTKSOURCEVIEW
7
  SUBDIRS += gtksourceview
8
endif
9
10
if BUILD_GNOMEPRINT
11
  SUBDIRS += gnomeprint
12
endif
13
14
if BUILD_GNOMEPRINTUI
15
  SUBDIRS += gnomeprintui
16
endif

Return to bug 160991