~ubuntu-branches/debian/experimental/xfdesktop4/experimental

« back to all changes in this revision

Viewing changes to modules/menu/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Yves-Alexis Perez, Yves-Alexis Perez, Lionel Le Folgoc
  • Date: 2011-02-07 00:17:47 UTC
  • mfrom: (1.4.9 upstream) (5.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20110207001747-htl6rhaglfhhik8g
Tags: 4.8.1-1
[ Yves-Alexis Perez ]
* New upstream development release.
* debian/control:
  - update standards version to 3.9.1.
  - refresh build-deps for Xfce 4.7.
  - add build dep on libxfce4ui-1-dev.
  - drop xfce4-panel build-dep since we don't build any plugin anymore.
  - add build-dep on hardening-includes.
* Switch to 3.0 (quilt) source format.
* debian/rules:
  - pick {C,LD}FLAGS from dpkg-buildflags.
  - drop --libexecdir, --disable-rpath and --enable-final from configure args.
  - drop usr/lib from chrpath call, it doesn't exist anymore.
  - don't rename generic terminal .desktop file, it's gone too.
  - pass docdir to configure.
  - add hardening flags to {C,LD}FLAGS
* debian/xfdesktop4-data.install:
  - drop usr/share/desktop-directories from install file.
* debian/xfdesktop4.install:
  - drop etc/ no menu is installed anymore.
  - drop usr/ too, no more desktop menu module nor panel plugin. 
* debian/copyright updated for new upstream release.

[ Lionel Le Folgoc ]
* New upstream bugfix release.
* debian/control: clean up build-deps since xfdesktop has been ported to gio,
  exo-1 and garcon.
* Refresh build-deps for Xfce 4.8.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
SUBDIRS = \
2
 
        directory-data \
3
 
        menu-data
4
 
 
5
 
plugindir = $(libdir)/xfce4/modules
6
 
 
7
 
plugin_LTLIBRARIES = xfce4_desktop_menu.la
8
 
 
9
 
xfce4_desktop_menu_la_SOURCES = desktop-menu.c
10
 
 
11
 
xfce4_desktop_menu_la_CFLAGS = \
12
 
        -I$(top_srcdir)/common \
13
 
        $(GMODULE_CFLAGS) \
14
 
        $(GTHREAD_CFLAGS) \
15
 
        $(LIBXFCE4MENU_CFLAGS) \
16
 
        $(LIBX11_CFLAGS) \
17
 
        $(LIBXFCEGUI4_CFLAGS) \
18
 
        $(THUNAR_VFS_CFLAGS) \
19
 
        -DSYSCONFDIR=\"$(sysconfdir)\" \
20
 
        -DDATADIR=\"$(datadir)\" \
21
 
        -DBINDIR=\"$(bindir)\"
22
 
 
23
 
xfce4_desktop_menu_la_DEPENDENCIES = \
24
 
        $(top_builddir)/common/libxfdesktop-menu-utils.la
25
 
 
26
 
xfce4_desktop_menu_la_LDFLAGS = \
27
 
        -export-dynamic \
28
 
        -avoid-version \
29
 
        -module
30
 
 
31
 
if HAVE_CYGWIN
32
 
xfce4_desktop_menu_la_LDFLAGS += \
33
 
        -no-undefined
34
 
endif
35
 
 
36
 
xfce4_desktop_menu_la_LIBADD = \
37
 
        $(top_builddir)/common/libxfdesktop-menu-utils.la \
38
 
        $(GMODULE_LIBS) \
39
 
        $(GTHREAD_LIBS) \
40
 
        $(LIBXFCE4MENU_LIBS) \
41
 
        $(LIBX11_LDFLAGS) \
42
 
        $(LIBX11_LIBS) \
43
 
        $(LIBXFCEGUI4_LIBS) \
44
 
        $(THUNAR_VFS_LIBS)