~ubuntu-branches/debian/experimental/synaptic/experimental

« back to all changes in this revision

Viewing changes to configure.in

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt
  • Date: 2008-06-18 10:17:31 UTC
  • Revision ID: james.westby@ubuntu.com-20080618101731-fb77n5hy28hcq3g3
Tags: 0.62.1
* po/es.po:
  - updated Spanish translation (thanks to
     Francisco Javier Cuadrado)
* debian/control:
  - added "menu" to the recommends (closes: #478250)
* gtk/glade/window_main.glade:
  - make the main vpane shinkable
* gtk/rgmainwindow.cc:
  - do not loose the keyboard focus after a package 
    action in the listview
* debian/control:
  - switch bzr branch to bzr.debian.org

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
dnl Process this file with autoconf to produce a configure script.
2
2
AC_INIT(configure.in)
3
3
 
4
 
AM_INIT_AUTOMAKE(synaptic, 0.57.8)
 
4
AM_INIT_AUTOMAKE(synaptic, 0.62.1)
5
5
AM_CONFIG_HEADER(config.h)
6
6
AM_MAINTAINER_MODE
7
7
 
15
15
AC_PROG_RANLIB
16
16
 
17
17
dnl i18n
18
 
ALL_LINGUAS="ar pt_BR es fr gl de tr zh_CN zh_TW ru nl ja be it pl cs hu sr sr@Latn da he ca ko bg no nb sl pt lt el xh mk ro hi sv fi th"
 
18
ALL_LINGUAS="ar pt_BR es eu fr gl de tr zh_CN zh_TW ru nl ja be be@latin it pl cs hu sr sr@Latn da he ca ko bg no nb sl pt lt el xh mk ro hi sv fi th"
19
19
AM_GLIB_GNU_GETTEXT
20
20
GETTEXT_PACKAGE=synaptic
21
21
AC_SUBST(GETTEXT_PACKAGE)
24
24
synapticlocaledir='${prefix}/${DATADIRNAME}/locale'
25
25
AC_SUBST(synapticlocaledir)
26
26
     
27
 
dnl check for xmlto
28
 
AC_CHECK_PROG(XMLTO, xmlto, yes, no)
29
 
if test x"$XMLTO" == xno; then
30
 
        AC_MSG_ERROR([You need xmlto to build the documentation. Apt-get it or download it from http://cyberelk.net/tim/xmlto/])
31
 
fi
32
27
 
33
28
dnl ask for wings
34
29
dnl AC_ARG_WITH(wings,
121
116
 
122
117
DEB_HDRS=""
123
118
AC_SUBST(DEB_HDRS)
124
 
DEB_LIBS=""
 
119
DEB_LIBS="-lapt-inst"
125
120
AC_SUBST(DEB_LIBS)
126
121
 
127
122
# launchpad integration
206
201
AC_OUTPUT([
207
202
common/Makefile 
208
203
gtk/Makefile
 
204
gtk/glade/Makefile
209
205
data/Makefile
210
206
man/Makefile
211
207
pixmaps/Makefile 
 
208
pixmaps/hicolor/Makefile 
 
209
pixmaps/hicolor/16x16/Makefile 
 
210
pixmaps/hicolor/24x24/Makefile 
212
211
po/Makefile.in
213
212
help/Makefile
214
213
help/C/Makefile
215
214
help/es/Makefile
 
215
help/sv/Makefile
216
216
doc/Makefile
217
217
doc/html/Makefile
218
218
doc/html/C/Makefile
219
219
doc/html/es/Makefile
 
220
doc/html/sv/Makefile
220
221
Makefile
221
222
],[sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile])
222
223