~ubuntu-branches/ubuntu/maverick/cairo-dock-plugins/weird

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: matttbe
  • Date: 2010-08-07 01:43:25 UTC
  • Revision ID: matttbe@gmail.com-20100807014325-36tmlrc8n1rrksk5
* New Upstream Version (LP: #614625)
* debian/rules:
 - Autotools has been replaced by CMake
 - cdbs is now used.
* debian/copyright:
 - Updated with the new applets
* debian/control:
 - Autotools has been replaced by CMake
 - Added libcurl4-gnutls-dev, libindicator-dev, libdbusmenu-glib-dev
   libido-0.1-dev, libical-dev, libdbusmenu-gtk-dev as Build-deps
 - Bump Standard-Version to 3.9.1
 - Wget is required for dnd2share applet
* debian/cairo-dock-plug-ins*.install:
 - All sonames are now installed into lib32 or lib64 (lib*)
* Fixed a few bugs on LP:
 - LP: #483963, LP: #485159, LP: #500677, LP: #500979
 - LP: #521531, LP: #519915, LP: #526138, LP: #531317
 - LP: #531319, LP: #537115, LP: #537943, LP: #538637
 - More details on the 'ChangeLog' file

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#dnl Process this file with automake to produce Makefile.in
2
 
 
3
 
if WITH_OLD_GNOME_SUPPORT
4
 
gnome_old_dir=gnome-integration-old
5
 
endif
6
 
 
7
 
if WITH_GNOME_SUPPORT
8
 
gnome_dir=gnome-integration
9
 
endif
10
 
 
11
 
if WITH_XFCE_SUPPORT
12
 
xfce_dir=xfce-integration
13
 
endif
14
 
 
15
 
if WITH_KDE_SUPPORT
16
 
kde_dir=kde-integration
17
 
endif
18
 
 
19
 
if WITH_ALSA_MIXER
20
 
alsa_mixer_dir=alsaMixer
21
 
endif
22
 
 
23
 
if WITH_TERMINAL
24
 
terminal_dir=terminal
25
 
endif
26
 
 
27
 
if WITH_POWERMANAGER
28
 
powermanager_dir=powermanager
29
 
endif
30
 
 
31
 
if WITH_WIFI
32
 
wifi_dir=wifi
33
 
endif
34
 
 
35
 
if WITH_TOMBOY
36
 
tomboy_dir=tomboy
37
 
endif
38
 
 
39
 
if WITH_COMPIZ_ICON
40
 
compiz_icon_dir=compiz-icon
41
 
endif
42
 
 
43
 
if WITH_XGAMMA
44
 
xgamma_dir=Xgamma
45
 
endif
46
 
 
47
 
if WITH_GMENU
48
 
gmenu_dir=GMenu
49
 
endif
50
 
 
51
 
if WITH_MAIL
52
 
mail_dir=mail
53
 
endif
54
 
 
55
 
if WITH_WEBLETS
56
 
weblets_dir=weblets
57
 
endif
58
 
 
59
 
if WITH_KEYBOARD_INDICATOR
60
 
keyboard_indicator_dir=keyboard-indicator
61
 
endif
62
 
 
63
 
if WITH_DND2SHARE
64
 
dnd2share_dir=dnd2share
65
 
endif
66
 
 
67
 
if WITH_MUSICPLAYER
68
 
musicplayer_dir=musicPlayer
69
 
endif
70
 
 
71
 
if WITH_NETWORK_MONITOR
72
 
network_monitor_dir=Network-Monitor
73
 
endif
74
 
 
75
 
if WITH_SCOOBY_DO
76
 
scooby_do_dir=Scooby-Do
77
 
endif
78
 
 
79
 
if WITH_RSSREADER
80
 
rssreader_dir=RSSreader
81
 
endif
82
 
 
83
 
SUBDIRS = . po\
84
 
        ${alsa_mixer_dir}\
85
 
        Animated-icons\
86
 
        Cairo-Penguin\
87
 
        Clipper\
88
 
        clock\
89
 
        ${compiz_icon_dir}\
90
 
        Dbus\
91
 
        desklet-rendering\
92
 
        dialog-rendering\
93
 
        ${dnd2share_dir}\
94
 
        dock-rendering\
95
 
        drop-indicator\
96
 
        dustbin\
97
 
        ${gmenu_dir}\
98
 
        ${gnome_dir}\
99
 
        ${gnome_old_dir}\
100
 
        icon-effect\
101
 
        illusion\
102
 
        ${kde_dir}\
103
 
        ${keyboard_indicator_dir}\
104
 
        logout\
105
 
        ${mail_dir}\
106
 
        motion-blur\
107
 
        $(musicplayer_dir)\
108
 
        netspeed\
109
 
        $(network_monitor_dir)\
110
 
        ${powermanager_dir}\
111
 
        quick-browser\
112
 
        ${rssreader_dir}\
113
 
        ${scooby_do_dir}\
114
 
        shortcuts\
115
 
        showDesktop\
116
 
        show-mouse\
117
 
        slider\
118
 
        stack\
119
 
        switcher\
120
 
        System-Monitor\
121
 
        systray\
122
 
        ${terminal_dir}\
123
 
        ${tomboy_dir}\
124
 
        Toons\
125
 
        weather\
126
 
        ${weblets_dir}\
127
 
        ${wifi_dir}\
128
 
        ${xfce_dir}\
129
 
        ${xgamma_dir}
130
 
 
131
 
EXTRA_DIST = \
132
 
        intltool-extract.in\
133
 
        intltool-merge.in\
134
 
        intltool-update.in\
135
 
        LICENSE\
136
 
        LGPL-2\
137
 
        ChangeLog\
138
 
        copyright
139