~ubuntu-branches/debian/stretch/cheese/stretch

« back to all changes in this revision

Viewing changes to libcheese/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Michael Biebl
  • Date: 2010-05-04 17:37:18 UTC
  • mfrom: (1.1.13 upstream)
  • Revision ID: james.westby@ubuntu.com-20100504173718-k2rx3nryi4vd0xyx
Tags: 2.30.1-1
* New upstream release.
  - HAL dependency has been dropped. Use (g)udev for v4l capability probing
    on Linux. Closes: #573774
  - Split code into separate libraries.
* debian/control.in
  - Drop Build-Depends on libhal-dev.
  - Drop Build-Depends on libebook1.2-dev.
  - Bump Build-Depends on libgtk2.0-dev to (>= 2.19.1).
  - Bump Build-Depends on libgstreamer*-dev to (>= 0.10.23).
  - Add Build-Depends on libcanberra-gtk-dev.
  - Add Build-Depends on libxtst-dev.
  - Add Build-Depends on libgudev-1.0-dev on Linux.
  - Bump Standards-Version to 3.8.4. No further changes.
* Switch to source format 3.0 (quilt)
  - Add debian/source/format.
* debian/rules
  - Drop lpia specific configure flags, lpia is dead.
* Update package layout (based on work by Ubuntu)
  - Move data files into new cheese-common package.
  - Keep binary along with its desktop and dbus service file in the cheese
    package.
  - Add libcheese-gtk18 and libcheese-gtk-dev package for the new
    libcheese-gtk library. Use a symbols file for improved shlibs
    dependencies.
  - Add Conflicts/Replaces to cheese-common to ensure proper upgrades from
    previous versions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
INCLUDES = \
 
2
        -DDATADIR=\"$(datadir)\" \
 
3
        -DPREFIX=\""$(prefix)"\" \
 
4
        -DSYSCONFDIR=\""$(sysconfdir)"\" \
 
5
        -DLIBDIR=\""$(libdir)"\" \
 
6
        -DPACKAGE_DATADIR=\""$(datadir)/cheese"\" \
 
7
        -DPACKAGE_LOCALEDIR=\""$(datadir)/locale"\" \
 
8
        -DAPPNAME_DATA_DIR=\"$(pkgdatadir)\" \
 
9
        -DGNOME_DESKTOP_USE_UNSTABLE_API=1 \
 
10
        $(CHEESE_CFLAGS)
 
11
 
 
12
lib_LTLIBRARIES = libcheese-gtk.la
 
13
noinst_LTLIBRARIES = libcheesecommon.la
 
14
 
 
15
EXTRA_DIST = cheese-gtk.symbols
 
16
CLEANFILES =
 
17
DISTCLEANFILES =
 
18
BUILT_SOURCES =
 
19
 
 
20
glib_marshal_list = cheese-marshal.list
 
21
glib_marshal_prefix = _cheese_marshal
 
22
include $(top_srcdir)/Makefile.am.marshal
 
23
 
 
24
glib_enum_h = cheese-enum-types.h
 
25
glib_enum_c = cheese-enum-types.c
 
26
glib_enum_headers = $(top_srcdir)/libcheese/cheese-widget.h
 
27
include $(top_srcdir)/Makefile.am.enums
 
28
 
 
29
libcheese_gtk_la_CFLAGS = $(CHEESE_CFLAGS)
 
30
 
 
31
libcheesecommon_la_SOURCES = \
 
32
        cheese-gconf.c \
 
33
        cheese-gconf.h \
 
34
        cheese-fileutil.c \
 
35
        cheese-fileutil.h \
 
36
        cheese-camera.c \
 
37
        cheese-camera.h \
 
38
        cheese-camera-device.c \
 
39
        cheese-camera-device.h \
 
40
        cheese-camera-device-monitor.c \
 
41
        cheese-camera-device-monitor.h \
 
42
        cheese-flash.h \
 
43
        cheese-flash.c \
 
44
        cheese-countdown.c \
 
45
        cheese-countdown.h \
 
46
        $(BUILT_SOURCES)
 
47
 
 
48
libcheese_gtk_la_SOURCES = \
 
49
        cheese-avatar-chooser.c \
 
50
        cheese-avatar-chooser.h \
 
51
        um-crop-area.c \
 
52
        um-crop-area.h \
 
53
        cheese-widget.c \
 
54
        cheese-widget.h \
 
55
        cheese-widget-private.h \
 
56
        $(NULL)
 
57
 
 
58
# FIXME when we have a .pc file, and sonames
 
59
cheesedir = $(includedir)/cheese
 
60
cheese_HEADERS = cheese-widget.h cheese-avatar-chooser.h cheese-camera-device-monitor.h
 
61
 
 
62
libcheese_gtk_la_LIBADD = \
 
63
        libcheesecommon.la \
 
64
        $(CHEESE_LIBS)
 
65
libcheese_gtk_la_LDFLAGS = \
 
66
        -version-info $(CHEESE_LT_VERSION)              \
 
67
        -export-symbols $(srcdir)/cheese-gtk.symbols    \
 
68
        -no-undefined                                   \
 
69
        $(AM_LDFLAGS)