~ubuntu-branches/ubuntu/maverick/ekiga/maverick

« back to all changes in this revision

Viewing changes to lib/toolbox/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Eugen Dedu, Eugen Dedu, Loic Minier
  • Date: 2008-09-27 10:00:00 UTC
  • mfrom: (1.1.8 upstream)
  • mto: (1.4.1 squeeze)
  • mto: This revision was merged to the branch mainline in revision 38.
  • Revision ID: james.westby@ubuntu.com-20080927100000-l5k5werb6czr5b3h
Tags: 3.0.1-1
[ Eugen Dedu ]
* New version.  (Closes: #500089).
* Add our own changelog file in /usr/share/doc.
* Remove gnomemeeting transitional package.
* Discover new interfaces.  (Closes: #488199).
* Compile with dbus support.  (Closes: #467212).
* Numeric keypad inserts digits at correct position.  (Closes: #440159).
* Use libnotify upon call.  (Closes: #412604).
* Symlink identical GNOME help files, to reduce size.  (Closes: #505536).
* Explicitely build-depends on a few dev packages, even if they were
  pulled out anyway by the other dependencies.

[ Loic Minier ]
* Use clean:: instead of clean: in rules.
* Don't disable Uploaders: generation for control.in -> control generation
  in rules.
* Fix some tabs which were size 4 anyway.
* Generate a PO template during build by calling intltool-update -p in
  install; thanks Ubuntu and Martin Pitt; closes: #505535.
* Also let the -dbg depend on ${misc:Depends}.
* Cleanup rules; in particular, use dpkg-parsechangelog and honor
  distclean/clean failures, remove old clean rules, commented out stuff,
  gtk-only stuff.
* Pass -s to dh_* in binary-arch.
* Use debian/*.links and debian/*.manpages instead of symlink manually or
  passing files to dh_installman.
* Use ftp.gnome.org in copyright.
* Switch to quilt and fix target deps in the process; build-dep on quilt
  instead of dpatch; rename news.dpatch to 00_news.patch and refresh;
  replace 00list with series.
* Install autotools-dev config.guess and .sub after patching.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
noinst_LTLIBRARIES = libtoolbox.la
2
2
 
3
 
libtoolbox_la_SOURCES = toolbox.h toolbox-common.c
 
3
libtoolbox_la_SOURCES = \
 
4
        toolbox.h               \
 
5
        toolbox-common.c        \
 
6
        toolbox-internal.h      \
 
7
        toolbox-internal.c
4
8
 
5
9
if WIN32
6
10
libtoolbox_la_SOURCES += toolbox-win32.c
7
11
else
8
 
if DISABLE_GNOME
 
12
if HAVE_GNOME
 
13
libtoolbox_la_SOURCES += toolbox-gnome.c
 
14
else
9
15
libtoolbox_la_SOURCES += toolbox-gtk.c
10
 
else
11
 
libtoolbox_la_SOURCES += toolbox-gnome.c
12
16
endif
13
17
endif
14
18
 
15
19
INCLUDES = $(EKIGA_LIB_CFLAGS)
16
20
 
17
 
libtoolbox_la_LDFLAGS = -export-dynamic
 
21
AM_CFLAGS = $(GTK_CFLAGS) $(GLIB_CFLAGS) $(GNOME_CFLAGS)
 
22
AM_LIBS = $(GTK_LIBS) $(GLIB_LIBS) $(GNOME_LIBS)
 
23
 
 
24
libtoolbox_la_LDFLAGS = -export-dynamic $(AM_LIBS)