~ubuntu-branches/ubuntu/vivid/liferea/vivid-proposed

« back to all changes in this revision

Viewing changes to .pc/libindicate.patch/src/Makefile.am

  • Committer: Package Import Robot
  • Author(s): bojo42
  • Date: 2012-03-29 14:17:21 UTC
  • mfrom: (1.3.9) (3.2.5 sid)
  • Revision ID: package-import@ubuntu.com-20120329141721-tbfopcrc5797wxt7
Tags: 1.8.3-0.1ubuntu1
* New upstream release (LP: #290666, #371754, #741543, #716688)
* Merge from Debian unstable (LP: #935147), remaining changes:
* debian/patches:
  - drop gtk-status-icon.patch & notification-append as in upstream
  - drop fix_systray_behavior as mostly upstreamed and rest seems unused
  - 01_ubuntu_feedlists: update & rename, move planets to "Open Source"  
  - add_X-Ubuntu-Gettext-Domain: rebase
  - libunity.patch: rebase, apply before indicator patch (liferea_shell.c)
  - libindicate_increase_version.patch: exclude from libindicate.patch
  - deactivate libindicate.patch, seems partly upstreamed and needs rework
* debian/control: libindicate-dev, libindicate-gtk-dev & libunity-dev
* debian/liferea.indicate & liferea.install: ship indicator desktop file
* debian/rules: enable libindicate

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
## Process this file with automake to produce Makefile.in
2
 
 
3
 
if WITH_AVAHI
4
 
SYNC = sync
5
 
SYNC_LIB = sync/liblisync.a
6
 
endif
7
 
 
8
 
SUBDIRS = parsers notification ui fl_sources scripting $(SYNC) webkit .
9
 
 
10
 
AM_CPPFLAGS = \
11
 
        -DPACKAGE_DATA_DIR=\""$(datadir)"\" \
12
 
        -DPACKAGE_LIB_DIR=\""$(pkglibdir)"\" \
13
 
        -DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \
14
 
        -DBIN_DIR=\""$(bindir)"\" \
15
 
        -I$(top_srcdir)/src \
16
 
        $(PACKAGE_CFLAGS) \
17
 
        $(SM_CFLAGS) \
18
 
        $(DBUS_CFLAGS) \
19
 
        $(NM_CFLAGS) \
20
 
        $(GNUTLS_CFLAGS) 
21
 
 
22
 
bin_PROGRAMS = liferea
23
 
bin_SCRIPTS = liferea-add-feed
24
 
 
25
 
liferea_SOURCES = \
26
 
        bacon-message-connection.c \
27
 
        bacon-message-connection.h \
28
 
        browser.c browser.h \
29
 
        comments.c comments.h \
30
 
        common.c common.h \
31
 
        conf.c conf.h \
32
 
        db.c db.h \
33
 
        dbus.c dbus.h \
34
 
        debug.c debug.h \
35
 
        e-date.c e-date.h \
36
 
        enclosure.c enclosure.h \
37
 
        export.c export.h \
38
 
        favicon.c favicon.h \
39
 
        feed.c feed.h \
40
 
        feed_parser.c feed_parser.h \
41
 
        feedlist.c feedlist.h \
42
 
        folder.c folder.h \
43
 
        html.c html.h \
44
 
        htmlview.c htmlview.h \
45
 
        item.c item.h \
46
 
        item_state.c item_state.h \
47
 
        itemset.c itemset.h \
48
 
        itemlist.c itemlist.h \
49
 
        metadata.c metadata.h \
50
 
        migrate.c migrate.h \
51
 
        net.c net.h \
52
 
        newsbin.c newsbin.h \
53
 
        node.c node.h \
54
 
        node_type.c node_type.h \
55
 
        node_view.h \
56
 
        plugin.c plugin.h \
57
 
        render.c render.h \
58
 
        rule.c rule.h \
59
 
        script.c script.h \
60
 
        social.c social.h \
61
 
        subscription.c subscription.h \
62
 
        subscription_type.h \
63
 
        update.c update.h \
64
 
        main.c \
65
 
        vfolder.c vfolder.h \
66
 
        xml.c xml.h
67
 
 
68
 
liferea_LDADD = parsers/libliparsers.a \
69
 
                fl_sources/libliflsources.a \
70
 
                notification/libnotification.a \
71
 
                ui/libliui.a \
72
 
                webkit/libwebkit.a \
73
 
                $(SYNC_LIB) \
74
 
                $(PACKAGE_LIBS) $(SM_LIBS) \
75
 
                $(DBUS_LIBS) $(NM_LIBS) $(INTLLIBS) $(GNUTLS_LIBS) $(AVAHI_LIBS) \
76
 
                $(WEBKIT_LIBS) $(LIBNOTIFY_LIBS)
77
 
 
78
 
if WITH_DBUS
79
 
 
80
 
EXTRA_DIST = $(srcdir)/liferea_dbus.xml
81
 
BUILT_SOURCES = dbus_wrap.c
82
 
CLEANFILES = $(BUILT_SOURCES)
83
 
 
84
 
dbus_wrap.c: $(srcdir)/liferea_dbus.xml
85
 
        dbus-binding-tool --mode=glib-server --prefix=liferea_dbus $(srcdir)/liferea_dbus.xml > dbus_wrap.c
86
 
 
87
 
endif
88
 
 
89
 
if PLATFORM_WIN32
90
 
 
91
 
liferea_LDFLAGS = -Wl,--export-all-symbols,--out-implib,liferea.a
92
 
 
93
 
endif