~ubuntu-branches/ubuntu/vivid/xfce4-sensors-plugin/vivid

« back to all changes in this revision

Viewing changes to src/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Yves-Alexis Perez, Yves-Alexis Perez, Evgeni Golov, Lionel Le Folgoc
  • Date: 2010-04-23 00:16:37 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20100423001637-ughhb9gefkr7pw5j
Tags: 1.0.0-1
[ Yves-Alexis Perez ]
* debian/control:
  - switch section to xfce.
  - update standards version to 3.8.4.
  - update debhelper build-dep to 7.
  - build-dep on libnotify-dev.
* debian/watch edited to track Xfce archive reorganisation.
* debian/source/format added with 3.0 (quilt)
* debian/rules:
  - drop simple-patchsys include.
  - explicitly enable notifications.
* debian/compat updated to 7.

[ Evgeni Golov ]
* Fix Vcs-* fields, they were missing 'trunk' in the path.

[ Lionel Le Folgoc ]
* New upstream release.
* debian/patches/01_fix_segfault_at_startup.patch: dropped, included
  upstream.
* debian/control: added myself to uploaders.
* debian/rules: fix typo in configure options.
* debian/patches/01_fix-build-without-libnotify.patch: added, fixes FTBFS
  (see Xfce #6349).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# $Id: Makefile.am 5946 2008-11-03 21:05:31Z timystery $
 
1
# $Id$
2
2
 
3
 
INCLUDES =                      \
 
3
INCLUDES = \
4
4
        -I$(top_srcdir)/include \
5
5
        -I$(top_srcdir)/lib
6
6
 
7
7
bin_PROGRAMS = \
8
8
        xfce4-sensors
9
9
 
10
 
#       -DG_LOG_DOMAIN=\"xfce4-sensors-plugin\"                                          \
 
10
#       -DG_LOG_DOMAIN=\"xfce4-sensors-plugin\" \
11
11
#       -DPACKAGE_LOCALE_DIR=\"$(localedir)\"
12
12
 
13
 
 
14
13
# LIBS = @LIBS@ @SOLLIBS@
15
14
# CFLAGS = @CFLAGS@
16
15
 
17
 
xfce4_sensors_SOURCES =                                                                    \
 
16
xfce4_sensors_SOURCES = \
18
17
        main.c \
19
18
        interface.c \
20
19
        interface.h \
21
20
        callbacks.c \
22
21
        callbacks.h \
23
 
        actions.c       \
 
22
        actions.c \
24
23
        actions.h
25
24
 
26
25
xfce4_sensors_CFLAGS = \
27
 
        @PLATFORM_CFLAGS@                                                                                       \
28
 
        -DPACKAGE_LOCALE_DIR=\"$(localedir)\"                                           \
29
 
        @LIBSENSORS_CFLAGS@                                                                                     \
 
26
        @PLATFORM_CFLAGS@ \
 
27
        -DPACKAGE_LOCALE_DIR=\"$(localedir)\" \
 
28
        @LIBSENSORS_CFLAGS@     \
30
29
        @LIBXFCE4UTIL_CFLAGS@ \
31
30
        @LIBXFCEGUI4_CFLAGS@
32
31
 
33
 
# @GTK_CFLAGS@                                                                                          \
34
 
# @GLIB_CFLAGS@                                                                                                 \
35
 
#       @LIBXFCE4PANEL_CFLAGS@
 
32
# @GTK_CFLAGS@  \
 
33
# @GLIB_CFLAGS@ \
 
34
# @LIBXFCE4PANEL_CFLAGS@
36
35
 
37
 
xfce4_sensors_LDFLAGS =                                                                 \
38
 
        -no-undefined                                                           \
 
36
xfce4_sensors_LDFLAGS = \
 
37
        --no-undefined          \
39
38
        @PLATFORM_LDFLAGS@
40
39
 
41
 
xfce4_sensors_LDADD =                                                           \
 
40
xfce4_sensors_LDADD = \
42
41
        $(top_builddir)/lib/libxfce4sensors.la \
43
 
        @LIBSENSORS_LDFLAGS@                                                            \
44
 
        @LIBXFCE4UTIL_LIBS@                                                                     \
45
 
        @LIBXFCEGUI4_LIBS@
 
42
        @LIBSENSORS_LDFLAGS@ \
 
43
        @LIBXFCE4UTIL_LIBS@     \
 
44
        @LIBXFCEGUI4_LIBS@ 
46
45
 
47
 
# @GTK_LIBS@                                                                                                    \
48
 
# @GLIB_LIBS@                                                                                                   \
49
 
#-L/usr/local/lib/xfce4/modules/ -L$(top_builddir)/lib -lxfce4sensors
50
 
#       @LIBXFCE4PANEL_LIBS@
 
46
# @GTK_LIBS@ \
 
47
# @GLIB_LIBS@ \
 
48
# -L/usr/local/lib/xfce4/modules/ -L$(top_builddir)/lib -lxfce4sensors
 
49
# @LIBXFCE4PANEL_LIBS@
51
50
 
52
51
xfce4_sensors_DEPENDENCIES = \
53
52
        $(top_builddir)/lib/libxfce4sensors.la
60
59
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
61
60
@INTLTOOL_DESKTOP_RULE@
62
61
 
63
 
EXTRA_DIST =                                                                                                             \
 
62
EXTRA_DIST = \
64
63
        $(desktop_in_files)
65
64
 
66
 
DISTCLEANFILES =                                                                                                         \
 
65
DISTCLEANFILES = \
67
66
        $(desktop_DATA)
68
67
 
69
68
# get full path into .desktop file
70
69
#%.desktop.in: %.desktop.in.in
71
70
#       sed -e "s^@PLUGIN_PATH@^$(libexecdir)/xfce4/panel-plugins^" \
72
71
#               $< > $@
 
72