~matttbe/ubuntu/raring/rhythmbox/lp1010619_RB_2.98

« back to all changes in this revision

Viewing changes to sample-plugins/sample/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha
  • Date: 2012-11-06 20:52:57 UTC
  • mfrom: (1.1.67) (214.1.1 quantal-proposed)
  • Revision ID: package-import@ubuntu.com-20121106205257-0btjh8jqley153el
Tags: 2.98-0ubuntu1
* New upstream release (LP: #1060601)
* debian/control.in:
  - Bump minimum glib, gtk, totem-plparser, clutter, and clutter-gst
  - Drop no longer needed musicbrainz dependency
* Refreshed 09_keywords.patch
* Updated 11_fix_cd_pausing.patch with fix from git
* Dropped patches applied in new version:
  - 00git_musicbrainz5.patch
  - 08_CVE-2012-3355.patch
  - dont_free_consumed_floating_gvariant.patch
  - git_scale_click.patch
  - git_crash_during_monitor.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
plugindir = $(SAMPLEPLUGINDIR)/sample
 
2
plugin_LTLIBRARIES = libsample.la
 
3
 
 
4
libsample_la_SOURCES = \
 
5
        rb-sample-plugin.c
 
6
        
 
7
libsample_la_LDFLAGS = $(PLUGIN_LIBTOOL_FLAGS)
 
8
 
 
9
libsample_la_LIBADD = $(top_builddir)/shell/librhythmbox-core.la
 
10
 
 
11
INCLUDES =                                              \
 
12
        -DGNOMELOCALEDIR=\""$(datadir)/locale"\"        \
 
13
        -DG_LOG_DOMAIN=\"Rhythmbox\"                    \
 
14
        -I$(top_srcdir)                                 \
 
15
        -I$(top_srcdir)/lib                             \
 
16
        -I$(top_srcdir)/metadata                        \
 
17
        -I$(top_srcdir)/rhythmdb                        \
 
18
        -I$(top_srcdir)/widgets                         \
 
19
        -I$(top_srcdir)/sources                         \
 
20
        -I$(top_srcdir)/podcast                         \
 
21
        -I$(top_srcdir)/plugins                         \
 
22
        -I$(top_srcdir)/shell                           \
 
23
        -DPIXMAP_DIR=\""$(datadir)/pixmaps"\"           \
 
24
        -DSHARE_DIR=\"$(pkgdatadir)\"                   \
 
25
        -DDATADIR=\""$(datadir)"\"                      \
 
26
        $(RHYTHMBOX_CFLAGS)                             \
 
27
        -D_BSD_SOURCE
 
28
 
 
29
plugin_in_files = sample.plugin.in
 
30
 
 
31
%.plugin: %.plugin.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po) ; $(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache
 
32
 
 
33
plugin_DATA = $(plugin_in_files:.plugin.in=.plugin)
 
34
 
 
35
EXTRA_DIST = $(plugin_in_files)
 
36
 
 
37
CLEANFILES = $(plugin_DATA)
 
38
DISTCLEANFILES = $(plugin_DATA)