~ubuntu-branches/ubuntu/hardy/pidgin/hardy

« back to all changes in this revision

Viewing changes to Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Pedro Fragoso
  • Date: 2007-12-21 02:48:06 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20071221024806-pd44a5k9tiyh12mp
Tags: 1:2.3.1-2ubuntu1
* Sync with Debian, remaining Ubuntu changes; (LP: #177811)
  - Set Maintainer to Ubuntu Core Developers.
  - Add build-deps on liblaunchpad-integration-dev, intltool,
    libnm-glib-dev (for --enable-nm) (Ubuntu #112720).
  - Drop build-deps on libsilc-1.1-2-dev | libsilc-dev (>= 1.1.1) as 
    this library is in universe.
  - Drop the libpurple0 recommends on libpurple-bin.
  - Add a gaim transitionnal package for upgrades.
  - Ship compatibility symlinks via debian/gaim.links.
  - Pass --enable-nm to configure to enable NetworkManager support.
  - Pass --disable-silc to configure to disable silc support even if 
    it's installed in the build environment.
  - Add X-Ubuntu-Gettext-Domain to the desktop file and update the
    translation templates in common-install-impl::.
   - Update debian/prefs.xml to set the notify plugin prefs
    /plugins/gtk/X11/notify/* and set /pidgin/plugins/loaded to load 
    the notify plugin; Ubuntu: #13389.
  - Add LPI integration patch, 02_lpi.
  - Add patch 04_let_crasher_for_apport to stop catching the SIGSEGV signal
    and let apport handle it.
  - Add patch 05_default_to_irc_ubuntu_com to set the default IRC 
    server to irc.ubuntu.com.
  - Add autoconf patch, 70_autoconf.

Show diffs side-by-side

added added

removed removed

Lines of Context:
79
79
  distclean-recursive maintainer-clean-recursive
80
80
ETAGS = etags
81
81
CTAGS = ctags
82
 
DIST_SUBDIRS = libpurple doc finch pidgin m4macros po share
 
82
DIST_SUBDIRS = libpurple doc finch pidgin m4macros po share/ca-certs \
 
83
        share/sounds
83
84
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
84
85
distdir = $(PACKAGE)-$(VERSION)
85
86
top_distdir = $(distdir)
229
230
PACKAGE_STRING = @PACKAGE_STRING@
230
231
PACKAGE_TARNAME = @PACKAGE_TARNAME@
231
232
PACKAGE_VERSION = @PACKAGE_VERSION@
 
233
PANGO_CFLAGS = @PANGO_CFLAGS@
 
234
PANGO_LIBS = @PANGO_LIBS@
232
235
PATH_SEPARATOR = @PATH_SEPARATOR@
233
236
PERL = @PERL@
234
237
PERL_CFLAGS = @PERL_CFLAGS@
235
238
PERL_LIBS = @PERL_LIBS@
236
239
PERL_MM_PARAMS = @PERL_MM_PARAMS@
237
240
PKG_CONFIG = @PKG_CONFIG@
 
241
PLUGINS_DEFINE = @PLUGINS_DEFINE@
238
242
POFILES = @POFILES@
239
243
POSUB = @POSUB@
240
244
PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@
269
273
X11_LIBS = @X11_LIBS@
270
274
XGETTEXT = @XGETTEXT@
271
275
XMKMF = @XMKMF@
 
276
XSLTPROC = @XSLTPROC@
272
277
XSS_LIBS = @XSS_LIBS@
273
278
X_CFLAGS = @X_CFLAGS@
274
279
X_EXTRA_LIBS = @X_EXTRA_LIBS@
301
306
docdir = @docdir@
302
307
dvidir = @dvidir@
303
308
enable_dbus = @enable_dbus@
 
309
enable_devhelp = @enable_devhelp@
304
310
enable_dot = @enable_dot@
305
311
enable_doxygen = @enable_doxygen@
306
312
exec_prefix = @exec_prefix@
320
326
mandir = @mandir@
321
327
mkdir_p = @mkdir_p@
322
328
oldincludedir = @oldincludedir@
323
 
pango_CFLAGS = @pango_CFLAGS@
324
 
pango_LIBS = @pango_LIBS@
325
329
pdfdir = @pdfdir@
326
330
perlpath = @perlpath@
327
331
pidginpath = @pidginpath@
351
355
                README.MTN \
352
356
                README.mingw \
353
357
                config.h.mingw \
 
358
                doxy2devhelp.xsl \
354
359
                gaim.pc.in \
355
360
                gaim-uninstalled.pc.in \
356
361
                intltool-extract.in \
369
374
apps_DATA = $(apps_in_files:.desktop.in=.desktop)
370
375
@ENABLE_GTK_TRUE@GTK_DIR = pidgin
371
376
@ENABLE_GNT_TRUE@GNT_DIR = finch
372
 
SUBDIRS = libpurple doc $(GNT_DIR) $(GTK_DIR) m4macros po share
 
377
SUBDIRS = libpurple doc $(GNT_DIR) $(GTK_DIR) m4macros po share/ca-certs share/sounds
373
378
 
374
379
# perl's MakeMaker uninstall foo doesn't work well with DESTDIR set, which
375
380
# breaks "make distcheck" unless we ignore perl things
869
874
docs: Doxyfile
870
875
@HAVE_DOXYGEN_TRUE@     @echo "Running doxygen..."
871
876
@HAVE_DOXYGEN_TRUE@     @doxygen
 
877
@HAVE_DOXYGEN_TRUE@@HAVE_XSLTPROC_TRUE@ @echo "Generating devhelp index..."
 
878
@HAVE_DOXYGEN_TRUE@@HAVE_XSLTPROC_TRUE@ @xsltproc doxy2devhelp.xsl doc/xml/index.xml > doc/html/pidgin.devhelp
 
879
@HAVE_DOXYGEN_TRUE@@HAVE_XSLTPROC_TRUE@ @echo "(Symlink doc/html to ~/.local/share/gtk-doc/html/pidgin to make devhelp see the documentation)"
 
880
@HAVE_DOXYGEN_TRUE@@HAVE_XSLTPROC_FALSE@        @echo "Not generating devhelp index: xsltproc was not found by configure"
872
881
@HAVE_DOXYGEN_FALSE@    @echo "doxygen was not found during configure.  Aborting."
873
882
@HAVE_DOXYGEN_FALSE@    @echo;
874
883
# Tell versions [3.59,3.63) of GNU make to not export all variables.