~ubuntu-branches/ubuntu/saucy/parole/saucy-proposed

« back to all changes in this revision

Viewing changes to .pc/01_fix-implicit-dso-linking.patch/plugins/properties/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Yves-Alexis Perez, Lionel Le Folgoc, Yves-Alexis Perez
  • Date: 2011-04-24 16:09:19 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20110424160919-rpjwaicrdb8f7un2
Tags: 0.2.0.6-1
[ Lionel Le Folgoc ]
* debian/control:
  - drop unneeded build-dep on xulrunner-dev.   closes: #594073
  - suggests a few useful gstreamer0.10 plugins.
  - build-depends on quilt.
* debian/patches:
  - 01_fix-implicit-dso-linking.patch: added, fixes FTBFS with binutils-gold.
  - series: added.                                            closes: #615760
* debian/rules: pass --with quilt to dh.

[ Yves-Alexis Perez ]
* New upstream release.
* Switch to 3.0 (quilt) source format.
* debian/control:
  - update standards version to 3.9.2.
  - drop browser-plugin-parole package.
  - drop quilt build-dep.
  - add build-dep on hardening-includes
  - bump xfce build-deps to 4.8.
* debian/parole.install updated.
* debian/rules:
  - use --fail-missing and manually remove spurious files.
  - drop quilt addon
  - pick build flags from dpkg-buildflags.
  - add -O1, -z,defs and --as-needed to LDFLAGS.
  - add hardening flags to build flags.
  - stop harcoding the shell to bash, it works fine now.      closes: #623830

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
INCLUDES =                                      \
 
2
        -I$(top_builddir)                       \
 
3
        -I$(top_srcdir)                         \
 
4
        -DG_LOG_DOMAIN=\"stream_properties\"    \
 
5
        -DLIBEXECDIR=\"$(libexecdir)\"          \
 
6
        -DPACKAGE_LOCALE_DIR=\"$(localedir)\"
 
7
 
 
8
pluginsdir =                                    \
 
9
        $(libdir)/parole-$(PAROLE_VERSION_API)
 
10
 
 
11
plugins_LTLIBRARIES =                           \
 
12
        stream-properties.la
 
13
 
 
14
stream_properties_la_SOURCES =                  \
 
15
        stream-properties-plugin.c              \
 
16
        stream-properties-provider.c            \
 
17
        stream-properties-provider.h
 
18
 
 
19
stream_properties_la_CFLAGS =                   \
 
20
        $(PLATFORM_CFLAGS)                      \
 
21
        $(GTK_CFLAGS)                           \
 
22
        $(TAGLIBC_CFLAGS)                       \
 
23
        $(LIBXFCE4UTIL_CFLAGS)
 
24
 
 
25
stream_properties_la_LIBADD =                   \
 
26
        $(TAGLIBC_LIBS)
 
27
 
 
28
stream_properties_la_LDFLAGS =                  \
 
29
        -avoid-version                          \
 
30
        -export-dynamic                         \
 
31
        -module                                 \
 
32
        $(PLATFORM_LDFLAGS)
 
33
 
 
34
#
 
35
# .desktop file
 
36
#
 
37
desktop_in_files = stream-properties.desktop.in
 
38
desktopdir = $(datadir)/parole/parole-plugins-$(PAROLE_VERSION_API)
 
39
desktop_DATA =  $(desktop_in_files:.desktop.in=.desktop)
 
40
@INTLTOOL_DESKTOP_RULE@
 
41
 
 
42
EXTRA_DIST =                    \
 
43
        $(desktop_in_files)
 
44
    
 
45
DISTCLEANFILES =                \
 
46
        $(desktop_DATA)