diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2012-09-26 09:35:45 +0200 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2012-09-26 09:35:45 +0200 |
commit | d804e882724b22e73153c0cafbc7f98593dfa756 (patch) | |
tree | 13ceacc59273bced2ca0bde66d79f7c3efa41882 | |
parent | 7c5fb741a4e89e2977b823717ca20e9282a02bd1 (diff) | |
parent | 9b6ec8e06ae8d618b2b31dd7e752efe35d44e327 (diff) | |
download | meta-openembedded-d804e882724b22e73153c0cafbc7f98593dfa756.tar.gz |
Merge branch 'xfce-4.10' of git://gitorious.org/schnitzeltony-oe-meta/meta-openembedded
53 files changed, 853 insertions, 846 deletions
diff --git a/meta-multimedia/recipes-multimedia/musicpd/libmpd_11.8.17.bb b/meta-multimedia/recipes-multimedia/musicpd/libmpd_11.8.17.bb new file mode 100644 index 0000000000..b58a4fac87 --- /dev/null +++ b/meta-multimedia/recipes-multimedia/musicpd/libmpd_11.8.17.bb | |||
@@ -0,0 +1,11 @@ | |||
1 | DESCRIPTION = "Music Player Daemon library" | ||
2 | LICENSE = "GPLv2" | ||
3 | LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" | ||
4 | HOMEPAGE ="http://sourceforge.net/projects/musicpd" | ||
5 | DEPENDS = "glib-2.0" | ||
6 | |||
7 | SRC_URI = "${SOURCEFORGE_MIRROR}/musicpd/${PN}/${PV}/${PN}-${PV}.tar.gz" | ||
8 | SRC_URI[md5sum] = "5ae3d87467d52aef3345407adb0a2488" | ||
9 | SRC_URI[sha256sum] = "fe20326b0d10641f71c4673fae637bf9222a96e1712f71f170fca2fc34bf7a83" | ||
10 | |||
11 | inherit autotools | ||
diff --git a/meta-multimedia/recipes-multimedia/musicpd/mpd/mpd.conf.in b/meta-multimedia/recipes-multimedia/musicpd/mpd/mpd.conf.in new file mode 100644 index 0000000000..f9f92c98bd --- /dev/null +++ b/meta-multimedia/recipes-multimedia/musicpd/mpd/mpd.conf.in | |||
@@ -0,0 +1,420 @@ | |||
1 | # An example configuration file for MPD | ||
2 | # See the mpd.conf man page for a more detailed description of each parameter. | ||
3 | |||
4 | |||
5 | # Files and directories ####################################################### | ||
6 | # | ||
7 | # This setting controls the top directory which MPD will search to discover the | ||
8 | # available audio files and add them to the daemon's online database. This | ||
9 | # setting defaults to the XDG directory, otherwise the music directory will be | ||
10 | # be disabled and audio files will only be accepted over ipc socket (using | ||
11 | # file:// protocol) or streaming files over an accepted protocol. | ||
12 | # | ||
13 | music_directory "%music_directory%" | ||
14 | # | ||
15 | # This setting sets the MPD internal playlist directory. The purpose of this | ||
16 | # directory is storage for playlists created by MPD. The server will use | ||
17 | # playlist files not created by the server but only if they are in the MPD | ||
18 | # format. This setting defaults to playlist saving being disabled. | ||
19 | # | ||
20 | playlist_directory "%playlist_directory%" | ||
21 | # | ||
22 | # This setting sets the location of the MPD database. This file is used to | ||
23 | # load the database at server start up and store the database while the | ||
24 | # server is not up. This setting defaults to disabled which will allow | ||
25 | # MPD to accept files over ipc socket (using file:// protocol) or streaming | ||
26 | # files over an accepted protocol. | ||
27 | # | ||
28 | db_file "%db_file%" | ||
29 | # | ||
30 | # These settings are the locations for the daemon log files for the daemon. | ||
31 | # These logs are great for troubleshooting, depending on your log_level | ||
32 | # settings. | ||
33 | # | ||
34 | # The special value "syslog" makes MPD use the local syslog daemon. This | ||
35 | # setting defaults to logging to syslog, otherwise logging is disabled. | ||
36 | # | ||
37 | log_file "%log_file%" | ||
38 | # | ||
39 | # This setting sets the location of the file which stores the process ID | ||
40 | # for use of mpd --kill and some init scripts. This setting is disabled by | ||
41 | # default and the pid file will not be stored. | ||
42 | # | ||
43 | #pid_file "/var/run/mpd/mpd.pid" | ||
44 | # | ||
45 | # This setting sets the location of the file which contains information about | ||
46 | # most variables to get MPD back into the same general shape it was in before | ||
47 | # it was brought down. This setting is disabled by default and the server | ||
48 | # state will be reset on server start up. | ||
49 | # | ||
50 | state_file "%state_file%" | ||
51 | # | ||
52 | # The location of the sticker database. This is a database which | ||
53 | # manages dynamic information attached to songs. | ||
54 | # | ||
55 | #sticker_file "~/.mpd/sticker.sql" | ||
56 | # | ||
57 | ############################################################################### | ||
58 | |||
59 | |||
60 | # General music daemon options ################################################ | ||
61 | # | ||
62 | # This setting specifies the user that MPD will run as. MPD should never run as | ||
63 | # root and you may use this setting to make MPD change its user ID after | ||
64 | # initialization. This setting is disabled by default and MPD is run as the | ||
65 | # current user. | ||
66 | # | ||
67 | user "mpd" | ||
68 | # | ||
69 | # This setting specifies the group that MPD will run as. If not specified | ||
70 | # primary group of user specified with "user" setting will be used (if set). | ||
71 | # This is useful if MPD needs to be a member of group such as "audio" to | ||
72 | # have permission to use sound card. | ||
73 | # | ||
74 | group "audio" | ||
75 | # | ||
76 | # This setting sets the address for the daemon to listen on. Careful attention | ||
77 | # should be paid if this is assigned to anything other then the default, any. | ||
78 | # This setting can deny access to control of the daemon. | ||
79 | # | ||
80 | # For network | ||
81 | bind_to_address "any" | ||
82 | # | ||
83 | # And for Unix Socket | ||
84 | #bind_to_address "~/.mpd/socket" | ||
85 | # | ||
86 | # This setting is the TCP port that is desired for the daemon to get assigned | ||
87 | # to. | ||
88 | # | ||
89 | #port "6600" | ||
90 | # | ||
91 | # This setting controls the type of information which is logged. Available | ||
92 | # setting arguments are "default", "secure" or "verbose". The "verbose" setting | ||
93 | # argument is recommended for troubleshooting, though can quickly stretch | ||
94 | # available resources on limited hardware storage. | ||
95 | # | ||
96 | #log_level "default" | ||
97 | # | ||
98 | # If you have a problem with your MP3s ending abruptly it is recommended that | ||
99 | # you set this argument to "no" to attempt to fix the problem. If this solves | ||
100 | # the problem, it is highly recommended to fix the MP3 files with vbrfix | ||
101 | # (available from <http://www.willwap.co.uk/Programs/vbrfix.php>), at which | ||
102 | # point gapless MP3 playback can be enabled. | ||
103 | # | ||
104 | #gapless_mp3_playback "yes" | ||
105 | # | ||
106 | # This setting enables MPD to create playlists in a format usable by other | ||
107 | # music players. | ||
108 | # | ||
109 | #save_absolute_paths_in_playlists "no" | ||
110 | # | ||
111 | # This setting defines a list of tag types that will be extracted during the | ||
112 | # audio file discovery process. Optionally, 'comment' can be added to this | ||
113 | # list. | ||
114 | # | ||
115 | #metadata_to_use "artist,album,title,track,name,genre,date,composer,performer,disc" | ||
116 | # | ||
117 | # This setting enables automatic update of MPD's database when files in | ||
118 | # music_directory are changed. | ||
119 | # | ||
120 | #auto_update "yes" | ||
121 | # | ||
122 | # Limit the depth of the directories being watched, 0 means only watch | ||
123 | # the music directory itself. There is no limit by default. | ||
124 | # | ||
125 | #auto_update_depth "3" | ||
126 | # | ||
127 | ############################################################################### | ||
128 | |||
129 | |||
130 | # Symbolic link behavior ###################################################### | ||
131 | # | ||
132 | # If this setting is set to "yes", MPD will discover audio files by following | ||
133 | # symbolic links outside of the configured music_directory. | ||
134 | # | ||
135 | #follow_outside_symlinks "yes" | ||
136 | # | ||
137 | # If this setting is set to "yes", MPD will discover audio files by following | ||
138 | # symbolic links inside of the configured music_directory. | ||
139 | # | ||
140 | #follow_inside_symlinks "yes" | ||
141 | # | ||
142 | ############################################################################### | ||
143 | |||
144 | |||
145 | # Zeroconf / Avahi Service Discovery ########################################## | ||
146 | # | ||
147 | # If this setting is set to "yes", service information will be published with | ||
148 | # Zeroconf / Avahi. | ||
149 | # | ||
150 | #zeroconf_enabled "yes" | ||
151 | # | ||
152 | # The argument to this setting will be the Zeroconf / Avahi unique name for | ||
153 | # this MPD server on the network. | ||
154 | # | ||
155 | #zeroconf_name "Music Player" | ||
156 | # | ||
157 | ############################################################################### | ||
158 | |||
159 | |||
160 | # Permissions ################################################################# | ||
161 | # | ||
162 | # If this setting is set, MPD will require password authorization. The password | ||
163 | # can setting can be specified multiple times for different password profiles. | ||
164 | # | ||
165 | #password "password@read,add,control,admin" | ||
166 | # | ||
167 | # This setting specifies the permissions a user has who has not yet logged in. | ||
168 | # | ||
169 | #default_permissions "read,add,control,admin" | ||
170 | # | ||
171 | ############################################################################### | ||
172 | |||
173 | |||
174 | # Input ####################################################################### | ||
175 | # | ||
176 | |||
177 | input { | ||
178 | plugin "curl" | ||
179 | # proxy "proxy.isp.com:8080" | ||
180 | # proxy_user "user" | ||
181 | # proxy_password "password" | ||
182 | } | ||
183 | |||
184 | # | ||
185 | ############################################################################### | ||
186 | |||
187 | # Audio Output ################################################################ | ||
188 | # | ||
189 | # MPD supports various audio output types, as well as playing through multiple | ||
190 | # audio outputs at the same time, through multiple audio_output settings | ||
191 | # blocks. Setting this block is optional, though the server will only attempt | ||
192 | # autodetection for one sound card. | ||
193 | # | ||
194 | # See <http://mpd.wikia.com/wiki/Configuration#Audio_Outputs> for examples of | ||
195 | # other audio outputs. | ||
196 | # | ||
197 | # board specific examples ##################################################### | ||
198 | # (feel free to add futher) | ||
199 | # | ||
200 | # gumstix overo (tested with TOBI expansion board) | ||
201 | #audio_output { | ||
202 | # type "alsa" | ||
203 | # name "overo" | ||
204 | # mixer_control "Headset" | ||
205 | # mixer_index "0" | ||
206 | #} | ||
207 | # | ||
208 | # general examples ############################################################ | ||
209 | # | ||
210 | # An example of an ALSA output: | ||
211 | # | ||
212 | #audio_output { | ||
213 | # type "alsa" | ||
214 | # name "My ALSA Device" | ||
215 | ## device "hw:0,0" # optional | ||
216 | ## format "44100:16:2" # optional | ||
217 | ## mixer_type "hardware" # optional | ||
218 | ## mixer_device "default" # optional | ||
219 | ## mixer_control "PCM" # optional | ||
220 | ## mixer_index "0" # optional | ||
221 | #} | ||
222 | # | ||
223 | # An example of an OSS output: | ||
224 | # | ||
225 | #audio_output { | ||
226 | # type "oss" | ||
227 | # name "My OSS Device" | ||
228 | ## device "/dev/dsp" # optional | ||
229 | ## format "44100:16:2" # optional | ||
230 | ## mixer_type "hardware" # optional | ||
231 | ## mixer_device "/dev/mixer" # optional | ||
232 | ## mixer_control "PCM" # optional | ||
233 | #} | ||
234 | # | ||
235 | # An example of a shout output (for streaming to Icecast): | ||
236 | # | ||
237 | #audio_output { | ||
238 | # type "shout" | ||
239 | # encoding "ogg" # optional | ||
240 | # name "My Shout Stream" | ||
241 | # host "localhost" | ||
242 | # port "8000" | ||
243 | # mount "/mpd.ogg" | ||
244 | # password "hackme" | ||
245 | # quality "5.0" | ||
246 | # bitrate "128" | ||
247 | # format "44100:16:1" | ||
248 | ## protocol "icecast2" # optional | ||
249 | ## user "source" # optional | ||
250 | ## description "My Stream Description" # optional | ||
251 | ## genre "jazz" # optional | ||
252 | ## public "no" # optional | ||
253 | ## timeout "2" # optional | ||
254 | ## mixer_type "software" # optional | ||
255 | #} | ||
256 | # | ||
257 | # An example of a recorder output: | ||
258 | # | ||
259 | #audio_output { | ||
260 | # type "recorder" | ||
261 | # name "My recorder" | ||
262 | # encoder "vorbis" # optional, vorbis or lame | ||
263 | # path "/var/lib/mpd/recorder/mpd.ogg" | ||
264 | ## quality "5.0" # do not define if bitrate is defined | ||
265 | # bitrate "128" # do not define if quality is defined | ||
266 | # format "44100:16:1" | ||
267 | #} | ||
268 | # | ||
269 | # An example of a httpd output (built-in HTTP streaming server): | ||
270 | # | ||
271 | #audio_output { | ||
272 | # type "httpd" | ||
273 | # name "My HTTP Stream" | ||
274 | # encoder "vorbis" # optional, vorbis or lame | ||
275 | # port "8000" | ||
276 | # bind_to_address "0.0.0.0" # optional, IPv4 or IPv6 | ||
277 | ## quality "5.0" # do not define if bitrate is defined | ||
278 | # bitrate "128" # do not define if quality is defined | ||
279 | # format "44100:16:1" | ||
280 | # max_clients "0" # optional 0=no limit | ||
281 | #} | ||
282 | # | ||
283 | # An example of a pulseaudio output (streaming to a remote pulseaudio server) | ||
284 | # | ||
285 | #audio_output { | ||
286 | # type "pulse" | ||
287 | # name "My Pulse Output" | ||
288 | ## server "remote_server" # optional | ||
289 | ## sink "remote_server_sink" # optional | ||
290 | #} | ||
291 | # | ||
292 | ## Example "pipe" output: | ||
293 | # | ||
294 | #audio_output { | ||
295 | # type "pipe" | ||
296 | # name "my pipe" | ||
297 | # command "aplay -f cd 2>/dev/null" | ||
298 | ## Or if you're want to use AudioCompress | ||
299 | # command "AudioCompress -m | aplay -f cd 2>/dev/null" | ||
300 | ## Or to send raw PCM stream through PCM: | ||
301 | # command "nc example.org 8765" | ||
302 | # format "44100:16:2" | ||
303 | #} | ||
304 | # | ||
305 | ## An example of a null output (for no audio output): | ||
306 | # | ||
307 | #audio_output { | ||
308 | # type "null" | ||
309 | # name "My Null Output" | ||
310 | # mixer_type "none" # optional | ||
311 | #} | ||
312 | # | ||
313 | # This setting will change all decoded audio to be converted to the specified | ||
314 | # format before being passed to the audio outputs. By default, this setting is | ||
315 | # disabled. | ||
316 | # | ||
317 | #audio_output_format "44100:16:2" | ||
318 | # | ||
319 | # If MPD has been compiled with libsamplerate support, this setting specifies | ||
320 | # the sample rate converter to use. Possible values can be found in the | ||
321 | # mpd.conf man page or the libsamplerate documentation. By default, this is | ||
322 | # setting is disabled. | ||
323 | # | ||
324 | #samplerate_converter "Fastest Sinc Interpolator" | ||
325 | # | ||
326 | ############################################################################### | ||
327 | |||
328 | |||
329 | # Normalization automatic volume adjustments ################################## | ||
330 | # | ||
331 | # This setting specifies the type of ReplayGain to use. This setting can have | ||
332 | # the argument "off", "album" or "track". See <http://www.replaygain.org> | ||
333 | # for more details. This setting is off by default. | ||
334 | # | ||
335 | #replaygain "album" | ||
336 | # | ||
337 | # This setting sets the pre-amp used for files that have ReplayGain tags. By | ||
338 | # default this setting is disabled. | ||
339 | # | ||
340 | #replaygain_preamp "0" | ||
341 | # | ||
342 | # This setting enables on-the-fly normalization volume adjustment. This will | ||
343 | # result in the volume of all playing audio to be adjusted so the output has | ||
344 | # equal "loudness". This setting is disabled by default. | ||
345 | # | ||
346 | #volume_normalization "no" | ||
347 | # | ||
348 | ############################################################################### | ||
349 | |||
350 | |||
351 | # MPD Internal Buffering ###################################################### | ||
352 | # | ||
353 | # This setting adjusts the size of internal decoded audio buffering. Changing | ||
354 | # this may have undesired effects. Don't change this if you don't know what you | ||
355 | # are doing. | ||
356 | # | ||
357 | #audio_buffer_size "2048" | ||
358 | # | ||
359 | # This setting controls the percentage of the buffer which is filled before | ||
360 | # beginning to play. Increasing this reduces the chance of audio file skipping, | ||
361 | # at the cost of increased time prior to audio playback. | ||
362 | # | ||
363 | #buffer_before_play "10%" | ||
364 | # | ||
365 | ############################################################################### | ||
366 | |||
367 | |||
368 | # Resource Limitations ######################################################## | ||
369 | # | ||
370 | # These settings are various limitations to prevent MPD from using too many | ||
371 | # resources. Generally, these settings should be minimized to prevent security | ||
372 | # risks, depending on the operating resources. | ||
373 | # | ||
374 | #connection_timeout "60" | ||
375 | #max_connections "10" | ||
376 | #max_playlist_length "16384" | ||
377 | #max_command_list_size "2048" | ||
378 | #max_output_buffer_size "8192" | ||
379 | # | ||
380 | ############################################################################### | ||
381 | |||
382 | |||
383 | # Character Encoding ########################################################## | ||
384 | # | ||
385 | # If file or directory names do not display correctly for your locale then you | ||
386 | # may need to modify this setting. | ||
387 | # | ||
388 | #filesystem_charset "UTF-8" | ||
389 | # | ||
390 | # This setting controls the encoding that ID3v1 tags should be converted from. | ||
391 | # | ||
392 | #id3v1_encoding "ISO-8859-1" | ||
393 | # | ||
394 | ############################################################################### | ||
395 | |||
396 | |||
397 | # SIDPlay decoder ############################################################# | ||
398 | # | ||
399 | # songlength_database: | ||
400 | # Location of your songlengths file, as distributed with the HVSC. | ||
401 | # The sidplay plugin checks this for matching MD5 fingerprints. | ||
402 | # See http://www.c64.org/HVSC/DOCUMENTS/Songlengths.faq | ||
403 | # | ||
404 | # default_songlength: | ||
405 | # This is the default playing time in seconds for songs not in the | ||
406 | # songlength database, or in case you're not using a database. | ||
407 | # A value of 0 means play indefinitely. | ||
408 | # | ||
409 | # filter: | ||
410 | # Turns the SID filter emulation on or off. | ||
411 | # | ||
412 | #decoder { | ||
413 | # plugin "sidplay" | ||
414 | # songlength_database "/media/C64Music/DOCUMENTS/Songlengths.txt" | ||
415 | # default_songlength "120" | ||
416 | # filter "true" | ||
417 | #} | ||
418 | # | ||
419 | ############################################################################### | ||
420 | |||
diff --git a/meta-multimedia/recipes-multimedia/musicpd/mpd_0.17.1.bb b/meta-multimedia/recipes-multimedia/musicpd/mpd_0.17.1.bb new file mode 100644 index 0000000000..b3b82c4cb8 --- /dev/null +++ b/meta-multimedia/recipes-multimedia/musicpd/mpd_0.17.1.bb | |||
@@ -0,0 +1,44 @@ | |||
1 | DESCRIPTION = "Music Player Daemon" | ||
2 | LICENSE = "GPLv2" | ||
3 | LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" | ||
4 | HOMEPAGE ="http://sourceforge.net/projects/musicpd" | ||
5 | |||
6 | DEPENDS = "alsa-lib libsamplerate0 libsndfile1 libvorbis libogg faad2 ffmpeg curl sqlite bzip2 pulseaudio \ | ||
7 | ${@base_conditional('ENTERPRISE_DISTRO', '1', '', 'libmad lame libid3tag', d)}" | ||
8 | |||
9 | SRC_URI = " \ | ||
10 | ${SOURCEFORGE_MIRROR}/musicpd/${PN}/${PV}/${PN}-${PV}.tar.bz2 \ | ||
11 | file://mpd.conf.in \ | ||
12 | " | ||
13 | |||
14 | SRC_URI[md5sum] = "da3f3d6617a877192db4c6f53504cd38" | ||
15 | SRC_URI[sha256sum] = "b18cdb1b779ca2ab323e212a0af4a567b7da4881a4e96868a8979bdfdbe7c2e8" | ||
16 | |||
17 | inherit autotools useradd | ||
18 | |||
19 | EXTRA_OECONF = "enable_bzip2=yes" | ||
20 | |||
21 | do_install_append() { | ||
22 | install -d ${D}/${localstatedir}/lib/mpd/music | ||
23 | chmod 775 ${D}/${localstatedir}/lib/mpd/music | ||
24 | install -d ${D}/${localstatedir}/lib/mpd/playlists | ||
25 | chown -R mpd ${D}/${localstatedir}/lib/mpd | ||
26 | chown mpd:mpd ${D}/${localstatedir}/lib/mpd/music | ||
27 | |||
28 | install -d ${D}/${sysconfdir} | ||
29 | install -m 644 ${WORKDIR}/mpd.conf.in ${D}/${sysconfdir}/mpd.conf | ||
30 | sed -i \ | ||
31 | -e 's|%music_directory%|${localstatedir}/lib/mpd/music|' \ | ||
32 | -e 's|%playlist_directory%|${localstatedir}/lib/mpd/playlists|' \ | ||
33 | -e 's|%db_file%|${localstatedir}/lib/mpd/mpd.db|' \ | ||
34 | -e 's|%log_file%|${localstatedir}/log/mpd.log|' \ | ||
35 | -e 's|%state_file%|${localstatedir}/lib/mpd/state|' \ | ||
36 | ${D}/${sysconfdir}/mpd.conf | ||
37 | } | ||
38 | |||
39 | USERADD_PACKAGES = "${PN}" | ||
40 | USERADD_PARAM_${PN} = " \ | ||
41 | --system --no-create-home \ | ||
42 | --home ${localstatedir}/lib/mpd \ | ||
43 | --groups audio \ | ||
44 | --user-group mpd" | ||
diff --git a/meta-oe/recipes-connectivity/midori/midori_0.4.5.bb b/meta-oe/recipes-connectivity/midori/midori_0.4.6.bb index 7d68720629..8b1a98204f 100644 --- a/meta-oe/recipes-connectivity/midori/midori_0.4.5.bb +++ b/meta-oe/recipes-connectivity/midori/midori_0.4.6.bb | |||
@@ -8,8 +8,8 @@ PR = "r1" | |||
8 | 8 | ||
9 | SRC_URI = "http://archive.xfce.org/src/apps/midori/0.4/midori-${PV}.tar.bz2;name=midori \ | 9 | SRC_URI = "http://archive.xfce.org/src/apps/midori/0.4/midori-${PV}.tar.bz2;name=midori \ |
10 | " | 10 | " |
11 | SRC_URI[midori.md5sum] = "14288197a1e2251b7c0803e1448daa0e" | 11 | SRC_URI[midori.md5sum] = "3c3f0030611d9126ab90be48d44cab57" |
12 | SRC_URI[midori.sha256sum] = "7b57cf3ebb56eef586351f2ae9f71ec9683aedff0b79a071b70b811d9876ff84" | 12 | SRC_URI[midori.sha256sum] = "910f47bd2b5f2998cd4fce45c08f9e282318820b68562d0bade2096b9a17e3ea" |
13 | 13 | ||
14 | inherit gtk-icon-cache pkgconfig | 14 | inherit gtk-icon-cache pkgconfig |
15 | 15 | ||
diff --git a/meta-systemd/meta-multimedia/recipes-multimedia/musicpd/mpd_0.17.1.bbappend b/meta-systemd/meta-multimedia/recipes-multimedia/musicpd/mpd_0.17.1.bbappend new file mode 100644 index 0000000000..eee4cdd3ac --- /dev/null +++ b/meta-systemd/meta-multimedia/recipes-multimedia/musicpd/mpd_0.17.1.bbappend | |||
@@ -0,0 +1,14 @@ | |||
1 | PRINC := "${@int(PRINC) + 1}" | ||
2 | |||
3 | inherit systemd | ||
4 | |||
5 | EXTRA_OECONF += "--with-systemdsystemunitdir=${systemd_unitdir}/system" | ||
6 | |||
7 | do_install_append() { | ||
8 | sed -i \ | ||
9 | 's|^ExecStart=.*|ExecStart=${bindir}/mpd --no-daemon|' \ | ||
10 | ${D}/${systemd_unitdir}/system/mpd.service | ||
11 | } | ||
12 | |||
13 | SYSTEMD_PACKAGES = "${PN}-systemd" | ||
14 | SYSTEMD_SERVICE = "mpd.service" | ||
diff --git a/meta-xfce/README b/meta-xfce/README index fa2bab0492..88f2332d30 100644 --- a/meta-xfce/README +++ b/meta-xfce/README | |||
@@ -7,6 +7,12 @@ revision: HEAD | |||
7 | URI: git://git.openembedded.org/meta-openembedded | 7 | URI: git://git.openembedded.org/meta-openembedded |
8 | branch: master | 8 | branch: master |
9 | revision: HEAD | 9 | revision: HEAD |
10 | meta-xfce depends on meta-oe and meta-multimedia in this repository. | ||
11 | |||
12 | To avoid dependencies on meta-multimedia you need to mask recipes by adding | ||
13 | this to local.conf: | ||
14 | |||
15 | BBMASK = "meta-xfce/recipes-multimedia" | ||
10 | 16 | ||
11 | Send pull requests to openembedded-devel@lists.openembedded.org with '[meta-xfce]' in the subject' | 17 | Send pull requests to openembedded-devel@lists.openembedded.org with '[meta-xfce]' in the subject' |
12 | 18 | ||
diff --git a/meta-xfce/classes/xfce.bbclass b/meta-xfce/classes/xfce.bbclass index 2350c2703f..f4ef55643b 100644 --- a/meta-xfce/classes/xfce.bbclass +++ b/meta-xfce/classes/xfce.bbclass | |||
@@ -1,5 +1,10 @@ | |||
1 | def xfce_verdir(v): | ||
2 | import re | ||
3 | m = re.match("^([0-9]+)\.([0-9]+)", v) | ||
4 | return "%s.%s" % (m.group(1), m.group(2)) | ||
5 | |||
1 | HOMEPAGE = "http://www.xfce.org" | 6 | HOMEPAGE = "http://www.xfce.org" |
2 | SRC_URI = "http://archive.xfce.org/src/xfce/${BPN}/${@'${PV}'[0:3]}/${BPN}-${PV}.tar.bz2" | 7 | SRC_URI = "http://archive.xfce.org/src/xfce/${BPN}/${@xfce_verdir("${PV}")}/${BPN}-${PV}.tar.bz2" |
3 | 8 | ||
4 | inherit autotools gettext gtk-icon-cache pkgconfig | 9 | inherit autotools gettext gtk-icon-cache pkgconfig |
5 | 10 | ||
diff --git a/meta-xfce/recipes-apps/ristretto/ristretto_0.3.5.bb b/meta-xfce/recipes-apps/ristretto/ristretto_0.6.3.bb index fec5c46b66..959dcadf7e 100644 --- a/meta-xfce/recipes-apps/ristretto/ristretto_0.3.5.bb +++ b/meta-xfce/recipes-apps/ristretto/ristretto_0.6.3.bb | |||
@@ -2,13 +2,12 @@ DESCRIPTION = "Tiny image-viewer" | |||
2 | HOMEPAGE = "http://goodies.xfce.org/projects/applications/ristretto" | 2 | HOMEPAGE = "http://goodies.xfce.org/projects/applications/ristretto" |
3 | SECTION = "x11/application" | 3 | SECTION = "x11/application" |
4 | LICENSE = "GPLv2" | 4 | LICENSE = "GPLv2" |
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" | 5 | LIC_FILES_CHKSUM = "file://COPYING;md5=35d145429ad3cbf5308d1dc93f66376b" |
6 | PR = "r1" | ||
7 | DEPENDS = "exo libexif gtk+ dbus-glib libxfce4ui libxfce4util xfconf cairo" | 6 | DEPENDS = "exo libexif gtk+ dbus-glib libxfce4ui libxfce4util xfconf cairo" |
8 | 7 | ||
9 | inherit xfce-app | 8 | inherit xfce-app |
10 | 9 | ||
11 | RRECOMMENDS_${PN} += "tumbler" | 10 | RRECOMMENDS_${PN} += "tumbler" |
12 | 11 | ||
13 | SRC_URI[md5sum] = "3bfdf129926236a45c58d7afdbb703b7" | 12 | SRC_URI[md5sum] = "6b8c9a5d7ed319e4c84a9fefaa18792c" |
14 | SRC_URI[sha256sum] = "96dc519c2e930955f97027d7b9bb7542b01a6ad0ca53a16f9af58f7c851eb8f2" | 13 | SRC_URI[sha256sum] = "2b6816de298e9a0d9b95662664690713c4123a9ac813a27bdde4727a03472d79" |
diff --git a/meta-xfce/recipes-apps/xfce4-screenshooter/files/0001-Fix-panel-plugin-build.patch b/meta-xfce/recipes-apps/xfce4-screenshooter/files/0001-Fix-panel-plugin-build.patch new file mode 100644 index 0000000000..c30f9cb18d --- /dev/null +++ b/meta-xfce/recipes-apps/xfce4-screenshooter/files/0001-Fix-panel-plugin-build.patch | |||
@@ -0,0 +1,43 @@ | |||
1 | From 08053be7adc6d4a83191efed735c3f565bcbcf1f Mon Sep 17 00:00:00 2001 | ||
2 | From: Samuli Suominen <ssuominen@gentoo.org> | ||
3 | Date: Sat, 5 May 2012 17:13:45 +0200 | ||
4 | Subject: [PATCH] Fix panel plugin build. | ||
5 | |||
6 | - Don't use a versioned library. | ||
7 | - Build as a module. | ||
8 | - Only export needed symbols. | ||
9 | --- | ||
10 | Upstream-status: applied | ||
11 | Makefile.am | 12 +++++++++--- | ||
12 | 1 files changed, 9 insertions(+), 3 deletions(-) | ||
13 | |||
14 | diff --git a/Makefile.am b/Makefile.am | ||
15 | index 45100fd..d0c0adb 100644 | ||
16 | --- a/Makefile.am | ||
17 | +++ b/Makefile.am | ||
18 | @@ -132,13 +132,19 @@ panel_plugin_libscreenshooterplugin_la_CFLAGS = \ | ||
19 | @SOUP_CFLAGS@ | ||
20 | |||
21 | panel_plugin_libscreenshooterplugin_la_LDFLAGS = \ | ||
22 | + -avoid-version \ | ||
23 | + -module \ | ||
24 | + -no-undefined \ | ||
25 | + -export-symbols-regex '^xfce_panel_module_(preinit|init|construct)' \ | ||
26 | + $(PLATFORM_LDFLAGS) | ||
27 | + | ||
28 | +panel_plugin_libscreenshooterplugin_la_LIBADD = \ | ||
29 | @EXO_LIBS@ \ | ||
30 | @LIBXFCE4PANEL_LIBS@ \ | ||
31 | @GTHREAD_LIBS@ \ | ||
32 | @SOUP_LIBS@ \ | ||
33 | - @LIBXFCE4UI_LIBS@ | ||
34 | - | ||
35 | -panel_plugin_libscreenshooterplugin_la_LIBADD = lib/libscreenshooter.la | ||
36 | + @LIBXFCE4UI_LIBS@ \ | ||
37 | + lib/libscreenshooter.la | ||
38 | |||
39 | panel_plugin_libscreenshooterplugin_la_SOURCES = \ | ||
40 | panel-plugin/screenshooter-plugin.c | ||
41 | -- | ||
42 | 1.7.4.4 | ||
43 | |||
diff --git a/meta-xfce/recipes-apps/xfce4-screenshooter/xfce4-screenshooter_1.8.0.bb b/meta-xfce/recipes-apps/xfce4-screenshooter/xfce4-screenshooter_1.8.1.bb index 2362b8abf8..b05c29873b 100644 --- a/meta-xfce/recipes-apps/xfce4-screenshooter/xfce4-screenshooter_1.8.0.bb +++ b/meta-xfce/recipes-apps/xfce4-screenshooter/xfce4-screenshooter_1.8.1.bb | |||
@@ -5,12 +5,11 @@ LICENSE = "GPLv2" | |||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=d791728a073bc009b4ffaf00b7599855" | 5 | LIC_FILES_CHKSUM = "file://COPYING;md5=d791728a073bc009b4ffaf00b7599855" |
6 | DEPENDS = "xfce4-panel libxfce4util libxfce4ui gdk-pixbuf gtk+ glib-2.0 libsoup-2.4 exo libxfixes xext virtual/libx11" | 6 | DEPENDS = "xfce4-panel libxfce4util libxfce4ui gdk-pixbuf gtk+ glib-2.0 libsoup-2.4 exo libxfixes xext virtual/libx11" |
7 | 7 | ||
8 | PR = "r0" | ||
9 | |||
10 | inherit xfce-app | 8 | inherit xfce-app |
11 | 9 | ||
12 | FILES_${PN} += "${datadir}/xfce4/panel-plugins/*" | 10 | SRC_URI += "file://0001-Fix-panel-plugin-build.patch" |
13 | FILES_${PN}-dbg += "${libexecdir}/xfce4/panel-plugins/.debug" | 11 | SRC_URI[md5sum] = "d0ffea2052a8e70154cf13789070711f" |
12 | SRC_URI[sha256sum] = "40419892bd28989315eed053c159bba0f4264ed8c6c6738806024e481eab9492" | ||
14 | 13 | ||
15 | SRC_URI[md5sum] = "b51ab5725418e7258273c4a6402adb02" | 14 | FILES_${PN} += "${datadir}/xfce4/panel/plugins \ |
16 | SRC_URI[sha256sum] = "68748a42ae68c5a8e9ed1c14ec5c741a344ab30b5b325b8812220539548ad83e" | 15 | ${libdir}/xfce4/panel/plugins" |
diff --git a/meta-xfce/recipes-art/xfwm4-themes/xfwm4-themes_4.10.0.bb b/meta-xfce/recipes-art/xfwm4-themes/xfwm4-themes_4.10.0.bb new file mode 100644 index 0000000000..c018cb5285 --- /dev/null +++ b/meta-xfce/recipes-art/xfwm4-themes/xfwm4-themes_4.10.0.bb | |||
@@ -0,0 +1,19 @@ | |||
1 | DESCRIPTION = "Additional (old) themes for Xfwm4" | ||
2 | SECTION = "x11/wm" | ||
3 | LICENSE = "GPLv3" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" | ||
5 | |||
6 | inherit xfce | ||
7 | |||
8 | SRC_URI = "http://archive.xfce.org/src/art/${PN}/${@'${PV}'[0:4]}/${PN}-${PV}.tar.bz2" | ||
9 | SRC_URI[md5sum] = "eaa58362053a3549c8be0b32efd3c54f" | ||
10 | SRC_URI[sha256sum] = "3214d5f00e9703b5e8c9e7c3287d606dedec7285ceb4d5db332e93ada66fd575" | ||
11 | |||
12 | # using xfwm4-theme as in xfwm4 might cause warnings of packages supplied by | ||
13 | # multiple providers. So we use xfwm4-old-theme here. | ||
14 | python populate_packages_prepend () { | ||
15 | themedir = bb.data.expand('${datadir}/themes', d) | ||
16 | do_split_packages(d, themedir, '^(.*)', 'xfwm4-old-theme-%s', 'XFWM4 theme %s', allow_dirs=True) | ||
17 | } | ||
18 | |||
19 | PACKAGES_DYNAMIC += "xfwm4-old-theme-*" | ||
diff --git a/meta-xfce/recipes-multimedia/packagegroups/packagegroup-xfce-multimedia.bb b/meta-xfce/recipes-multimedia/packagegroups/packagegroup-xfce-multimedia.bb new file mode 100644 index 0000000000..b86957273b --- /dev/null +++ b/meta-xfce/recipes-multimedia/packagegroups/packagegroup-xfce-multimedia.bb | |||
@@ -0,0 +1,10 @@ | |||
1 | DESCRIPTION = "All packages multimedia packages available for XFCE" | ||
2 | LICENSE = "MIT" | ||
3 | LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58" | ||
4 | |||
5 | inherit packagegroup | ||
6 | |||
7 | RDEPENDS_${PN} = " \ | ||
8 | xfmpc \ | ||
9 | xfce4-mpc-plugin \ | ||
10 | " | ||
diff --git a/meta-xfce/recipes-multimedia/xfce4-mpc-plugin/xfce4-mpc-plugin_0.4.4.bb b/meta-xfce/recipes-multimedia/xfce4-mpc-plugin/xfce4-mpc-plugin_0.4.4.bb new file mode 100644 index 0000000000..a4a4c3e51a --- /dev/null +++ b/meta-xfce/recipes-multimedia/xfce4-mpc-plugin/xfce4-mpc-plugin_0.4.4.bb | |||
@@ -0,0 +1,15 @@ | |||
1 | DESCRIPTION = "Simple client plugin for Music Player Daemon" | ||
2 | HOMEPAGE = "http://goodies.xfce.org/projects/panel-plugins/xfce4-mpc-plugin" | ||
3 | SECTION = "x11/application" | ||
4 | LICENSE = "BSD" | ||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=3604d987e6dfdfc672c754d08953b0e0" | ||
6 | |||
7 | inherit xfce-panel-plugin | ||
8 | |||
9 | DEPENDS += "libmpd" | ||
10 | |||
11 | # for now we recommend our own mpd-server | ||
12 | RRECOMMENDS_${PN} = "mpd" | ||
13 | |||
14 | SRC_URI[md5sum] = "1c126ca71d6db1ac6a0cc6720554e7bd" | ||
15 | SRC_URI[sha256sum] = "4f0ce6146aa2680a4c1ca7bad1be30187a8a179e8c4355a8fe13d1fc38dac5c5" | ||
diff --git a/meta-xfce/recipes-multimedia/xfmpc/xfmpc_0.2.2.bb b/meta-xfce/recipes-multimedia/xfmpc/xfmpc_0.2.2.bb new file mode 100644 index 0000000000..1f31be953b --- /dev/null +++ b/meta-xfce/recipes-multimedia/xfmpc/xfmpc_0.2.2.bb | |||
@@ -0,0 +1,13 @@ | |||
1 | DESCRIPTION = "Music Player Daemon (MPD) client written in GTK+" | ||
2 | HOMEPAGE = "http://goodies.xfce.org/projects/applications/xfmpc" | ||
3 | LICENSE = "GPLv2" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" | ||
5 | DEPENDS = "gtk+ libxfce4util libxfce4ui libmpd vala-native" | ||
6 | |||
7 | # for now we recommend our own mpd-server | ||
8 | RRECOMMENDS_${PN} = "mpd" | ||
9 | |||
10 | inherit xfce-app | ||
11 | |||
12 | SRC_URI[md5sum] = "e4e198850c2467c47783969ac9c16ec0" | ||
13 | SRC_URI[sha256sum] = "ed0cc2940bd5928bb30fab1531c22185a97bd0cc5beacd9e3be4d4cd994a6862" | ||
diff --git a/meta-xfce/recipes-panel-plugins/battery/xfce4-battery-plugin_1.0.5.bb b/meta-xfce/recipes-panel-plugins/battery/xfce4-battery-plugin_1.0.5.bb new file mode 100644 index 0000000000..97ffd521a5 --- /dev/null +++ b/meta-xfce/recipes-panel-plugins/battery/xfce4-battery-plugin_1.0.5.bb | |||
@@ -0,0 +1,9 @@ | |||
1 | DESCRIPTION = "A battery monitor panel plugin for Xfce4, compatible with APM and ACP" | ||
2 | HOMEPAGE = "http://goodies.xfce.org/projects/panel-plugins/xfce4-battery-plugin" | ||
3 | LICENSE = "GPLv2" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" | ||
5 | |||
6 | inherit xfce-panel-plugin | ||
7 | |||
8 | SRC_URI[md5sum] = "ca2d394e411a20442a519efa0d14f8ec" | ||
9 | SRC_URI[sha256sum] = "f659b1af40ab72c93448affaa693ab551827a5600ce9b97a799b7c2419bdeb11" | ||
diff --git a/meta-xfce/recipes-panel-plugins/cpugraph/xfce4-cpugraph-plugin_1.0.2.bb b/meta-xfce/recipes-panel-plugins/cpugraph/xfce4-cpugraph-plugin_1.0.5.bb index e3bea63fe4..e32cbfb161 100644 --- a/meta-xfce/recipes-panel-plugins/cpugraph/xfce4-cpugraph-plugin_1.0.2.bb +++ b/meta-xfce/recipes-panel-plugins/cpugraph/xfce4-cpugraph-plugin_1.0.5.bb | |||
@@ -5,5 +5,5 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=415654f59d8fa70fe4eac2c3f86c8f5e" | |||
5 | 5 | ||
6 | inherit xfce-panel-plugin | 6 | inherit xfce-panel-plugin |
7 | 7 | ||
8 | SRC_URI[md5sum] = "93d7658d989ebf110875bc2deb76d7b3" | 8 | SRC_URI[md5sum] = "f0ebfabb273adf69361b37a3fa4b7912" |
9 | SRC_URI[sha256sum] = "b535a9c3d105c0d1597fa4071fe140912bb483c4401c84ad178531fc85de0577" | 9 | SRC_URI[sha256sum] = "85da0ec89aacfd31e0bbafcefea37cdca618d62e681c1c9da8bdd492f028f4c7" |
diff --git a/meta-xfce/recipes-panel-plugins/diskperf/xfce4-diskperf-plugin_2.5.3.bb b/meta-xfce/recipes-panel-plugins/diskperf/xfce4-diskperf-plugin_2.5.4.bb index e80d0bd023..6946931a0d 100644 --- a/meta-xfce/recipes-panel-plugins/diskperf/xfce4-diskperf-plugin_2.5.3.bb +++ b/meta-xfce/recipes-panel-plugins/diskperf/xfce4-diskperf-plugin_2.5.4.bb | |||
@@ -5,5 +5,5 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d3e627798d6a60bece47aa8b3532e1f1" | |||
5 | 5 | ||
6 | inherit xfce-panel-plugin | 6 | inherit xfce-panel-plugin |
7 | 7 | ||
8 | SRC_URI[md5sum] = "ba880f763e273787d0c8365eebc4feab" | 8 | SRC_URI[md5sum] = "2db453fc3ea2e4fe073ec313a25b0961" |
9 | SRC_URI[sha256sum] = "418a250fe8d48f1fd87658206a8e6762032d35dc1b2e98e27d309a35f873f9b6" | 9 | SRC_URI[sha256sum] = "aab6b9c4e2f78620920efac6874c4edf426f05b63b94cfda0da8c99a91110a0b" |
diff --git a/meta-xfce/recipes-panel-plugins/fsguard/xfce4-fsguard-plugin_1.0.1.bb b/meta-xfce/recipes-panel-plugins/fsguard/xfce4-fsguard-plugin_1.0.1.bb new file mode 100644 index 0000000000..1446115212 --- /dev/null +++ b/meta-xfce/recipes-panel-plugins/fsguard/xfce4-fsguard-plugin_1.0.1.bb | |||
@@ -0,0 +1,9 @@ | |||
1 | DESCRIPTION = "The FSGuard panel plugin checks free space on a chosen mount point frequently and displays a message when a limit is reached" | ||
2 | HOMEPAGE = "http://goodies.xfce.org/projects/panel-plugins/xfce4-fsguard-plugin?&#recet_releases" | ||
3 | LICENSE = "GPLv2" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552" | ||
5 | |||
6 | inherit xfce-panel-plugin | ||
7 | |||
8 | SRC_URI[md5sum] = "9c179371475e2837004cc208026e30c1" | ||
9 | SRC_URI[sha256sum] = "fffb7ee09769ec0b991b8752b848578e6434a675a939c5588f0728c2ef33aab7" | ||
diff --git a/meta-xfce/recipes-panel-plugins/netload/xfce4-netload-plugin_1.1.0.bb b/meta-xfce/recipes-panel-plugins/netload/xfce4-netload-plugin_1.2.0.bb index 5dba77adcd..faf623dd04 100644 --- a/meta-xfce/recipes-panel-plugins/netload/xfce4-netload-plugin_1.1.0.bb +++ b/meta-xfce/recipes-panel-plugins/netload/xfce4-netload-plugin_1.2.0.bb | |||
@@ -5,5 +5,5 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=35a7203c41b86d15546dddc05995f97f" | |||
5 | 5 | ||
6 | inherit xfce-panel-plugin | 6 | inherit xfce-panel-plugin |
7 | 7 | ||
8 | SRC_URI[md5sum] = "19bee8171e7d681cb79539417f0b5917" | 8 | SRC_URI[md5sum] = "05180d60ed347029dc125368c1d4406e" |
9 | SRC_URI[sha256sum] = "8a33dfed24a7bbd8eaf333524f94eb24e7d3a14ffccb181e5cab1d1b05ae3bf7" | 9 | SRC_URI[sha256sum] = "c824f09e2d3860011b44d8272d661c458237786828027f3d9ad6a1d4f0096845" |
diff --git a/meta-xfce/recipes-panel-plugins/places/xfce4-places-plugin_1.3.0.bb b/meta-xfce/recipes-panel-plugins/places/xfce4-places-plugin_1.4.0.bb index 5310586d4a..1f6c231ce2 100644 --- a/meta-xfce/recipes-panel-plugins/places/xfce4-places-plugin_1.3.0.bb +++ b/meta-xfce/recipes-panel-plugins/places/xfce4-places-plugin_1.4.0.bb | |||
@@ -5,5 +5,5 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=b6952d9a47fc2ad0f315510e1290455f" | |||
5 | 5 | ||
6 | inherit xfce-panel-plugin | 6 | inherit xfce-panel-plugin |
7 | 7 | ||
8 | SRC_URI[md5sum] = "d075fffccf44bcf09a1bfcd4e0cd38a2" | 8 | SRC_URI[md5sum] = "cdb5c966c7a93ca29f2ce50223782133" |
9 | SRC_URI[sha256sum] = "0266e6bb9905b6af25f80cbb364d2710b6b95100382d2d540edf9f8408e09936" | 9 | SRC_URI[sha256sum] = "d2a451a35096ecb8b6ca96ab0af3ebca3f163a7c8dc08627518940a633cce5e5" |
diff --git a/meta-xfce/recipes-panel-plugins/systemload/xfce4-systemload-plugin_1.1.0.bb b/meta-xfce/recipes-panel-plugins/systemload/xfce4-systemload-plugin_1.1.1.bb index 367599e21a..53f6c4a3c1 100644 --- a/meta-xfce/recipes-panel-plugins/systemload/xfce4-systemload-plugin_1.1.0.bb +++ b/meta-xfce/recipes-panel-plugins/systemload/xfce4-systemload-plugin_1.1.1.bb | |||
@@ -7,5 +7,5 @@ inherit xfce-panel-plugin | |||
7 | 7 | ||
8 | DEPENDS += "upower" | 8 | DEPENDS += "upower" |
9 | 9 | ||
10 | SRC_URI[md5sum] = "130ad7befddd8705ca09a98e9cee5c3e" | 10 | SRC_URI[md5sum] = "22d48c0883f9d598bce24e81d93e692e" |
11 | SRC_URI[sha256sum] = "bc4ca8a7f66acb598d3f11bf0ee1fa650b869b3483176d708905d4ce9b1889f3" | 11 | SRC_URI[sha256sum] = "1ac13efbe9e576c9effd5e0675574a57c8fd44cfee60d6e319eb4d03c1c8d9ae" |
diff --git a/meta-xfce/recipes-panel-plugins/wavelan/xfce4-wavelan-plugin_0.5.10.bb b/meta-xfce/recipes-panel-plugins/wavelan/xfce4-wavelan-plugin_0.5.11.bb index 95acd621e0..b241cbafd2 100644 --- a/meta-xfce/recipes-panel-plugins/wavelan/xfce4-wavelan-plugin_0.5.10.bb +++ b/meta-xfce/recipes-panel-plugins/wavelan/xfce4-wavelan-plugin_0.5.11.bb | |||
@@ -5,5 +5,5 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=e1e5872df9c5cf1a23f16493d9104920" | |||
5 | 5 | ||
6 | inherit xfce-panel-plugin | 6 | inherit xfce-panel-plugin |
7 | 7 | ||
8 | SRC_URI[md5sum] = "a4cd20ef471123936e762a139f1025e1" | 8 | SRC_URI[md5sum] = "50514bb286f1ed6761a1b36832bb7fe3" |
9 | SRC_URI[sha256sum] = "c5b2535b9c90d3fbf6a5f94d096fbc9cb5ce85e2c5d67df933f6fe74ae6f761d" | 9 | SRC_URI[sha256sum] = "fe06c7ffc29c2d4ca7bc452b3356825354e276565de9b0a2d087ab55471755ae" |
diff --git a/meta-xfce/recipes-xfce/exo/exo/exo-no-tests-0.6.patch b/meta-xfce/recipes-xfce/exo/exo/exo-no-tests-0.6.patch deleted file mode 100644 index cab41a87d2..0000000000 --- a/meta-xfce/recipes-xfce/exo/exo/exo-no-tests-0.6.patch +++ /dev/null | |||
@@ -1,12 +0,0 @@ | |||
1 | --- a/Makefile.am.old 2011-01-16 16:38:21.000000000 +0100 | ||
2 | +++ b/Makefile.am 2011-03-24 22:14:26.000000000 +0100 | ||
3 | @@ -15,8 +15,7 @@ | ||
4 | icons \ | ||
5 | pixmaps \ | ||
6 | po \ | ||
7 | - $(PYTHON_SUBDIR) \ | ||
8 | - tests | ||
9 | + $(PYTHON_SUBDIR) | ||
10 | |||
11 | AUTOMAKE_OPTIONS = \ | ||
12 | 1.8 \ | ||
diff --git a/meta-xfce/recipes-xfce/exo/exo/exo-no-tests-0.8.patch b/meta-xfce/recipes-xfce/exo/exo/exo-no-tests-0.8.patch new file mode 100644 index 0000000000..ac8bca5f3f --- /dev/null +++ b/meta-xfce/recipes-xfce/exo/exo/exo-no-tests-0.8.patch | |||
@@ -0,0 +1,31 @@ | |||
1 | From 5f1e19860d89647488bdd32a02fb332f69434405 Mon Sep 17 00:00:00 2001 | ||
2 | From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@googlemail.com> | ||
3 | Date: Fri, 18 May 2012 21:13:00 +0200 | ||
4 | Subject: [PATCH] Do not run tests at build time | ||
5 | MIME-Version: 1.0 | ||
6 | Content-Type: text/plain; charset=UTF-8 | ||
7 | Content-Transfer-Encoding: 8bit | ||
8 | Upstream-Status: Not-Applicable | ||
9 | |||
10 | Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> | ||
11 | --- | ||
12 | Makefile.am | 3 +-- | ||
13 | 1 files changed, 1 insertions(+), 2 deletions(-) | ||
14 | |||
15 | diff --git a/Makefile.am b/Makefile.am | ||
16 | index 0ab3853..3e72391 100644 | ||
17 | --- a/Makefile.am | ||
18 | +++ b/Makefile.am | ||
19 | @@ -8,8 +8,7 @@ SUBDIRS = \ | ||
20 | docs \ | ||
21 | icons \ | ||
22 | pixmaps \ | ||
23 | - po \ | ||
24 | - tests | ||
25 | + po | ||
26 | |||
27 | AUTOMAKE_OPTIONS = \ | ||
28 | 1.9 \ | ||
29 | -- | ||
30 | 1.7.4.4 | ||
31 | |||
diff --git a/meta-xfce/recipes-xfce/exo/exo/fix-qa-desktop-type-error.patch b/meta-xfce/recipes-xfce/exo/exo/fix-qa-desktop-type-error.patch deleted file mode 100644 index e4ba75ed78..0000000000 --- a/meta-xfce/recipes-xfce/exo/exo/fix-qa-desktop-type-error.patch +++ /dev/null | |||
@@ -1,531 +0,0 @@ | |||
1 | --- a/exo-helper/exo-helper.c.old 2011-01-16 16:38:21.000000000 +0100 | ||
2 | +++ b/exo-helper/exo-helper.c 2011-03-07 12:31:49.000000000 +0100 | ||
3 | @@ -172,7 +172,7 @@ | ||
4 | helper->startup_notify = xfce_rc_read_bool_entry (rc, "StartupNotify", FALSE); | ||
5 | |||
6 | /* verify the type of the desktop file */ | ||
7 | - str = xfce_rc_read_entry_untranslated (rc, "Type", NULL); | ||
8 | + str = xfce_rc_read_entry_untranslated (rc, "X-XFCE-Type", NULL); | ||
9 | if (G_UNLIKELY (!exo_str_is_equal (str, "X-XFCE-Helper"))) | ||
10 | goto failed; | ||
11 | |||
12 | @@ -897,7 +897,8 @@ | ||
13 | xfce_rc_write_bool_entry (rc, "NoDisplay", TRUE); | ||
14 | xfce_rc_write_entry (rc, "Version", "1.0"); | ||
15 | xfce_rc_write_entry (rc, "Encoding", "UTF-8"); | ||
16 | - xfce_rc_write_entry (rc, "Type", "X-XFCE-Helper"); | ||
17 | + xfce_rc_write_entry (rc, "Type", "Application"); | ||
18 | + xfce_rc_write_entry (rc, "X-XFCE-Type", "X-XFCE-Helper"); | ||
19 | xfce_rc_write_entry (rc, "X-XFCE-Category", category_string); | ||
20 | |||
21 | /* check if the command includes a parameter */ | ||
22 | --- a/exo-helper/helpers/aterm.desktop.in.in.old 2011-03-07 12:08:30.000000000 +0100 | ||
23 | +++ b/exo-helper/helpers/aterm.desktop.in.in 2011-03-07 12:08:30.000000000 +0100 | ||
24 | @@ -1,10 +1,11 @@ | ||
25 | [Desktop Entry] | ||
26 | Version=1.0 | ||
27 | Icon=aterm | ||
28 | -Type=X-XFCE-Helper | ||
29 | +Type=Application | ||
30 | _Name=aterm | ||
31 | StartupNotify=false | ||
32 | X-XFCE-Binaries=aterm; | ||
33 | X-XFCE-Category=TerminalEmulator | ||
34 | X-XFCE-Commands=%B; | ||
35 | X-XFCE-CommandsWithParameter=%B -e %s; | ||
36 | +X-XFCE-Type=X-XFCE-Helper | ||
37 | --- a/exo-helper/helpers/balsa.desktop.in.in.old 2011-03-07 12:08:30.000000000 +0100 | ||
38 | +++ b/exo-helper/helpers/balsa.desktop.in.in 2011-03-07 12:08:30.000000000 +0100 | ||
39 | @@ -1,10 +1,11 @@ | ||
40 | [Desktop Entry] | ||
41 | Version=1.0 | ||
42 | Icon=gnome-balsa2 | ||
43 | -Type=X-XFCE-Helper | ||
44 | +Type=Application | ||
45 | _Name=Balsa | ||
46 | StartupNotify=false | ||
47 | X-XFCE-Binaries=balsa; | ||
48 | X-XFCE-Category=MailReader | ||
49 | X-XFCE-Commands=%B; | ||
50 | X-XFCE-CommandsWithParameter=@HELPERDIR@/exo-compose-mail-1 balsa %B "mailto:%s"; | ||
51 | +X-XFCE-Type=X-XFCE-Helper | ||
52 | --- a/exo-helper/helpers/debian-sensible-browser.desktop.in.in.old 2011-03-07 12:08:30.000000000 +0100 | ||
53 | +++ b/exo-helper/helpers/debian-sensible-browser.desktop.in.in 2011-03-07 12:08:30.000000000 +0100 | ||
54 | @@ -1,10 +1,11 @@ | ||
55 | [Desktop Entry] | ||
56 | Version=1.0 | ||
57 | Icon=debian | ||
58 | -Type=X-XFCE-Helper | ||
59 | +Type=Application | ||
60 | _Name=Debian Sensible Browser | ||
61 | StartupNotify=false | ||
62 | X-XFCE-Binaries=sensible-browser; | ||
63 | X-XFCE-Category=WebBrowser | ||
64 | X-XFCE-Commands=%B; | ||
65 | X-XFCE-CommandsWithParameter=%B "%s"; | ||
66 | +X-XFCE-Type=X-XFCE-Helper | ||
67 | --- a/exo-helper/helpers/debian-x-terminal-emulator.desktop.in.in.old 2011-03-07 12:08:30.000000000 +0100 | ||
68 | +++ b/exo-helper/helpers/debian-x-terminal-emulator.desktop.in.in 2011-03-07 12:08:30.000000000 +0100 | ||
69 | @@ -1,10 +1,11 @@ | ||
70 | [Desktop Entry] | ||
71 | Version=1.0 | ||
72 | Icon=debian | ||
73 | -Type=X-XFCE-Helper | ||
74 | +Type=Application | ||
75 | _Name=Debian X Terminal Emulator | ||
76 | StartupNotify=false | ||
77 | X-XFCE-Binaries=x-terminal-emulator; | ||
78 | X-XFCE-Category=TerminalEmulator | ||
79 | X-XFCE-Commands=%B; | ||
80 | X-XFCE-CommandsWithParameter=%B -e %s; | ||
81 | +X-XFCE-Type=X-XFCE-Helper | ||
82 | --- a/exo-helper/helpers/encompass.desktop.in.in.old 2011-03-07 12:08:30.000000000 +0100 | ||
83 | +++ b/exo-helper/helpers/encompass.desktop.in.in 2011-03-07 12:08:30.000000000 +0100 | ||
84 | @@ -1,10 +1,11 @@ | ||
85 | [Desktop Entry] | ||
86 | Version=1.0 | ||
87 | Icon=encompass | ||
88 | -Type=X-XFCE-Helper | ||
89 | +Type=Application | ||
90 | _Name=Encompass | ||
91 | StartupNotify=true | ||
92 | X-XFCE-Binaries=encompass; | ||
93 | X-XFCE-Category=WebBrowser | ||
94 | X-XFCE-Commands=%B; | ||
95 | X-XFCE-CommandsWithParameter=%B "%s"; | ||
96 | +X-XFCE-Type=X-XFCE-Helper | ||
97 | --- a/exo-helper/helpers/epiphany.desktop.in.in.old 2011-03-07 12:08:30.000000000 +0100 | ||
98 | +++ b/exo-helper/helpers/epiphany.desktop.in.in 2011-03-07 12:08:30.000000000 +0100 | ||
99 | @@ -1,10 +1,11 @@ | ||
100 | [Desktop Entry] | ||
101 | Version=1.0 | ||
102 | Icon=web-browser | ||
103 | -Type=X-XFCE-Helper | ||
104 | +Type=Application | ||
105 | _Name=Epiphany Web Browser | ||
106 | StartupNotify=true | ||
107 | X-XFCE-Binaries=epiphany; | ||
108 | X-XFCE-Category=WebBrowser | ||
109 | X-XFCE-Commands=%B; | ||
110 | X-XFCE-CommandsWithParameter=%B "%s"; | ||
111 | +X-XFCE-Type=X-XFCE-Helper | ||
112 | --- a/exo-helper/helpers/eterm.desktop.in.in.old 2011-03-07 12:08:30.000000000 +0100 | ||
113 | +++ b/exo-helper/helpers/eterm.desktop.in.in 2011-03-07 12:08:30.000000000 +0100 | ||
114 | @@ -1,10 +1,11 @@ | ||
115 | [Desktop Entry] | ||
116 | Version=1.0 | ||
117 | Icon=Eterm | ||
118 | -Type=X-XFCE-Helper | ||
119 | +Type=Application | ||
120 | _Name=Enlightened Terminal Emulator | ||
121 | StartupNotify=false | ||
122 | X-XFCE-Binaries=Eterm; | ||
123 | X-XFCE-Category=TerminalEmulator | ||
124 | X-XFCE-Commands=%B; | ||
125 | X-XFCE-CommandsWithParameter=%B --exec "%s"; | ||
126 | +X-XFCE-Type=X-XFCE-Helper | ||
127 | --- a/exo-helper/helpers/evolution.desktop.in.in.old 2011-03-07 12:08:30.000000000 +0100 | ||
128 | +++ b/exo-helper/helpers/evolution.desktop.in.in 2011-03-07 12:08:30.000000000 +0100 | ||
129 | @@ -1,10 +1,11 @@ | ||
130 | [Desktop Entry] | ||
131 | Version=1.0 | ||
132 | Icon=evolution | ||
133 | -Type=X-XFCE-Helper | ||
134 | +Type=Application | ||
135 | _Name=Novell Evolution | ||
136 | StartupNotify=false | ||
137 | X-XFCE-Binaries=evolution-2.4;evolution-2.3;evolution-2.2;evolution-2.0;evolution-1.6;evolution-1.5;evolution-1.4;evolution; | ||
138 | X-XFCE-Category=MailReader | ||
139 | X-XFCE-Commands=%B; | ||
140 | X-XFCE-CommandsWithParameter=@HELPERDIR@/exo-compose-mail-1 evolution %B "mailto:%s"; | ||
141 | +X-XFCE-Type=X-XFCE-Helper | ||
142 | --- a/exo-helper/helpers/firefox.desktop.in.in.old 2011-03-07 12:08:30.000000000 +0100 | ||
143 | +++ b/exo-helper/helpers/firefox.desktop.in.in 2011-03-07 12:08:30.000000000 +0100 | ||
144 | @@ -1,10 +1,11 @@ | ||
145 | [Desktop Entry] | ||
146 | Version=1.0 | ||
147 | Icon=firefox | ||
148 | -Type=X-XFCE-Helper | ||
149 | +Type=Application | ||
150 | _Name=Mozilla Firefox | ||
151 | StartupNotify=false | ||
152 | X-XFCE-Binaries=firefox;firefox-gtk2;firefox-gtk;mozilla-firefox; | ||
153 | X-XFCE-Category=WebBrowser | ||
154 | X-XFCE-Commands=%B -remote "openURL(about:blank,new-window)";%B; | ||
155 | X-XFCE-CommandsWithParameter=%B -remote "openURL(%s)";%B %s; | ||
156 | +X-XFCE-Type=X-XFCE-Helper | ||
157 | --- a/exo-helper/helpers/galeon.desktop.in.in.old 2011-03-07 12:08:30.000000000 +0100 | ||
158 | +++ b/exo-helper/helpers/galeon.desktop.in.in 2011-03-07 12:08:30.000000000 +0100 | ||
159 | @@ -1,10 +1,11 @@ | ||
160 | [Desktop Entry] | ||
161 | Version=1.0 | ||
162 | Icon=galeon | ||
163 | -Type=X-XFCE-Helper | ||
164 | +Type=Application | ||
165 | _Name=Galeon Web Browser | ||
166 | StartupNotify=true | ||
167 | X-XFCE-Binaries=galeon; | ||
168 | X-XFCE-Category=WebBrowser | ||
169 | X-XFCE-Commands=%B; | ||
170 | X-XFCE-CommandsWithParameter=%B "%s"; | ||
171 | +X-XFCE-Type=X-XFCE-Helper | ||
172 | --- a/exo-helper/helpers/gnome-terminal.desktop.in.in.old 2011-03-07 12:08:30.000000000 +0100 | ||
173 | +++ b/exo-helper/helpers/gnome-terminal.desktop.in.in 2011-03-07 12:08:30.000000000 +0100 | ||
174 | @@ -1,10 +1,11 @@ | ||
175 | [Desktop Entry] | ||
176 | Version=1.0 | ||
177 | Icon=gnome-terminal | ||
178 | -Type=X-XFCE-Helper | ||
179 | +Type=Application | ||
180 | _Name=GNOME Terminal | ||
181 | StartupNotify=true | ||
182 | X-XFCE-Binaries=gnome-terminal;gnometerminal; | ||
183 | X-XFCE-Category=TerminalEmulator | ||
184 | X-XFCE-Commands=%B; | ||
185 | X-XFCE-CommandsWithParameter=%B -x %s; | ||
186 | +X-XFCE-Type=X-XFCE-Helper | ||
187 | --- a/exo-helper/helpers/icedove.desktop.in.in.old 2011-03-07 12:08:30.000000000 +0100 | ||
188 | +++ b/exo-helper/helpers/icedove.desktop.in.in 2011-03-07 12:08:30.000000000 +0100 | ||
189 | @@ -1,10 +1,11 @@ | ||
190 | [Desktop Entry] | ||
191 | Version=1.0 | ||
192 | Icon=icedove | ||
193 | -Type=X-XFCE-Helper | ||
194 | +Type=Application | ||
195 | _Name=Icedove | ||
196 | StartupNotify=false | ||
197 | X-XFCE-Binaries=icedove; | ||
198 | X-XFCE-Category=MailReader | ||
199 | X-XFCE-Commands=%B; | ||
200 | X-XFCE-CommandsWithParameter=@HELPERDIR@/exo-compose-mail-1 mozilla-remote %B "mailto:%s";@HELPERDIR@/exo-compose-mail-1 mozilla %B "mailto:%s"; | ||
201 | +X-XFCE-Type=X-XFCE-Helper | ||
202 | --- a/exo-helper/helpers/kmail.desktop.in.in.old 2011-03-07 12:08:30.000000000 +0100 | ||
203 | +++ b/exo-helper/helpers/kmail.desktop.in.in 2011-03-07 12:08:30.000000000 +0100 | ||
204 | @@ -1,10 +1,11 @@ | ||
205 | [Desktop Entry] | ||
206 | Version=1.0 | ||
207 | Icon=kmail | ||
208 | -Type=X-XFCE-Helper | ||
209 | +Type=Application | ||
210 | _Name=KMail | ||
211 | StartupNotify=true | ||
212 | X-XFCE-Binaries=kmail; | ||
213 | X-XFCE-Category=MailReader | ||
214 | X-XFCE-Commands=%B; | ||
215 | X-XFCE-CommandsWithParamter=@HELPERDIR@/exo-compose-mail-1 kmail %B "mailto:%s"; | ||
216 | +X-XFCE-Type=X-XFCE-Helper | ||
217 | --- a/exo-helper/helpers/konqueror.desktop.in.in.old 2011-03-07 12:08:30.000000000 +0100 | ||
218 | +++ b/exo-helper/helpers/konqueror.desktop.in.in 2011-03-07 12:08:30.000000000 +0100 | ||
219 | @@ -1,10 +1,11 @@ | ||
220 | [Desktop Entry] | ||
221 | Version=1.0 | ||
222 | Icon=konqueror | ||
223 | -Type=X-XFCE-Helper | ||
224 | +Type=Application | ||
225 | _Name=Konqueror Web Browser | ||
226 | StartupNotify=true | ||
227 | X-XFCE-Binaries=konqueror; | ||
228 | X-XFCE-Category=WebBrowser | ||
229 | X-XFCE-Commands=%B; | ||
230 | X-XFCE-CommandsWithParameter=%B "%s"; | ||
231 | +X-XFCE-Type=X-XFCE-Helper | ||
232 | --- a/exo-helper/helpers/links.desktop.in.in.old 2011-03-07 12:08:30.000000000 +0100 | ||
233 | +++ b/exo-helper/helpers/links.desktop.in.in 2011-03-07 12:08:30.000000000 +0100 | ||
234 | @@ -1,10 +1,11 @@ | ||
235 | [Desktop Entry] | ||
236 | Version=1.0 | ||
237 | Icon=links | ||
238 | -Type=X-XFCE-Helper | ||
239 | +Type=Application | ||
240 | _Name=Links Text Browser | ||
241 | StartupNotify=false | ||
242 | X-XFCE-Binaries=links;links-current; | ||
243 | X-XFCE-Category=WebBrowser | ||
244 | X-XFCE-Commands=exo-open --launch TerminalEmulator %B; | ||
245 | X-XFCE-CommandsWithParameter=exo-open --launch TerminalEmulator %B %s; | ||
246 | +X-XFCE-Type=X-XFCE-Helper | ||
247 | --- a/exo-helper/helpers/lynx.desktop.in.in.old 2011-03-07 12:08:30.000000000 +0100 | ||
248 | +++ b/exo-helper/helpers/lynx.desktop.in.in 2011-03-07 12:08:30.000000000 +0100 | ||
249 | @@ -1,10 +1,11 @@ | ||
250 | [Desktop Entry] | ||
251 | Version=1.0 | ||
252 | Icon=aterm | ||
253 | -Type=X-XFCE-Helper | ||
254 | +Type=Application | ||
255 | _Name=Lynx Text Browser | ||
256 | StartupNotify=false | ||
257 | X-XFCE-Binaries=lynx;lynx-current; | ||
258 | X-XFCE-Category=WebBrowser | ||
259 | X-XFCE-Commands=exo-open --launch TerminalEmulator %B; | ||
260 | X-XFCE-CommandsWithParameter=exo-open --launch TerminalEmulator %B %s; | ||
261 | +X-XFCE-Type=X-XFCE-Helper | ||
262 | --- a/exo-helper/helpers/midori.desktop.in.in.old 2011-03-07 12:08:30.000000000 +0100 | ||
263 | +++ b/exo-helper/helpers/midori.desktop.in.in 2011-03-07 12:08:30.000000000 +0100 | ||
264 | @@ -2,10 +2,11 @@ | ||
265 | [Desktop Entry] | ||
266 | Version=1.0 | ||
267 | Icon=midori | ||
268 | -Type=X-XFCE-Helper | ||
269 | +Type=Application | ||
270 | _Name=Midori | ||
271 | StartupNotify=true | ||
272 | X-XFCE-Binaries=midori; | ||
273 | X-XFCE-Category=WebBrowser | ||
274 | X-XFCE-Commands=%B; | ||
275 | X-XFCE-CommandsWithParameter=%B "%s"; | ||
276 | +X-XFCE-Type=X-XFCE-Helper | ||
277 | --- a/exo-helper/helpers/mozilla-browser.desktop.in.in.old 2011-03-07 12:08:30.000000000 +0100 | ||
278 | +++ b/exo-helper/helpers/mozilla-browser.desktop.in.in 2011-03-07 12:08:30.000000000 +0100 | ||
279 | @@ -1,10 +1,11 @@ | ||
280 | [Desktop Entry] | ||
281 | Version=1.0 | ||
282 | Icon=mozilla | ||
283 | -Type=X-XFCE-Helper | ||
284 | +Type=Application | ||
285 | _Name=Mozilla Browser | ||
286 | StartupNotify=false | ||
287 | X-XFCE-Binaries=mozilla;mozilla-gtk2;mozilla-gtk; | ||
288 | X-XFCE-Category=WebBrowser | ||
289 | X-XFCE-Commands=%B -remote "openURL(about:blank,new-window)";%B; | ||
290 | X-XFCE-CommandsWithParameter=%B -remote "openURL(%s,new-window)";%B %s; | ||
291 | +X-XFCE-Type=X-XFCE-Helper | ||
292 | --- a/exo-helper/helpers/mozilla-mailer.desktop.in.in.old 2011-03-07 12:08:30.000000000 +0100 | ||
293 | +++ b/exo-helper/helpers/mozilla-mailer.desktop.in.in 2011-03-07 12:08:30.000000000 +0100 | ||
294 | @@ -1,10 +1,11 @@ | ||
295 | [Desktop Entry] | ||
296 | Version=1.0 | ||
297 | Icon=mozilla | ||
298 | -Type=X-XFCE-Helper | ||
299 | +Type=Application | ||
300 | _Name=Mozilla Mail | ||
301 | StartupNotify=false | ||
302 | X-XFCE-Binaries=mozilla;mozilla-gtk2;mozilla-gtk; | ||
303 | X-XFCE-Category=MailReader | ||
304 | X-XFCE-Commands=%B -mail; | ||
305 | X-XFCE-CommandsWithParameter=@HELPERDIR@/exo-compose-mail-1 mozilla-remote %B "mailto:%s";@HELPERDIR@/exo-compose-mail-1 mozilla %B "mailto:%s"; | ||
306 | +X-XFCE-Type=X-XFCE-Helper | ||
307 | --- a/exo-helper/helpers/mutt.desktop.in.in.old 2011-03-07 12:08:30.000000000 +0100 | ||
308 | +++ b/exo-helper/helpers/mutt.desktop.in.in 2011-03-07 12:08:30.000000000 +0100 | ||
309 | @@ -1,10 +1,11 @@ | ||
310 | [Desktop Entry] | ||
311 | Version=1.0 | ||
312 | Icon=mutt | ||
313 | -Type=X-XFCE-Helper | ||
314 | +Type=Application | ||
315 | _Name=Mutt | ||
316 | StartupNotify=false | ||
317 | X-XFCE-Binaries=mutt; | ||
318 | X-XFCE-Category=MailReader | ||
319 | X-XFCE-Commands=exo-open --launch TerminalEmulator %B; | ||
320 | X-XFCE-CommandsWithParameter=exo-open --launch TerminalEmulator @HELPERDIR@/exo-compose-mail-1 mutt %B "mailto:%s"; | ||
321 | +X-XFCE-Type=X-XFCE-Helper | ||
322 | --- a/exo-helper/helpers/nautilus.desktop.in.in.old 2011-03-07 12:08:30.000000000 +0100 | ||
323 | +++ b/exo-helper/helpers/nautilus.desktop.in.in 2011-03-07 12:08:30.000000000 +0100 | ||
324 | @@ -2,10 +2,11 @@ | ||
325 | [Desktop Entry] | ||
326 | Version=1.0 | ||
327 | Icon=nautilus | ||
328 | -Type=X-XFCE-Helper | ||
329 | +Type=Application | ||
330 | _Name=Nautilus | ||
331 | StartupNotify=true | ||
332 | X-XFCE-Binaries=nautilus; | ||
333 | X-XFCE-Category=FileManager | ||
334 | X-XFCE-Commands=%B; | ||
335 | X-XFCE-CommandsWithParameter=%B "%s"; | ||
336 | +X-XFCE-Type=X-XFCE-Helper | ||
337 | --- a/exo-helper/helpers/netscape-navigator.desktop.in.in.old 2011-03-07 12:08:30.000000000 +0100 | ||
338 | +++ b/exo-helper/helpers/netscape-navigator.desktop.in.in 2011-03-07 12:08:30.000000000 +0100 | ||
339 | @@ -1,10 +1,11 @@ | ||
340 | [Desktop Entry] | ||
341 | Version=1.0 | ||
342 | Icon=mozilla | ||
343 | -Type=X-XFCE-Helper | ||
344 | +Type=Application | ||
345 | _Name=Netscape Navigator | ||
346 | StartupNotify=false | ||
347 | X-XFCE-Binaries=netscape; | ||
348 | X-XFCE-Category=WebBrowser | ||
349 | X-XFCE-Commands=%B -remote "openURL(about:blank,new-window)";%B; | ||
350 | X-XFCE-CommandsWithParameter=%B -remote "openURL(%s,new-window)";%B %s; | ||
351 | +X-XFCE-Type=X-XFCE-Helper | ||
352 | --- a/exo-helper/helpers/nxterm.desktop.in.in.old 2011-03-07 12:08:30.000000000 +0100 | ||
353 | +++ b/exo-helper/helpers/nxterm.desktop.in.in 2011-03-07 12:08:30.000000000 +0100 | ||
354 | @@ -1,10 +1,11 @@ | ||
355 | [Desktop Entry] | ||
356 | Version=1.0 | ||
357 | Icon=nxterm | ||
358 | -Type=X-XFCE-Helper | ||
359 | +Type=Application | ||
360 | _Name=NXterm | ||
361 | StartupNotify=false | ||
362 | X-XFCE-Binaries=nxterm; | ||
363 | X-XFCE-Category=TerminalEmulator | ||
364 | X-XFCE-Commands=%B; | ||
365 | X-XFCE-CommandsWithParameter=%B -e %s; | ||
366 | +X-XFCE-Type=X-XFCE-Helper | ||
367 | --- a/exo-helper/helpers/opera-browser.desktop.in.in.old 2011-03-07 12:08:30.000000000 +0100 | ||
368 | +++ b/exo-helper/helpers/opera-browser.desktop.in.in 2011-03-07 12:08:30.000000000 +0100 | ||
369 | @@ -1,10 +1,11 @@ | ||
370 | [Desktop Entry] | ||
371 | Version=1.0 | ||
372 | Icon=opera | ||
373 | -Type=X-XFCE-Helper | ||
374 | +Type=Application | ||
375 | _Name=Opera Browser | ||
376 | StartupNotify=false | ||
377 | X-XFCE-Binaries=opera; | ||
378 | X-XFCE-Category=WebBrowser | ||
379 | X-XFCE-Commands=%B; | ||
380 | X-XFCE-CommandsWithParameter=%B "%s"; | ||
381 | +X-XFCE-Type=X-XFCE-Helper | ||
382 | --- a/exo-helper/helpers/opera-mailer.desktop.in.in.old 2011-03-07 12:08:30.000000000 +0100 | ||
383 | +++ b/exo-helper/helpers/opera-mailer.desktop.in.in 2011-03-07 12:08:30.000000000 +0100 | ||
384 | @@ -1,10 +1,11 @@ | ||
385 | [Desktop Entry] | ||
386 | Version=1.0 | ||
387 | Icon=opera | ||
388 | -Type=X-XFCE-Helper | ||
389 | +Type=Application | ||
390 | _Name=Opera Mail | ||
391 | StartupNotify=false | ||
392 | X-XFCE-Binaries=opera; | ||
393 | X-XFCE-Category=MailReader | ||
394 | X-XFCE-Commands=%B; | ||
395 | X-XFCE-CommandsWithParameter=%B -remote "openURL(mailto:%s)";%B "mailto:%s"; | ||
396 | +X-XFCE-Type=X-XFCE-Helper | ||
397 | --- a/exo-helper/helpers/pcmanfm.desktop.in.in.old 2011-03-07 12:08:30.000000000 +0100 | ||
398 | +++ b/exo-helper/helpers/pcmanfm.desktop.in.in 2011-03-07 12:08:30.000000000 +0100 | ||
399 | @@ -2,10 +2,11 @@ | ||
400 | [Desktop Entry] | ||
401 | Version=1.0 | ||
402 | Icon=pcmanfm | ||
403 | -Type=X-XFCE-Helper | ||
404 | +Type=Application | ||
405 | _Name=PCMan File Manager | ||
406 | StartupNotify=true | ||
407 | X-XFCE-Binaries=pcmanfm; | ||
408 | X-XFCE-Category=FileManager | ||
409 | X-XFCE-Commands=%B; | ||
410 | X-XFCE-CommandsWithParameter=%B "%s"; | ||
411 | +X-XFCE-Type=X-XFCE-Helper | ||
412 | --- a/exo-helper/helpers/sylpheed-claws.desktop.in.in.old 2011-03-07 12:08:30.000000000 +0100 | ||
413 | +++ b/exo-helper/helpers/sylpheed-claws.desktop.in.in 2011-03-07 12:08:30.000000000 +0100 | ||
414 | @@ -1,10 +1,11 @@ | ||
415 | [Desktop Entry] | ||
416 | Version=1.0 | ||
417 | Icon=claws-mail | ||
418 | -Type=X-XFCE-Helper | ||
419 | +Type=Application | ||
420 | _Name=Claws Mail | ||
421 | StartupNotify=true | ||
422 | X-XFCE-Binaries=claws-mail;sylpheed-claws-gtk2;sylpheed-claws | ||
423 | X-XFCE-Category=MailReader | ||
424 | X-XFCE-Commands=%B; | ||
425 | X-XFCE-CommandsWithParameter=@HELPERDIR@/exo-compose-mail-1 sylpheed %B "mailto:%s"; | ||
426 | +X-XFCE-Type=X-XFCE-Helper | ||
427 | --- a/exo-helper/helpers/sylpheed.desktop.in.in.old 2011-03-07 12:08:30.000000000 +0100 | ||
428 | +++ b/exo-helper/helpers/sylpheed.desktop.in.in 2011-03-07 12:08:30.000000000 +0100 | ||
429 | @@ -1,10 +1,11 @@ | ||
430 | [Desktop Entry] | ||
431 | Version=1.0 | ||
432 | Icon=sylpheed | ||
433 | -Type=X-XFCE-Helper | ||
434 | +Type=Application | ||
435 | _Name=Sylpheed | ||
436 | StartupNotify=true | ||
437 | X-XFCE-Binaries=sylpheed; | ||
438 | X-XFCE-Category=MailReader | ||
439 | X-XFCE-Commands=%B; | ||
440 | X-XFCE-CommandsWithParameter=@HELPERDIR@/exo-compose-mail-1 sylpheed %B "mailto:%s"; | ||
441 | +X-XFCE-Type=X-XFCE-Helper | ||
442 | --- a/exo-helper/helpers/Terminal.desktop.in.in.old 2011-03-07 12:08:30.000000000 +0100 | ||
443 | +++ b/exo-helper/helpers/Terminal.desktop.in.in 2011-03-07 12:08:30.000000000 +0100 | ||
444 | @@ -1,10 +1,11 @@ | ||
445 | [Desktop Entry] | ||
446 | Version=1.0 | ||
447 | Icon=Terminal | ||
448 | -Type=X-XFCE-Helper | ||
449 | +Type=Application | ||
450 | _Name=Xfce Terminal | ||
451 | StartupNotify=true | ||
452 | X-XFCE-Binaries=Terminal;xterminal;xfce4-terminal; | ||
453 | X-XFCE-Category=TerminalEmulator | ||
454 | X-XFCE-Commands=%B; | ||
455 | X-XFCE-CommandsWithParameter=%B -x %s; | ||
456 | +X-XFCE-Type=X-XFCE-Helper | ||
457 | --- a/exo-helper/helpers/Thunar.desktop.in.in.old 2011-03-07 12:08:30.000000000 +0100 | ||
458 | +++ b/exo-helper/helpers/Thunar.desktop.in.in 2011-03-07 12:08:30.000000000 +0100 | ||
459 | @@ -2,10 +2,11 @@ | ||
460 | [Desktop Entry] | ||
461 | Version=1.0 | ||
462 | Icon=Thunar | ||
463 | -Type=X-XFCE-Helper | ||
464 | +Type=Application | ||
465 | _Name=Thunar | ||
466 | StartupNotify=true | ||
467 | X-XFCE-Binaries=Thunar; | ||
468 | X-XFCE-Category=FileManager | ||
469 | X-XFCE-Commands=%B; | ||
470 | X-XFCE-CommandsWithParameter=%B "%s"; | ||
471 | +X-XFCE-Type=X-XFCE-Helper | ||
472 | --- a/exo-helper/helpers/thunderbird.desktop.in.in.old 2011-03-07 12:08:30.000000000 +0100 | ||
473 | +++ b/exo-helper/helpers/thunderbird.desktop.in.in 2011-03-07 12:08:30.000000000 +0100 | ||
474 | @@ -1,10 +1,11 @@ | ||
475 | [Desktop Entry] | ||
476 | Version=1.0 | ||
477 | Icon=thunderbird | ||
478 | -Type=X-XFCE-Helper | ||
479 | +Type=Application | ||
480 | _Name=Mozilla Thunderbird | ||
481 | StartupNotify=false | ||
482 | X-XFCE-Binaries=thunderbird;thunderbird-gtk2;thunderbird-gtk;mozilla-thunderbird; | ||
483 | X-XFCE-Category=MailReader | ||
484 | X-XFCE-Commands=%B; | ||
485 | X-XFCE-CommandsWithParameter=@HELPERDIR@/exo-compose-mail-1 mozilla-remote %B "mailto:%s";@HELPERDIR@/exo-compose-mail-1 mozilla %B "mailto:%s"; | ||
486 | +X-XFCE-Type=X-XFCE-Helper | ||
487 | --- a/exo-helper/helpers/urxvt.desktop.in.in.old 2011-03-07 12:08:30.000000000 +0100 | ||
488 | +++ b/exo-helper/helpers/urxvt.desktop.in.in 2011-03-07 12:08:30.000000000 +0100 | ||
489 | @@ -1,10 +1,11 @@ | ||
490 | [Desktop Entry] | ||
491 | Version=1.0 | ||
492 | Icon=rxvt | ||
493 | -Type=X-XFCE-Helper | ||
494 | +Type=Application | ||
495 | _Name=RXVT Unicode | ||
496 | StartupNotify=false | ||
497 | X-XFCE-Binaries=urxvt; | ||
498 | X-XFCE-Category=TerminalEmulator | ||
499 | X-XFCE-Commands=%B; | ||
500 | X-XFCE-CommandsWithParameter=%B -e %s; | ||
501 | +X-XFCE-Type=X-XFCE-Helper | ||
502 | --- a/exo-helper/helpers/w3m.desktop.in.in.old 2011-03-07 12:08:30.000000000 +0100 | ||
503 | +++ b/exo-helper/helpers/w3m.desktop.in.in 2011-03-07 12:08:30.000000000 +0100 | ||
504 | @@ -1,10 +1,11 @@ | ||
505 | [Desktop Entry] | ||
506 | Version=1.0 | ||
507 | Icon=w3m | ||
508 | -Type=X-XFCE-Helper | ||
509 | +Type=Application | ||
510 | _Name=W3M Text Browser | ||
511 | StartupNotify=false | ||
512 | X-XFCE-Binaries=w3m; | ||
513 | X-XFCE-Category=WebBrowser | ||
514 | X-XFCE-Commands=exo-open --launch TerminalEmulator %B; | ||
515 | X-XFCE-CommandsWithParameter=exo-open --launch TerminalEmulator %B %s; | ||
516 | +X-XFCE-Type=X-XFCE-Helper | ||
517 | --- a/exo-helper/helpers/xterm.desktop.in.in.old 2011-03-07 12:08:30.000000000 +0100 | ||
518 | +++ b/exo-helper/helpers/xterm.desktop.in.in 2011-03-07 12:08:31.000000000 +0100 | ||
519 | @@ -1,10 +1,11 @@ | ||
520 | [Desktop Entry] | ||
521 | Version=1.0 | ||
522 | Icon=xterm | ||
523 | -Type=X-XFCE-Helper | ||
524 | +Type=Application | ||
525 | _Name=X Terminal | ||
526 | StartupNotify=false | ||
527 | X-XFCE-Binaries=xterm; | ||
528 | X-XFCE-Category=TerminalEmulator | ||
529 | X-XFCE-Commands=%B; | ||
530 | X-XFCE-CommandsWithParameter=%B -e %s; | ||
531 | +X-XFCE-Type=X-XFCE-Helper | ||
diff --git a/meta-xfce/recipes-xfce/exo/exo_0.6.2.bb b/meta-xfce/recipes-xfce/exo/exo_0.8.0.bb index ad8dc59f6f..af9103f6c8 100644 --- a/meta-xfce/recipes-xfce/exo/exo_0.6.2.bb +++ b/meta-xfce/recipes-xfce/exo/exo_0.8.0.bb | |||
@@ -1,21 +1,21 @@ | |||
1 | DESCRIPTION="Application library for the Xfce desktop environment" | 1 | DESCRIPTION="Application library for the Xfce desktop environment" |
2 | SECTION = "x11" | 2 | SECTION = "x11" |
3 | LICENSE = "GPLv2" | 3 | LICENSE = "GPLv2" |
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" | 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" |
5 | DEPENDS = "gtk+ libxfce4util virtual/libx11 perl-native cairo" | 5 | DEPENDS = "gtk+ libxfce4util libxfce4ui virtual/libx11 perl-native cairo" |
6 | |||
7 | PR = "r1" | ||
8 | 6 | ||
9 | inherit xfce pythonnative | 7 | inherit xfce pythonnative |
10 | 8 | ||
11 | # SRC_URI must follow inherited one | 9 | # SRC_URI must follow inherited one |
12 | SRC_URI += " \ | 10 | SRC_URI += " \ |
13 | file://exo-no-tests-0.6.patch \ | 11 | file://exo-no-tests-0.8.patch \ |
14 | file://configure.patch \ | 12 | file://configure.patch \ |
15 | file://gnome-mount \ | 13 | file://gnome-mount \ |
16 | file://fix-qa-desktop-type-error.patch \ | ||
17 | " | 14 | " |
18 | 15 | ||
16 | SRC_URI[md5sum] = "189bd19210e1d7d8601be1cdf27bf259" | ||
17 | SRC_URI[sha256sum] = "6e21aa30692affcb45fc8283d034da4a02221d26e3e1facb968d04fed4ba05b0" | ||
18 | |||
19 | # see http://wiki.xfce.org/gnomemount-replacement | 19 | # see http://wiki.xfce.org/gnomemount-replacement |
20 | do_install_append () { | 20 | do_install_append () { |
21 | install -m 755 -d ${D}${bindir}/exo-mount-wrapper | 21 | install -m 755 -d ${D}${bindir}/exo-mount-wrapper |
@@ -30,6 +30,3 @@ FILES_${PN} += "${datadir}/xfce4/ \ | |||
30 | 30 | ||
31 | FILES_${PN}-dbg += "${libdir}/gio/modules/.debug \ | 31 | FILES_${PN}-dbg += "${libdir}/gio/modules/.debug \ |
32 | " | 32 | " |
33 | |||
34 | SRC_URI[md5sum] = "e25333df350abc30999cd16fe96ab690" | ||
35 | SRC_URI[sha256sum] = "f49cf6a85546f47a1dddb58ce9a5f9364384a6f173cba99deb879e027c811f39" | ||
diff --git a/meta-xfce/recipes-xfce/garcon/garcon_0.1.10.bb b/meta-xfce/recipes-xfce/garcon/garcon_0.2.0.bb index 2e88b972b3..a384889cc0 100644 --- a/meta-xfce/recipes-xfce/garcon/garcon_0.1.10.bb +++ b/meta-xfce/recipes-xfce/garcon/garcon_0.2.0.bb | |||
@@ -6,7 +6,7 @@ DEPENDS = "glib-2.0 xfce4-dev-tools-native libxfce4util" | |||
6 | 6 | ||
7 | inherit xfce | 7 | inherit xfce |
8 | 8 | ||
9 | FILES_${PN} += " ${datadir}/desktop-directories" | 9 | SRC_URI[md5sum] = "301e7b8015060dd30407b68dd8c4bdb7" |
10 | SRC_URI[sha256sum] = "02dea3edb9c0039eca4748e964c61b0e1cc10f2d7f9ce0c837287ac5fa9ef76c" | ||
10 | 11 | ||
11 | SRC_URI[md5sum] = "e53514e79c4da2631dd74994452d3c96" | 12 | FILES_${PN} += "${datadir}/desktop-directories" |
12 | SRC_URI[sha256sum] = "c2497a2991101fc1e621dc712ef72aba7c238f6e5f5a1733c9572f9b23761316" | ||
diff --git a/meta-xfce/recipes-xfce/gtk-xfce-engine/files/0001-Don-t-leak-a-graduent-pattern-at-each-draw-bug-8521.patch b/meta-xfce/recipes-xfce/gtk-xfce-engine/files/0001-Don-t-leak-a-graduent-pattern-at-each-draw-bug-8521.patch deleted file mode 100644 index 89fddb301a..0000000000 --- a/meta-xfce/recipes-xfce/gtk-xfce-engine/files/0001-Don-t-leak-a-graduent-pattern-at-each-draw-bug-8521.patch +++ /dev/null | |||
@@ -1,30 +0,0 @@ | |||
1 | From 868e3fcbb14b836b6f5f1cc73314aebe8453a939 Mon Sep 17 00:00:00 2001 | ||
2 | From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@googlemail.com> | ||
3 | Date: Wed, 29 Aug 2012 19:59:24 +0200 | ||
4 | Subject: [PATCH] Don't leak a graduent pattern at each draw (bug #8521) | ||
5 | MIME-Version: 1.0 | ||
6 | Content-Type: text/plain; charset=UTF-8 | ||
7 | Content-Transfer-Encoding: 8bit | ||
8 | |||
9 | Upstream-Status: Backport [1] | ||
10 | [1] http://git.xfce.org/xfce/gtk-xfce-engine/commit/?id=964d4a05896bcb6dfbeec34dccb77e4f381363f1 | ||
11 | |||
12 | Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> | ||
13 | --- | ||
14 | src/gradient_draw.c | 2 ++ | ||
15 | 1 files changed, 2 insertions(+), 0 deletions(-) | ||
16 | |||
17 | diff --git a/src/gradient_draw.c b/src/gradient_draw.c | ||
18 | index 02deb88..37af559 100644 | ||
19 | --- a/src/gradient_draw.c | ||
20 | +++ b/src/gradient_draw.c | ||
21 | @@ -278,4 +278,6 @@ void gradient_draw_shaded(cairo_t *cr, gint x, gint y, gint width, gint height, | ||
22 | cairo_fill (cr); | ||
23 | |||
24 | cairo_restore(cr); | ||
25 | + | ||
26 | + cairo_pattern_destroy(gradient); | ||
27 | } | ||
28 | -- | ||
29 | 1.7.6.5 | ||
30 | |||
diff --git a/meta-xfce/recipes-xfce/gtk-xfce-engine/gtk-xfce-engine_2.9.0.bb b/meta-xfce/recipes-xfce/gtk-xfce-engine/gtk-xfce-engine_2.9.0.bb deleted file mode 100644 index 71310b35e5..0000000000 --- a/meta-xfce/recipes-xfce/gtk-xfce-engine/gtk-xfce-engine_2.9.0.bb +++ /dev/null | |||
@@ -1,18 +0,0 @@ | |||
1 | DESCRIPTION = "XFCE theme for GTK" | ||
2 | SECTION = "x11/libs" | ||
3 | LICENSE = "GPLv2" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" | ||
5 | DEPENDS = "gtk+ xfce4-dev-tools-native" | ||
6 | |||
7 | PR = "r1" | ||
8 | |||
9 | inherit xfce | ||
10 | |||
11 | SRC_URI += "file://0001-Don-t-leak-a-graduent-pattern-at-each-draw-bug-8521.patch" | ||
12 | SRC_URI[md5sum] = "e2bc76ab5093ff8472e728e6d6ad5da2" | ||
13 | SRC_URI[sha256sum] = "55604002526c800539f2a8a79e7df3bf23717f45e4bfab31c154c8d01caf3af7" | ||
14 | |||
15 | FILES_${PN} += "${libdir}/gtk-2.0/*/engines \ | ||
16 | ${datadir}/themes/" | ||
17 | FILES_${PN}-dbg += "${libdir}/gtk-2.0/*/engines/.debug" | ||
18 | FILES_${PN}-staticdev += "${libdir}/gtk-2.0/*/engines/*.a" | ||
diff --git a/meta-xfce/recipes-xfce/gtk-xfce-engine/gtk-xfce-engine_3.0.1.bb b/meta-xfce/recipes-xfce/gtk-xfce-engine/gtk-xfce-engine_3.0.1.bb new file mode 100644 index 0000000000..3ccd2e6281 --- /dev/null +++ b/meta-xfce/recipes-xfce/gtk-xfce-engine/gtk-xfce-engine_3.0.1.bb | |||
@@ -0,0 +1,23 @@ | |||
1 | DESCRIPTION = "XFCE theme for GTK" | ||
2 | SECTION = "x11/libs" | ||
3 | LICENSE = "GPLv2" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" | ||
5 | DEPENDS = "gtk+ gtk+3 xfce4-dev-tools-native" | ||
6 | |||
7 | inherit xfce | ||
8 | |||
9 | SRC_URI[md5sum] = "174e774d0debb052ec457640275f065d" | ||
10 | SRC_URI[sha256sum] = "eb03cf81da1a91e426a2141c092ed7a1634cab29ea2f3546480e901290a7a06d" | ||
11 | |||
12 | PACKAGES += "${PN}-themes gtk3-xfce-engine" | ||
13 | FILES_${PN} += "${libdir}/gtk-2.0/*/engines/*.so" | ||
14 | FILES_gtk3-xfce-engine += "${libdir}/gtk-3.0/*/theming-engines/*.so" | ||
15 | FILES_${PN}-themes += "${datadir}/themes" | ||
16 | |||
17 | FILES_${PN}-dbg += "${libdir}/gtk-3.0/*/theming-engines/.debug \ | ||
18 | ${libdir}/gtk-2.0/*/engines/.debug" | ||
19 | FILES_${PN}-dev += "${libdir}/gtk-2.0/*/engines/*.la \ | ||
20 | ${libdir}/gtk-3.0/*/theming-engines/*.la" | ||
21 | |||
22 | RDEPENDS_${PN} += "${PN}-themes" | ||
23 | RDEPENDS_gtk3-xfce-engine += "${PN}-themes" | ||
diff --git a/meta-xfce/recipes-xfce/libxfce4ui/libxfce4ui_4.8.1.bb b/meta-xfce/recipes-xfce/libxfce4ui/libxfce4ui_4.10.0.bb index e2bc81ea1e..32505de666 100644 --- a/meta-xfce/recipes-xfce/libxfce4ui/libxfce4ui_4.8.1.bb +++ b/meta-xfce/recipes-xfce/libxfce4ui/libxfce4ui_4.10.0.bb | |||
@@ -3,13 +3,11 @@ SECTION = "x11/libs" | |||
3 | LICENSE = "GPLv2" | 3 | LICENSE = "GPLv2" |
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=252890d9eee26aab7b432e8b8a616475" | 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=252890d9eee26aab7b432e8b8a616475" |
5 | DEPENDS = "gtk+ intltool libxfce4util startup-notification xfconf" | 5 | DEPENDS = "gtk+ intltool libxfce4util startup-notification xfconf" |
6 | PR = "r1" | ||
7 | 6 | ||
8 | inherit xfce | 7 | inherit xfce |
9 | 8 | ||
10 | SRC_URI += "file://0001-libxfce4kbd-private-xfce4-keyboard-shortcuts.xml-fix.patch" | 9 | SRC_URI += "file://0001-libxfce4kbd-private-xfce4-keyboard-shortcuts.xml-fix.patch" |
11 | 10 | ||
12 | FILES_${PN} += "${libdir}/xfce4/modules ${libdir}/libglade/2.0/*.so ${datadir}/xfce4/mime ${datadir}/icons/hicolor" | 11 | SRC_URI[md5sum] = "6df1ce474a3d4885aee31cda9dbc9192" |
12 | SRC_URI[sha256sum] = "a2b9fa288ccb5f16fa13264e507ba3f7b8da0176da259a11239f21538c0ea3e2" | ||
13 | 13 | ||
14 | SRC_URI[md5sum] = "30bd432dd0f19305e846a122d4c7c6fe" | ||
15 | SRC_URI[sha256sum] = "39cbed29da06960074014b74abc2ba57db49dc81ab8995fb2160579c51669956" | ||
diff --git a/meta-xfce/recipes-xfce/libxfce4util/libxfce4util_4.8.2.bb b/meta-xfce/recipes-xfce/libxfce4util/libxfce4util_4.10.0.bb index a9819fbe85..546ee32526 100644 --- a/meta-xfce/recipes-xfce/libxfce4util/libxfce4util_4.8.2.bb +++ b/meta-xfce/recipes-xfce/libxfce4util/libxfce4util_4.10.0.bb | |||
@@ -4,11 +4,7 @@ LICENSE = "GPLv2" | |||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=252890d9eee26aab7b432e8b8a616475" | 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=252890d9eee26aab7b432e8b8a616475" |
5 | DEPENDS = "intltool-native xfce4-dev-tools-native glib-2.0" | 5 | DEPENDS = "intltool-native xfce4-dev-tools-native glib-2.0" |
6 | 6 | ||
7 | PR = "r0" | ||
8 | |||
9 | inherit xfce | 7 | inherit xfce |
10 | 8 | ||
11 | EXTRA_OECONF += "--with-broken-putenv=yes" | 9 | SRC_URI[md5sum] = "2e8defcd40cbf6afedde531b27314511" |
12 | 10 | SRC_URI[sha256sum] = "0979fee12880bb5f011ab38d6c7cc9afe5fd68eb96ccda895cb56dbc16e7608e" | |
13 | SRC_URI[md5sum] = "3376a77637a4292a863027d595548ee2" | ||
14 | SRC_URI[sha256sum] = "05a149841575cb961588742c8c9795c6f0d09f27d59546dd8a933b010d2ac816" | ||
diff --git a/meta-xfce/recipes-xfce/packagegroups/packagegroup-xfce-base.bb b/meta-xfce/recipes-xfce/packagegroups/packagegroup-xfce-base.bb index 41e1d4a5a9..e42ea3c327 100644 --- a/meta-xfce/recipes-xfce/packagegroups/packagegroup-xfce-base.bb +++ b/meta-xfce/recipes-xfce/packagegroups/packagegroup-xfce-base.bb | |||
@@ -2,7 +2,7 @@ DESCRIPTION = "All packages required for a base installation of XFCE" | |||
2 | SECTION = "x11/wm" | 2 | SECTION = "x11/wm" |
3 | LICENSE = "MIT" | 3 | LICENSE = "MIT" |
4 | LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58" | 4 | LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58" |
5 | PR = "r3" | 5 | PR = "r4" |
6 | 6 | ||
7 | inherit packagegroup | 7 | inherit packagegroup |
8 | 8 | ||
@@ -12,7 +12,6 @@ RCONFLICTS_${PN} += "task-xfce-base" | |||
12 | 12 | ||
13 | RDEPENDS_${PN} = " \ | 13 | RDEPENDS_${PN} = " \ |
14 | xfwm4 \ | 14 | xfwm4 \ |
15 | xfwm4-theme-default \ | ||
16 | xfce4-session \ | 15 | xfce4-session \ |
17 | xfconf \ | 16 | xfconf \ |
18 | xfdesktop \ | 17 | xfdesktop \ |
@@ -20,7 +19,6 @@ RDEPENDS_${PN} = " \ | |||
20 | \ | 19 | \ |
21 | gtk-xfce-engine \ | 20 | gtk-xfce-engine \ |
22 | \ | 21 | \ |
23 | xfce-utils \ | ||
24 | xfce4-panel-plugin-actions \ | 22 | xfce4-panel-plugin-actions \ |
25 | xfce4-panel-plugin-applicationsmenu \ | 23 | xfce4-panel-plugin-applicationsmenu \ |
26 | xfce4-panel-plugin-clock \ | 24 | xfce4-panel-plugin-clock \ |
diff --git a/meta-xfce/recipes-xfce/packagegroups/packagegroup-xfce-extended.bb b/meta-xfce/recipes-xfce/packagegroups/packagegroup-xfce-extended.bb index ebe2dc7bb3..ea4bd1ef2d 100644 --- a/meta-xfce/recipes-xfce/packagegroups/packagegroup-xfce-extended.bb +++ b/meta-xfce/recipes-xfce/packagegroups/packagegroup-xfce-extended.bb | |||
@@ -3,7 +3,7 @@ SECTION = "x11/wm" | |||
3 | LICENSE = "MIT" | 3 | LICENSE = "MIT" |
4 | LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58" | 4 | LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58" |
5 | 5 | ||
6 | PR = "r4" | 6 | PR = "r6" |
7 | 7 | ||
8 | inherit packagegroup | 8 | inherit packagegroup |
9 | 9 | ||
@@ -21,11 +21,6 @@ RRECOMMENDS_${PN} = " \ | |||
21 | xfwm4-theme-daloa \ | 21 | xfwm4-theme-daloa \ |
22 | xfwm4-theme-kokodi \ | 22 | xfwm4-theme-kokodi \ |
23 | xfwm4-theme-moheli \ | 23 | xfwm4-theme-moheli \ |
24 | xfwm4-theme-sassandra \ | ||
25 | xfwm4-theme-stoneage \ | ||
26 | xfwm4-theme-therapy \ | ||
27 | xfwm4-theme-tyrex \ | ||
28 | xfwm4-theme-wallis \ | ||
29 | \ | 24 | \ |
30 | xfce4-cpufreq-plugin \ | 25 | xfce4-cpufreq-plugin \ |
31 | xfce4-cpugraph-plugin \ | 26 | xfce4-cpugraph-plugin \ |
@@ -42,6 +37,8 @@ RRECOMMENDS_${PN} = " \ | |||
42 | xfce4-time-out-plugin \ | 37 | xfce4-time-out-plugin \ |
43 | xfce4-embed-plugin \ | 38 | xfce4-embed-plugin \ |
44 | xfce4-weather-plugin \ | 39 | xfce4-weather-plugin \ |
40 | xfce4-fsguard-plugin \ | ||
41 | xfce4-battery-plugin \ | ||
45 | \ | 42 | \ |
46 | xfce4-appfinder \ | 43 | xfce4-appfinder \ |
47 | xfce4-screenshooter \ | 44 | xfce4-screenshooter \ |
diff --git a/meta-xfce/recipes-xfce/thunar-volman/thunar-volman_0.6.0.bb b/meta-xfce/recipes-xfce/thunar-volman/thunar-volman_0.8.0.bb index c7cc0edf89..44448205bc 100644 --- a/meta-xfce/recipes-xfce/thunar-volman/thunar-volman_0.6.0.bb +++ b/meta-xfce/recipes-xfce/thunar-volman/thunar-volman_0.8.0.bb | |||
@@ -2,12 +2,11 @@ DESCRIPTION = "Automatic management of removable drives and media for thunar" | |||
2 | SECTION = "x11" | 2 | SECTION = "x11" |
3 | LICENSE = "GPLv2" | 3 | LICENSE = "GPLv2" |
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" | 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" |
5 | DEPENDS = "exo gtk+ libxfce4ui libxfce4util xfconf libnotify udev" | 5 | DEPENDS = "exo glib-2.0 gtk+ libxfce4ui libxfce4util xfconf libnotify udev" |
6 | PR = "r1" | ||
7 | 6 | ||
8 | inherit xfce | 7 | inherit xfce |
9 | 8 | ||
10 | SRC_URI[md5sum] = "2f166662dd100d5195da238af417f305" | 9 | SRC_URI[md5sum] = "250af757ea629c7c27f554d17119080c" |
11 | SRC_URI[sha256sum] = "b1afd2b3b285cfcf07c11caa3d37fa5ff1fc06f7dc68fcca07f9a0d70daa694f" | 10 | SRC_URI[sha256sum] = "ff0887c862b578580d05f4cd7db66081382ff143f9cc7ea3c9ba58cf5d02bceb" |
12 | 11 | ||
13 | RDEPENDS_${PN} = "eject" | 12 | RDEPENDS_${PN} = "eject" |
diff --git a/meta-xfce/recipes-xfce/thunar/thunar_1.2.3.bb b/meta-xfce/recipes-xfce/thunar/thunar_1.4.0.bb index 86fcc791ea..39b1254504 100644 --- a/meta-xfce/recipes-xfce/thunar/thunar_1.2.3.bb +++ b/meta-xfce/recipes-xfce/thunar/thunar_1.4.0.bb | |||
@@ -2,13 +2,12 @@ DESCRIPTION = "File manager for the Xfce Desktop Environment" | |||
2 | SECTION = "x11" | 2 | SECTION = "x11" |
3 | LICENSE = "GPLv2" | 3 | LICENSE = "GPLv2" |
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" | 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" |
5 | DEPENDS = "exo gtk+ gdk-pixbuf libxfce4util libxfce4ui libsm dbus-glib startup-notification libnotify" | 5 | DEPENDS = "exo glib-2.0 gtk+ gdk-pixbuf libxfce4util libxfce4ui libsm dbus-glib startup-notification libnotify" |
6 | |||
7 | PR = "r1" | ||
8 | 6 | ||
9 | inherit xfce | 7 | inherit xfce |
10 | 8 | ||
11 | # SRC_URI must follow inherited one | 9 | SRC_URI[md5sum] = "737ad2c36ed36b10fef82e860b9e990a" |
10 | SRC_URI[sha256sum] = "2c11a19e64cef708a264fb4d5d933389899c3d132fe7b1e313dd6e37bfe4c8ba" | ||
12 | SRC_URI = "http://archive.xfce.org/src/xfce/${PN}/${@'${PV}'[0:3]}/Thunar-${PV}.tar.bz2" | 11 | SRC_URI = "http://archive.xfce.org/src/xfce/${PN}/${@'${PV}'[0:3]}/Thunar-${PV}.tar.bz2" |
13 | 12 | ||
14 | S = "${WORKDIR}/Thunar-${PV}/" | 13 | S = "${WORKDIR}/Thunar-${PV}/" |
@@ -23,6 +22,3 @@ FILES_${PN} += "${libdir}/thunarx-2/* \ | |||
23 | FILES_${PN}-dbg += "${libdir}/thunarx-2/.debug/ \ | 22 | FILES_${PN}-dbg += "${libdir}/thunarx-2/.debug/ \ |
24 | ${libdir}/xfce4/panel/plugins/.debug/ \ | 23 | ${libdir}/xfce4/panel/plugins/.debug/ \ |
25 | ${libdir}/Thunar/.debug/" | 24 | ${libdir}/Thunar/.debug/" |
26 | |||
27 | SRC_URI[md5sum] = "0a2c36cdd3cb3a2ab52cbf6055415b85" | ||
28 | SRC_URI[sha256sum] = "e66aa9ad61a9202e15cc7c5fffc7b961da9ab3b4428f874c1ec8e46eb4ffaca6" | ||
diff --git a/meta-xfce/recipes-xfce/tumbler/tumbler_0.1.23.bb b/meta-xfce/recipes-xfce/tumbler/tumbler_0.1.25.bb index cd95a03837..3c2c2b371e 100644 --- a/meta-xfce/recipes-xfce/tumbler/tumbler_0.1.23.bb +++ b/meta-xfce/recipes-xfce/tumbler/tumbler_0.1.25.bb | |||
@@ -1,11 +1,14 @@ | |||
1 | DESCRIPTION="Thumbnail service implementing the thumbnail management D-Bus specification" | 1 | DESCRIPTION="Thumbnail service implementing the thumbnail management D-Bus specification" |
2 | SECTION = "x11/libs" | 2 | SECTION = "x11/libs" |
3 | LICENSE = "GPLv2" | 3 | LICENSE = "GPLv2" |
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" | 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" |
5 | DEPENDS = "dbus-glib freetype gdk-pixbuf poppler" | 5 | DEPENDS = "dbus-glib freetype gdk-pixbuf poppler" |
6 | 6 | ||
7 | inherit xfce | 7 | inherit xfce |
8 | 8 | ||
9 | SRC_URI[md5sum] = "d4edc15c172714c7a3eaf3c719b8faf6" | ||
10 | SRC_URI[sha256sum] = "02d5de508d8c18692a25a832a9280c2043f6b7c90dd3fcbd87f5955337015546" | ||
11 | |||
9 | INSANE_SKIP_${PN} = "dev-so" | 12 | INSANE_SKIP_${PN} = "dev-so" |
10 | 13 | ||
11 | do_install_append() { | 14 | do_install_append() { |
@@ -27,6 +30,3 @@ FILES_${PN}-dbg += "${libdir}/tumbler-1/.debug \ | |||
27 | ${libdir}/tumbler-1/plugins/.debug \ | 30 | ${libdir}/tumbler-1/plugins/.debug \ |
28 | ${libdir}/tumbler-1/plugins/cache/.debug \ | 31 | ${libdir}/tumbler-1/plugins/cache/.debug \ |
29 | " | 32 | " |
30 | |||
31 | SRC_URI[md5sum] = "c6cf6821f5d884cbf2c26f45f2fecc74" | ||
32 | SRC_URI[sha256sum] = "b3066d17b7e1fee5135eb876a7c2c50a1221bd0d447c3dd7c36efe6d7f3874cb" | ||
diff --git a/meta-xfce/recipes-xfce/xfce-utils/xfce-utils_4.8.3.bb b/meta-xfce/recipes-xfce/xfce-utils/xfce-utils_4.8.3.bb deleted file mode 100644 index e4b8686252..0000000000 --- a/meta-xfce/recipes-xfce/xfce-utils/xfce-utils_4.8.3.bb +++ /dev/null | |||
@@ -1,20 +0,0 @@ | |||
1 | DESCRIPTION="Xfce4 Utilities" | ||
2 | SECTION = "x11" | ||
3 | LICENSE = "GPLv2" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=9ac2e7cff1ddaf48b6eab6028f23ef88" | ||
5 | DEPENDS = "gtk+ virtual/libx11 dbus libxfce4util libxfce4ui" | ||
6 | |||
7 | inherit xfce | ||
8 | |||
9 | # usually we do not migrate (requires perl on target) | ||
10 | EXTRA_OECONF += "--disable-xfconf-migration" | ||
11 | |||
12 | FILES_${PN} += " \ | ||
13 | ${libdir}/xfce4/xfconf-migration \ | ||
14 | ${datadir}/dbus-1/* \ | ||
15 | ${datadir}/xsessions/xfce.desktop \ | ||
16 | " | ||
17 | RDEPENDS_${PN} = "xrdb openssh-misc" | ||
18 | |||
19 | SRC_URI[md5sum] = "03b5fba5f63f4f1a31cc7d3728f3c87e" | ||
20 | SRC_URI[sha256sum] = "035070d7e608b29dbaeeb6ec541d8c2edbd28152d3ef111316c33871ab02b926" | ||
diff --git a/meta-xfce/recipes-xfce/xfce4-appfinder/xfce4-appfinder_4.10.0.bb b/meta-xfce/recipes-xfce/xfce4-appfinder/xfce4-appfinder_4.10.0.bb new file mode 100644 index 0000000000..25c2515a1b --- /dev/null +++ b/meta-xfce/recipes-xfce/xfce4-appfinder/xfce4-appfinder_4.10.0.bb | |||
@@ -0,0 +1,10 @@ | |||
1 | DESCRIPTION="Xfce4 Application Finder" | ||
2 | SECTION = "x11" | ||
3 | LICENSE = "GPLv2" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" | ||
5 | DEPENDS="glib-2.0 gtk+ libxfce4util libxfce4ui garcon dbus-glib xfconf" | ||
6 | |||
7 | inherit xfce | ||
8 | |||
9 | SRC_URI[md5sum] = "799f70a9ad67b450da67810a5107e623" | ||
10 | SRC_URI[sha256sum] = "042aae7e366428a6a92b6353b3f2727d64823076a7752b8e0a15f1f8f3645439" | ||
diff --git a/meta-xfce/recipes-xfce/xfce4-appfinder/xfce4-appfinder_4.8.0.bb b/meta-xfce/recipes-xfce/xfce4-appfinder/xfce4-appfinder_4.8.0.bb deleted file mode 100644 index 9187041096..0000000000 --- a/meta-xfce/recipes-xfce/xfce4-appfinder/xfce4-appfinder_4.8.0.bb +++ /dev/null | |||
@@ -1,12 +0,0 @@ | |||
1 | DESCRIPTION="Xfce4 Application Finder" | ||
2 | SECTION = "x11" | ||
3 | LICENSE = "GPLv2" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" | ||
5 | DEPENDS="gtk+ libxfce4util libxfce4ui garcon xfconf" | ||
6 | |||
7 | PR = "r0" | ||
8 | |||
9 | inherit xfce | ||
10 | |||
11 | SRC_URI[md5sum] = "fb4797ef91b90d111b989e98c3e000e0" | ||
12 | SRC_URI[sha256sum] = "fd74184355e45f8a16cc3cdd32b012b6787a453deb3a8b96af90494c7a8ac77f" | ||
diff --git a/meta-xfce/recipes-xfce/xfce4-dev-tools/xfce4-dev-tools_4.8.0.bb b/meta-xfce/recipes-xfce/xfce4-dev-tools/xfce4-dev-tools_4.10.0.bb index ce21bf0e9b..1955fccb0e 100644 --- a/meta-xfce/recipes-xfce/xfce4-dev-tools/xfce4-dev-tools_4.8.0.bb +++ b/meta-xfce/recipes-xfce/xfce4-dev-tools/xfce4-dev-tools_4.10.0.bb | |||
@@ -3,12 +3,15 @@ HOMEPAGE = "http://www.xfce.org" | |||
3 | SECTION = "x11/libs" | 3 | SECTION = "x11/libs" |
4 | LICENSE = "GPLv2" | 4 | LICENSE = "GPLv2" |
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=9ac2e7cff1ddaf48b6eab6028f23ef88" | 5 | LIC_FILES_CHKSUM = "file://COPYING;md5=9ac2e7cff1ddaf48b6eab6028f23ef88" |
6 | DEPENDS = "glib-2.0" | ||
6 | 7 | ||
7 | PR = "r2" | 8 | inherit autotools |
8 | 9 | ||
9 | BBCLASSEXTEND = "native" | 10 | BBCLASSEXTEND = "native" |
10 | 11 | ||
11 | inherit autotools | 12 | SRC_URI = "http://archive.xfce.org/src/xfce/${BPN}/${@'${PV}'[0:4]}/${BPN}-${PV}.tar.bz2" |
13 | SRC_URI[md5sum] = "372b74f432e7e02d946c2ea9d3de2805" | ||
14 | SRC_URI[sha256sum] = "f79649bbfbbf16881494ee9f67035063765aec12e23ab9bac31de2c8a4f32bf8" | ||
12 | 15 | ||
13 | do_install_append() { | 16 | do_install_append() { |
14 | install -d ${D}${datadir}/aclocal | 17 | install -d ${D}${datadir}/aclocal |
@@ -16,7 +19,3 @@ do_install_append() { | |||
16 | } | 19 | } |
17 | 20 | ||
18 | FILES_${PN} += "${datadir}/xfce4/dev-tools/m4macros/*.m4" | 21 | FILES_${PN} += "${datadir}/xfce4/dev-tools/m4macros/*.m4" |
19 | |||
20 | SRC_URI = "http://archive.xfce.org/src/xfce/${BPN}/${@'${PV}'[0:3]}/${BPN}-${PV}.tar.bz2" | ||
21 | SRC_URI[md5sum] = "9591299c49d92d00ba47974c42a735fa" | ||
22 | SRC_URI[sha256sum] = "7a1457e9dc839cb121a48e5c53c483ce02a3a5dbaf09376794a13bafe4194815" | ||
diff --git a/meta-xfce/recipes-xfce/xfce4-panel/xfce4-panel_4.8.6.bb b/meta-xfce/recipes-xfce/xfce4-panel/xfce4-panel_4.10.0.bb index b59fde0a1e..5d034258e6 100644 --- a/meta-xfce/recipes-xfce/xfce4-panel/xfce4-panel_4.8.6.bb +++ b/meta-xfce/recipes-xfce/xfce4-panel/xfce4-panel_4.10.0.bb | |||
@@ -4,10 +4,11 @@ LICENSE = "GPLv2" | |||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=26a8bd75d8f8498bdbbe64a27791d4ee" | 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=26a8bd75d8f8498bdbbe64a27791d4ee" |
5 | DEPENDS = "libxfce4util garcon libxfce4ui xfconf exo gtk+ dbus cairo virtual/libx11 libxml2 libwnck" | 5 | DEPENDS = "libxfce4util garcon libxfce4ui xfconf exo gtk+ dbus cairo virtual/libx11 libxml2 libwnck" |
6 | 6 | ||
7 | PR = "r3" | ||
8 | |||
9 | inherit xfce | 7 | inherit xfce |
10 | 8 | ||
9 | SRC_URI[md5sum] = "cf7351a4b952dbe3fc5ff509c68def33" | ||
10 | SRC_URI[sha256sum] = "3321f998af2bbd14ba68654a8881774f6ea2ec4f1a3544598e7f47d3ed0009b9" | ||
11 | |||
11 | python populate_packages_prepend() { | 12 | python populate_packages_prepend() { |
12 | plugin_dir = bb.data.expand('${libdir}/xfce4/panel/plugins/', d) | 13 | plugin_dir = bb.data.expand('${libdir}/xfce4/panel/plugins/', d) |
13 | plugin_name = bb.data.expand('${PN}-plugin-%s', d) | 14 | plugin_name = bb.data.expand('${PN}-plugin-%s', d) |
@@ -18,9 +19,6 @@ python populate_packages_prepend() { | |||
18 | '${datadir}/icons/hicolor/48x48/apps/*-%s.png', | 19 | '${datadir}/icons/hicolor/48x48/apps/*-%s.png', |
19 | '${bindir}/*%s*']) | 20 | '${bindir}/*%s*']) |
20 | } | 21 | } |
21 | do_install_append () { | ||
22 | find "${D}/${libdir}/xfce4/panel/plugins" -name '*.a' -exec rm -f {} + | ||
23 | } | ||
24 | 22 | ||
25 | PACKAGES_DYNAMIC = "${PN}-plugin-*" | 23 | PACKAGES_DYNAMIC = "${PN}-plugin-*" |
26 | 24 | ||
@@ -29,5 +27,3 @@ FILES_${PN} += "${libdir}/xfce4/panel/migrate \ | |||
29 | 27 | ||
30 | FILES_${PN}-dbg += "${libdir}/xfce4/panel/plugins/.debug \ | 28 | FILES_${PN}-dbg += "${libdir}/xfce4/panel/plugins/.debug \ |
31 | " | 29 | " |
32 | SRC_URI[md5sum] = "9d7bf0503d5867c4044cef04bb5845b1" | ||
33 | SRC_URI[sha256sum] = "66f1266a1242ee5ecada995a4a584dd9802aa24456759b40b0c29227c39bed03" | ||
diff --git a/meta-xfce/recipes-xfce/xfce4-session/files/0001-Don-t-loose-xfwm4-when-closing-session-with-multiple.patch b/meta-xfce/recipes-xfce/xfce4-session/files/0001-Handle-multiple-interactive-session-save-bug-5379.patch index 50bade87f7..38949a5d73 100644 --- a/meta-xfce/recipes-xfce/xfce4-session/files/0001-Don-t-loose-xfwm4-when-closing-session-with-multiple.patch +++ b/meta-xfce/recipes-xfce/xfce4-session/files/0001-Handle-multiple-interactive-session-save-bug-5379.patch | |||
@@ -1,56 +1,39 @@ | |||
1 | From 64c0acb072057023870881f9fbac29ce08d357db Mon Sep 17 00:00:00 2001 | 1 | From 9f3077be682355e1cd07e9a9463e76307292208c Mon Sep 17 00:00:00 2001 |
2 | From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@googlemail.com> | 2 | From: Dimitar Zhekov <hamster@mbox.contact.bg> |
3 | Date: Wed, 5 Sep 2012 20:14:09 +0200 | 3 | Date: Thu, 30 Aug 2012 22:52:14 +0200 |
4 | Subject: [PATCH] Don't loose xfwm4 when closing session with multiple windows | 4 | Subject: [PATCH] Handle multiple interactive session save (bug #5379). |
5 | waiting for user input | ||
6 | MIME-Version: 1.0 | ||
7 | Content-Type: text/plain; charset=UTF-8 | ||
8 | Content-Transfer-Encoding: 8bit | ||
9 | 5 | ||
10 | When closing a session with more than one window open and waiting for unsaved | 6 | Additionnaly, we now use SmSaveGlobal on log out / shutdown without |
11 | data to be closed, at the next session xfwm4 was not started properly. | 7 | session save which avoids data loss. Previously clients would not save |
8 | anything on log out without session save. | ||
12 | 9 | ||
13 | The bug(fix) could be reproduced by | 10 | Based on original work by Chris Bainbridge (chris.bainbridge@gmail.com). |
14 | |||
15 | * opening gedit | ||
16 | * entering some text | ||
17 | * opening terminal | ||
18 | * closing session (no YNC-dialog / wait ~1min to close session) | ||
19 | * reopen session | ||
20 | |||
21 | Bugreport with this patch is found at [1] further discussion at [2]. | ||
22 | |||
23 | Upstream-Status: Pending | ||
24 | |||
25 | [1] https://bugzilla.xfce.org/show_bug.cgi?id=5379 | ||
26 | [2] http://mail.xfce.org/pipermail/xfce/2012-August/031174.html | ||
27 | |||
28 | Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> | ||
29 | --- | 11 | --- |
12 | Upstream-status: applied | ||
30 | xfce4-session/xfsm-manager.c | 81 ++++++++++++++++++++++++----------------- | 13 | xfce4-session/xfsm-manager.c | 81 ++++++++++++++++++++++++----------------- |
31 | 1 files changed, 47 insertions(+), 34 deletions(-) | 14 | 1 files changed, 47 insertions(+), 34 deletions(-) |
32 | 15 | ||
33 | diff --git a/xfce4-session/xfsm-manager.c b/xfce4-session/xfsm-manager.c | 16 | diff --git a/xfce4-session/xfsm-manager.c b/xfce4-session/xfsm-manager.c |
34 | index 3078d6a..3cc4c89 100644 | 17 | index bf6a446..35811c5 100644 |
35 | --- a/xfce4-session/xfsm-manager.c | 18 | --- a/xfce4-session/xfsm-manager.c |
36 | +++ b/xfce4-session/xfsm-manager.c | 19 | +++ b/xfce4-session/xfsm-manager.c |
37 | @@ -96,6 +96,7 @@ struct _XfsmManager | 20 | @@ -98,6 +98,7 @@ struct _XfsmManager |
38 | 21 | ||
39 | XfsmManagerState state; | 22 | XfsmShutdownType shutdown_type; |
40 | XfsmShutdownType shutdown_type; | 23 | XfsmShutdown *shutdown_helper; |
41 | + gboolean save_session; | 24 | + gboolean save_session; |
42 | 25 | ||
43 | gboolean session_chooser; | 26 | gboolean session_chooser; |
44 | gchar *session_name; | 27 | gchar *session_name; |
45 | @@ -225,6 +226,7 @@ xfsm_manager_init (XfsmManager *manager) | 28 | @@ -230,6 +231,7 @@ xfsm_manager_init (XfsmManager *manager) |
46 | manager->session_chooser = FALSE; | ||
47 | manager->failsafe_mode = TRUE; | 29 | manager->failsafe_mode = TRUE; |
48 | manager->shutdown_type = XFSM_SHUTDOWN_LOGOUT; | 30 | manager->shutdown_type = XFSM_SHUTDOWN_LOGOUT; |
31 | manager->shutdown_helper = xfsm_shutdown_get (); | ||
49 | + manager->save_session = TRUE; | 32 | + manager->save_session = TRUE; |
50 | 33 | ||
51 | manager->pending_properties = g_queue_new (); | 34 | manager->pending_properties = g_queue_new (); |
52 | manager->starting_properties = g_queue_new (); | 35 | manager->starting_properties = g_queue_new (); |
53 | @@ -981,7 +983,9 @@ xfsm_manager_interact (XfsmManager *manager, | 36 | @@ -989,7 +991,9 @@ xfsm_manager_interact (XfsmManager *manager, |
54 | XfsmClient *cl = lp->data; | 37 | XfsmClient *cl = lp->data; |
55 | if (xfsm_client_get_state (cl) == XFSM_CLIENT_INTERACTING) | 38 | if (xfsm_client_get_state (cl) == XFSM_CLIENT_INTERACTING) |
56 | { | 39 | { |
@@ -61,9 +44,9 @@ index 3078d6a..3cc4c89 100644 | |||
61 | return; | 44 | return; |
62 | } | 45 | } |
63 | } | 46 | } |
64 | @@ -1158,44 +1162,47 @@ xfsm_manager_save_yourself_global (XfsmManager *manager, | 47 | @@ -1138,44 +1142,47 @@ xfsm_manager_save_yourself_global (XfsmManager *manager, |
48 | } | ||
65 | } | 49 | } |
66 | #endif | ||
67 | 50 | ||
68 | - if (!shutdown || shutdown_save) | 51 | - if (!shutdown || shutdown_save) |
69 | + /* don't save the session if shutting down without save */ | 52 | + /* don't save the session if shutting down without save */ |
@@ -140,7 +123,7 @@ index 3078d6a..3cc4c89 100644 | |||
140 | } | 123 | } |
141 | } | 124 | } |
142 | 125 | ||
143 | @@ -1267,7 +1274,12 @@ xfsm_manager_save_yourself_done (XfsmManager *manager, | 126 | @@ -1249,7 +1256,12 @@ xfsm_manager_save_yourself_done (XfsmManager *manager, |
144 | XfsmClient *client, | 127 | XfsmClient *client, |
145 | gboolean success) | 128 | gboolean success) |
146 | { | 129 | { |
@@ -154,7 +137,7 @@ index 3078d6a..3cc4c89 100644 | |||
154 | { | 137 | { |
155 | xfsm_verbose ("Client Id = %s send SAVE YOURSELF DONE, while not being " | 138 | xfsm_verbose ("Client Id = %s send SAVE YOURSELF DONE, while not being " |
156 | "in save mode. Prepare to be nuked!\n", | 139 | "in save mode. Prepare to be nuked!\n", |
157 | @@ -1539,7 +1551,8 @@ xfsm_manager_complete_saveyourself (XfsmManager *manager) | 140 | @@ -1521,7 +1533,8 @@ xfsm_manager_complete_saveyourself (XfsmManager *manager) |
158 | xfsm_verbose ("Manager finished SAVE YOURSELF, session data will be stored now.\n\n"); | 141 | xfsm_verbose ("Manager finished SAVE YOURSELF, session data will be stored now.\n\n"); |
159 | 142 | ||
160 | /* all clients done, store session data */ | 143 | /* all clients done, store session data */ |
@@ -165,5 +148,5 @@ index 3078d6a..3cc4c89 100644 | |||
165 | if (manager->state == XFSM_MANAGER_CHECKPOINT) | 148 | if (manager->state == XFSM_MANAGER_CHECKPOINT) |
166 | { | 149 | { |
167 | -- | 150 | -- |
168 | 1.7.6.5 | 151 | 1.7.4.4 |
169 | 152 | ||
diff --git a/meta-xfce/recipes-xfce/xfce4-session/xfce4-session_4.8.3.bb b/meta-xfce/recipes-xfce/xfce4-session/xfce4-session_4.10.0.bb index 4b9b32eb78..4df9894951 100644 --- a/meta-xfce/recipes-xfce/xfce4-session/xfce4-session_4.8.3.bb +++ b/meta-xfce/recipes-xfce/xfce4-session/xfce4-session_4.10.0.bb | |||
@@ -2,13 +2,14 @@ DESCRIPTION = "xfce4-session is a session manager for Xfce 4 Desktop Environment | |||
2 | SECTION = "x11" | 2 | SECTION = "x11" |
3 | LICENSE = "GPLv2" | 3 | LICENSE = "GPLv2" |
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=9ac2e7cff1ddaf48b6eab6028f23ef88" | 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=9ac2e7cff1ddaf48b6eab6028f23ef88" |
5 | DEPENDS = "virtual/libx11 libsm libxfce4util libxfce4ui gtk+ libwnck dbus dbus-glib xfconf xfce4-panel gconf gnome-keyring" | 5 | DEPENDS = "virtual/libx11 libsm libxfce4util libxfce4ui gtk+ libwnck dbus dbus-glib xfconf gnome-keyring" |
6 | RDEPENDS_${PN} = "netbase xinit dbus-x11 iceauth consolekit" | 6 | RDEPENDS_${PN} = "netbase xinit dbus-x11 iceauth consolekit upower" |
7 | PR = "r2" | ||
8 | 7 | ||
9 | inherit xfce | 8 | inherit xfce |
10 | 9 | ||
11 | SRC_URI += "file://0001-Don-t-loose-xfwm4-when-closing-session-with-multiple.patch" | 10 | SRC_URI[md5sum] = "4768e1a41a0287af6aad18b329a0f230" |
11 | SRC_URI[sha256sum] = "bb8aa9a74c3d382840596fb4875144d66c7f3f47c8e9ee81d31e3428a72c46ce" | ||
12 | SRC_URI += "file://0001-Handle-multiple-interactive-session-save-bug-5379.patch" | ||
12 | 13 | ||
13 | # protect from frightening message that xfce might not work correctly | 14 | # protect from frightening message that xfce might not work correctly |
14 | pkg_postinst_${PN} () { | 15 | pkg_postinst_${PN} () { |
@@ -17,12 +18,9 @@ pkg_postinst_${PN} () { | |||
17 | 18 | ||
18 | FILES_${PN} += "${libdir}/xfce4/*/*/*.so \ | 19 | FILES_${PN} += "${libdir}/xfce4/*/*/*.so \ |
19 | ${libdir}/xfce4/session/*-*-* \ | 20 | ${libdir}/xfce4/session/*-*-* \ |
20 | ${datadir}/xfce4/*/* \ | 21 | ${datadir}/xsessions \ |
21 | ${datadir}/themes/Default/balou/*" | 22 | ${datadir}/themes/Default/balou/*" |
22 | 23 | ||
23 | FILES_${PN}-dbg += "${libdir}/xfce4/*/*/.debug" | 24 | FILES_${PN}-dbg += "${libdir}/xfce4/*/*/.debug" |
24 | 25 | ||
25 | FILES_${PN}-staticdev += "${libdir}/xfce4/*/*/*.*a" | 26 | FILES_${PN}-staticdev += "${libdir}/xfce4/*/*/*.*a" |
26 | |||
27 | SRC_URI[md5sum] = "461cc38bbd37cab881adbdf943f9a402" | ||
28 | SRC_URI[sha256sum] = "f0801b8c0ffa7e5d41b29b8df281ac127adf467bf50e8ded8aebe5a02bd99338" | ||
diff --git a/meta-xfce/recipes-xfce/xfce4-settings/xfce4-settings/0001-xfsettingsd-use-gnome-as-default-icon-theme.patch b/meta-xfce/recipes-xfce/xfce4-settings/xfce4-settings/0001-xfsettingsd-use-gnome-as-default-icon-theme.patch deleted file mode 100644 index d428848293..0000000000 --- a/meta-xfce/recipes-xfce/xfce4-settings/xfce4-settings/0001-xfsettingsd-use-gnome-as-default-icon-theme.patch +++ /dev/null | |||
@@ -1,29 +0,0 @@ | |||
1 | From 576e7881bdc84390cc51210ee37e5bdd87a170fc Mon Sep 17 00:00:00 2001 | ||
2 | From: Koen Kooi <koen@dominion.thruhere.net> | ||
3 | Date: Sat, 15 Oct 2011 16:43:09 +0200 | ||
4 | Subject: [PATCH] xfsettingsd: use 'gnome' as default icon theme | ||
5 | |||
6 | Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> | ||
7 | --- | ||
8 | |||
9 | Upstream-status: unacceptable (config) | ||
10 | |||
11 | xfsettingsd/xsettings.xml | 2 +- | ||
12 | 1 files changed, 1 insertions(+), 1 deletions(-) | ||
13 | |||
14 | diff --git a/xfsettingsd/xsettings.xml b/xfsettingsd/xsettings.xml | ||
15 | index 049b4ed..d8c6a85 100644 | ||
16 | --- a/xfsettingsd/xsettings.xml | ||
17 | +++ b/xfsettingsd/xsettings.xml | ||
18 | @@ -3,7 +3,7 @@ | ||
19 | <channel name="xsettings" version="1.0"> | ||
20 | <property name="Net" type="empty"> | ||
21 | <property name="ThemeName" type="string" value="Xfce"/> | ||
22 | - <property name="IconThemeName" type="string" value="Rodent"/> | ||
23 | + <property name="IconThemeName" type="string" value="gnome"/> | ||
24 | </property> | ||
25 | <property name="Xft" type="empty"> | ||
26 | <property name="DPI" type="int" value="-1"/> | ||
27 | -- | ||
28 | 1.6.6.1 | ||
29 | |||
diff --git a/meta-xfce/recipes-xfce/xfce4-settings/xfce4-settings/0001-xsettings.xml-remove-trouble-causing-comment.patch b/meta-xfce/recipes-xfce/xfce4-settings/xfce4-settings/0001-xsettings.xml-remove-trouble-causing-comment.patch new file mode 100644 index 0000000000..a76fad2aac --- /dev/null +++ b/meta-xfce/recipes-xfce/xfce4-settings/xfce4-settings/0001-xsettings.xml-remove-trouble-causing-comment.patch | |||
@@ -0,0 +1,31 @@ | |||
1 | From a84a7a6537544cdf56e1d4cad47a4cf002964039 Mon Sep 17 00:00:00 2001 | ||
2 | From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@googlemail.com> | ||
3 | Date: Sun, 20 May 2012 15:20:08 +0200 | ||
4 | Subject: [PATCH 1/2] xsettings.xml: remove trouble causing comment | ||
5 | MIME-Version: 1.0 | ||
6 | Content-Type: text/plain; charset=UTF-8 | ||
7 | Content-Transfer-Encoding: 8bit | ||
8 | Upstream-status: Pending | ||
9 | |||
10 | |||
11 | Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> | ||
12 | --- | ||
13 | xfsettingsd/xsettings.xml | 5 ----- | ||
14 | 1 files changed, 0 insertions(+), 5 deletions(-) | ||
15 | |||
16 | diff --git a/xfsettingsd/xsettings.xml b/xfsettingsd/xsettings.xml | ||
17 | index 8f9e2eb..49a4c1e 100644 | ||
18 | --- a/xfsettingsd/xsettings.xml | ||
19 | +++ b/xfsettingsd/xsettings.xml | ||
20 | @@ -1,8 +1,3 @@ | ||
21 | -<!-- | ||
22 | - Default values for the X settings registry as described in | ||
23 | - http://www.freedesktop.org/wiki/Specifications/XSettingsRegistry | ||
24 | ---> | ||
25 | - | ||
26 | <?xml version="1.0" encoding="UTF-8"?> | ||
27 | <channel name="xsettings" version="1.0"> | ||
28 | <property name="Net" type="empty"> | ||
29 | -- | ||
30 | 1.7.4.4 | ||
31 | |||
diff --git a/meta-xfce/recipes-xfce/xfce4-settings/xfce4-settings/0002-xsettings.xml-Set-default-themes.patch b/meta-xfce/recipes-xfce/xfce4-settings/xfce4-settings/0002-xsettings.xml-Set-default-themes.patch new file mode 100644 index 0000000000..498f8d00d5 --- /dev/null +++ b/meta-xfce/recipes-xfce/xfce4-settings/xfce4-settings/0002-xsettings.xml-Set-default-themes.patch | |||
@@ -0,0 +1,32 @@ | |||
1 | From 071a390ba09a8a412f73d295be81a805804a1f24 Mon Sep 17 00:00:00 2001 | ||
2 | From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@googlemail.com> | ||
3 | Date: Sun, 20 May 2012 15:22:09 +0200 | ||
4 | Subject: [PATCH 2/2] xsettings.xml: Set default themes | ||
5 | MIME-Version: 1.0 | ||
6 | Content-Type: text/plain; charset=UTF-8 | ||
7 | Content-Transfer-Encoding: 8bit | ||
8 | Upstram status: Inappropriate [configuration] | ||
9 | |||
10 | Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> | ||
11 | --- | ||
12 | xfsettingsd/xsettings.xml | 4 ++-- | ||
13 | 1 files changed, 2 insertions(+), 2 deletions(-) | ||
14 | |||
15 | diff --git a/xfsettingsd/xsettings.xml b/xfsettingsd/xsettings.xml | ||
16 | index 49a4c1e..5ec94e9 100644 | ||
17 | --- a/xfsettingsd/xsettings.xml | ||
18 | +++ b/xfsettingsd/xsettings.xml | ||
19 | @@ -1,8 +1,8 @@ | ||
20 | <?xml version="1.0" encoding="UTF-8"?> | ||
21 | <channel name="xsettings" version="1.0"> | ||
22 | <property name="Net" type="empty"> | ||
23 | - <property name="ThemeName" type="empty"/> | ||
24 | - <property name="IconThemeName" type="empty"/> | ||
25 | + <property name="ThemeName" type="string" value="Xfce"/> | ||
26 | + <property name="IconThemeName" type="string" value="gnome"/> | ||
27 | <property name="DoubleClickTime" type="int" value="250"/> | ||
28 | <property name="DoubleClickDistance" type="int" value="5"/> | ||
29 | <property name="DndDragThreshold" type="int" value="8"/> | ||
30 | -- | ||
31 | 1.7.4.4 | ||
32 | |||
diff --git a/meta-xfce/recipes-xfce/xfce4-settings/xfce4-settings_4.8.3.bb b/meta-xfce/recipes-xfce/xfce4-settings/xfce4-settings_4.10.0.bb index c3dd8fdd51..fb9083dfb7 100644 --- a/meta-xfce/recipes-xfce/xfce4-settings/xfce4-settings_4.8.3.bb +++ b/meta-xfce/recipes-xfce/xfce4-settings/xfce4-settings_4.10.0.bb | |||
@@ -6,9 +6,11 @@ DEPENDS = "exo gtk+ libxfce4util libxfce4ui xfconf dbus-glib libxi virtual/libx1 | |||
6 | 6 | ||
7 | inherit xfce | 7 | inherit xfce |
8 | 8 | ||
9 | SRC_URI += "file://0001-xfsettingsd-use-gnome-as-default-icon-theme.patch" | 9 | SRC_URI += "file://0001-xsettings.xml-remove-trouble-causing-comment.patch \ |
10 | file://0002-xsettings.xml-Set-default-themes.patch" | ||
11 | SRC_URI[md5sum] = "cc4dd9179ead9046c056431f01a12000" | ||
12 | SRC_URI[sha256sum] = "0843f09ba9673f1d1b5df8dce4a17b63c183a9ba3be75fb6ef99a67fc8c1f77e" | ||
10 | 13 | ||
11 | SRC_URI[md5sum] = "4669298cc8a4abf0e5a410016b575030" | 14 | FILES_${PN} += "${libdir}/xfce4" |
12 | SRC_URI[sha256sum] = "d878cc474e1e677e9607279b9a1007cb90ed35ff078de180259a8b2b8d06bc2e" | ||
13 | 15 | ||
14 | RRECOMMENDS_${PN} += "gnome-icon-theme" | 16 | RRECOMMENDS_${PN} += "gnome-icon-theme" |
diff --git a/meta-xfce/recipes-xfce/xfconf/xfconf_4.8.0.bb b/meta-xfce/recipes-xfce/xfconf/xfconf_4.10.0.bb index 65efffd908..5dceb0902a 100644 --- a/meta-xfce/recipes-xfce/xfconf/xfconf_4.8.0.bb +++ b/meta-xfce/recipes-xfce/xfconf/xfconf_4.10.0.bb | |||
@@ -4,12 +4,10 @@ LICENSE = "GPLv2" | |||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552" | 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552" |
5 | DEPENDS = "dbus-glib libxfce4util perl-native" | 5 | DEPENDS = "dbus-glib libxfce4util perl-native" |
6 | 6 | ||
7 | PR = "r0" | ||
8 | |||
9 | inherit xfce | 7 | inherit xfce |
10 | 8 | ||
9 | SRC_URI[md5sum] = "4ed48150a03fb5f42b455494307b7f28" | ||
10 | SRC_URI[sha256sum] = "175219a441cc7d0f210bbd1a3b0abba41598627cd9db27235811400c3e100576" | ||
11 | |||
11 | FILES_${PN} += "${libdir}/xfce4/xfconf/xfconfd \ | 12 | FILES_${PN} += "${libdir}/xfce4/xfconf/xfconfd \ |
12 | ${datadir}/dbus-1/services/org.xfce.Xfconf.service" | 13 | ${datadir}/dbus-1/services/org.xfce.Xfconf.service" |
13 | |||
14 | SRC_URI[md5sum] = "0f11ed1ec7789c5c4c3fcc7cdb3c2940" | ||
15 | SRC_URI[sha256sum] = "e071d55982238f997a691ff4bb08ef39e4c86bae31cf69b6666bc0cdadd1b85d" | ||
diff --git a/meta-xfce/recipes-xfce/xfdesktop/xfdesktop/relative-symlinks-docs.patch b/meta-xfce/recipes-xfce/xfdesktop/xfdesktop/relative-symlinks-docs.patch deleted file mode 100644 index 751d7a6381..0000000000 --- a/meta-xfce/recipes-xfce/xfdesktop/xfdesktop/relative-symlinks-docs.patch +++ /dev/null | |||
@@ -1,31 +0,0 @@ | |||
1 | From 5039e7834fff94f8393963ea8dbad81fa95ef810 Mon Sep 17 00:00:00 2001 | ||
2 | From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@gmx.de> | ||
3 | Date: Fri, 16 Sep 2011 21:09:05 +0200 | ||
4 | Subject: [PATCH] docs: On installation create relative paths in symlinks to | ||
5 | images | ||
6 | MIME-Version: 1.0 | ||
7 | Content-Type: text/plain; charset=UTF-8 | ||
8 | Content-Transfer-Encoding: 8bit | ||
9 | |||
10 | |||
11 | Signed-off-by: Andreas Müller <schnitzeltony@gmx.de> | ||
12 | --- | ||
13 | doc/manual/Makefile.am | 2 +- | ||
14 | 1 files changed, 1 insertions(+), 1 deletions(-) | ||
15 | |||
16 | diff --git a/doc/manual/Makefile.am b/doc/manual/Makefile.am | ||
17 | index 646821d..cbf79e1 100644 | ||
18 | --- a/doc/manual/Makefile.am | ||
19 | +++ b/doc/manual/Makefile.am | ||
20 | @@ -20,7 +20,7 @@ install-data-local: | ||
21 | done; \ | ||
22 | if test x"$$lang" != x"C" -a ! -d $(srcdir)/images/$$lang; then \ | ||
23 | echo "--- Creating symlink to C images for $$lang"; \ | ||
24 | - ln -sf $(docdir)/html/C/images $(DESTDIR)$(docdir)/html/$$lang/images; \ | ||
25 | + ln -sf ../C/images $(DESTDIR)$(docdir)/html/$$lang/images; \ | ||
26 | fi \ | ||
27 | fi \ | ||
28 | done; | ||
29 | -- | ||
30 | 1.7.4.4 | ||
31 | |||
diff --git a/meta-xfce/recipes-xfce/xfdesktop/xfdesktop_4.10.0.bb b/meta-xfce/recipes-xfce/xfdesktop/xfdesktop_4.10.0.bb new file mode 100644 index 0000000000..c9cd92427d --- /dev/null +++ b/meta-xfce/recipes-xfce/xfdesktop/xfdesktop_4.10.0.bb | |||
@@ -0,0 +1,12 @@ | |||
1 | DESCRIPTION = "Xfce4 Desktop Manager" | ||
2 | SECTION = "x11/base" | ||
3 | LICENSE = "GPLv2" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" | ||
5 | DEPENDS = "glib-2.0 gtk+ libxfce4util libxfce4ui libwnck xfconf dbus-glib thunar garcon exo" | ||
6 | |||
7 | inherit xfce | ||
8 | |||
9 | SRC_URI[md5sum] = "d5f6fb9fdde3ddff5804b2a251892936" | ||
10 | SRC_URI[sha256sum] = "897ae6ee435dcc89809ad70c15c5d15347d1cf4fc8033238b17dcc47836c2d7b" | ||
11 | |||
12 | FILES_${PN} += "${datadir}/backgrounds" | ||
diff --git a/meta-xfce/recipes-xfce/xfdesktop/xfdesktop_4.8.3.bb b/meta-xfce/recipes-xfce/xfdesktop/xfdesktop_4.8.3.bb deleted file mode 100644 index 2866280f63..0000000000 --- a/meta-xfce/recipes-xfce/xfdesktop/xfdesktop_4.8.3.bb +++ /dev/null | |||
@@ -1,19 +0,0 @@ | |||
1 | DESCRIPTION = "Xfce4 Desktop Manager" | ||
2 | SECTION = "x11/base" | ||
3 | LICENSE = "GPLv2" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" | ||
5 | DEPENDS = "gtk+ libxfce4util libxfce4ui libwnck xfconf dbus-glib thunar garcon exo" | ||
6 | |||
7 | PR = "r0" | ||
8 | |||
9 | inherit xfce | ||
10 | |||
11 | # SRC_URI must follow inherited one | ||
12 | SRC_URI += " \ | ||
13 | file://relative-symlinks-docs.patch \ | ||
14 | " | ||
15 | |||
16 | FILES_${PN} += "${datadir}/xfce4/backdrops" | ||
17 | |||
18 | SRC_URI[md5sum] = "617c667c469698e8c974e38412cb484c" | ||
19 | SRC_URI[sha256sum] = "e58460f52ae96c389402f6db62c46db61cd51cdb550a42bd97c0ab2a5b62f424" | ||
diff --git a/meta-xfce/recipes-xfce/xfwm4/xfwm4_4.8.3.bb b/meta-xfce/recipes-xfce/xfwm4/xfwm4_4.10.0.bb index 304ff66165..049ac6fb64 100644 --- a/meta-xfce/recipes-xfce/xfwm4/xfwm4_4.8.3.bb +++ b/meta-xfce/recipes-xfce/xfwm4/xfwm4_4.10.0.bb | |||
@@ -3,14 +3,11 @@ SECTION = "x11/wm" | |||
3 | LICENSE = "GPLv2" | 3 | LICENSE = "GPLv2" |
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=d791728a073bc009b4ffaf00b7599855" | 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=d791728a073bc009b4ffaf00b7599855" |
5 | DEPENDS = "virtual/libx11 libxpm gtk+ libxfce4util libxfce4ui xfconf libwnck dbus-glib startup-notification" | 5 | DEPENDS = "virtual/libx11 libxpm gtk+ libxfce4util libxfce4ui xfconf libwnck dbus-glib startup-notification" |
6 | PR = "r1" | ||
7 | 6 | ||
8 | inherit xfce update-alternatives | 7 | inherit xfce update-alternatives |
9 | 8 | ||
10 | SRC_URI[md5sum] = "66cb65797cea8a62563f69b833c7888b" | 9 | SRC_URI[md5sum] = "333e5e25a85411c304e9b4474bf00537" |
11 | SRC_URI[sha256sum] = "0b0e8bea0b257958ad416ab5678cf0cdd7e909943d4d5ab32afc35295a78227e" | 10 | SRC_URI[sha256sum] = "492357bf48121ebffabf2bf0d3b84213d19bf81087321175d687c8a68efe1f9c" |
12 | |||
13 | EXTRA_OECONF += " --enable-startup-notification" | ||
14 | 11 | ||
15 | python populate_packages_prepend () { | 12 | python populate_packages_prepend () { |
16 | themedir = bb.data.expand('${datadir}/themes', d) | 13 | themedir = bb.data.expand('${datadir}/themes', d) |