diff options
author | Andreas Mueller <schnitzeltony@gmx.de> | 2011-08-01 17:43:34 +0200 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2011-08-05 19:49:58 +0200 |
commit | 336dbe95b80cf7bf13827ddd5a9ce02849a24aa7 (patch) | |
tree | 9b7cae74be090a4cea36ba5df314dfdcd25cb361 /meta-xfce/recipes-xfce/xfwm4 | |
parent | 88c2a098d23161d270c80de859b060713b5f6456 (diff) | |
download | meta-openembedded-336dbe95b80cf7bf13827ddd5a9ce02849a24aa7.tar.gz |
xfwm4: Add initial recipe with version 4.8.1
* xfwm4 must be started once manually to work
Diffstat (limited to 'meta-xfce/recipes-xfce/xfwm4')
-rw-r--r-- | meta-xfce/recipes-xfce/xfwm4/xfwm4/relative-symlinks-docs.patch | 28 | ||||
-rw-r--r-- | meta-xfce/recipes-xfce/xfwm4/xfwm4_4.8.1.bb | 37 |
2 files changed, 65 insertions, 0 deletions
diff --git a/meta-xfce/recipes-xfce/xfwm4/xfwm4/relative-symlinks-docs.patch b/meta-xfce/recipes-xfce/xfwm4/xfwm4/relative-symlinks-docs.patch new file mode 100644 index 000000000..4e855e4f0 --- /dev/null +++ b/meta-xfce/recipes-xfce/xfwm4/xfwm4/relative-symlinks-docs.patch | |||
@@ -0,0 +1,28 @@ | |||
1 | From 09d0d36450e25554785bf7f730e4ba0e31982be6 Mon Sep 17 00:00:00 2001 | ||
2 | From: Andreas Mueller <schnitzeltony@gmx.de> | ||
3 | Date: Thu, 21 Jul 2011 19:52:28 +0200 | ||
4 | Subject: [PATCH] docs: On installation create relative paths in symlinks to | ||
5 | images | ||
6 | |||
7 | |||
8 | Signed-off-by: Andreas Mueller <schnitzeltony@gmx.de> | ||
9 | --- | ||
10 | doc/manual/Makefile.am | 2 +- | ||
11 | 1 files changed, 1 insertions(+), 1 deletions(-) | ||
12 | |||
13 | diff --git a/doc/manual/Makefile.am b/doc/manual/Makefile.am | ||
14 | index b21962f..88e234b 100644 | ||
15 | --- a/doc/manual/Makefile.am | ||
16 | +++ b/doc/manual/Makefile.am | ||
17 | @@ -20,7 +20,7 @@ install-data-local: | ||
18 | done; \ | ||
19 | if test x"$$lang" != x"C" -a ! -d $(srcdir)/images/$$lang; then \ | ||
20 | echo "--- Creating symlink to C images for $$lang"; \ | ||
21 | - ln -sf $(docdir)/html/C/images $(DESTDIR)$(docdir)/html/$$lang/images; \ | ||
22 | + ln -sf ../C/images $(DESTDIR)$(docdir)/html/$$lang/images; \ | ||
23 | fi \ | ||
24 | fi \ | ||
25 | done; | ||
26 | -- | ||
27 | 1.7.4.4 | ||
28 | |||
diff --git a/meta-xfce/recipes-xfce/xfwm4/xfwm4_4.8.1.bb b/meta-xfce/recipes-xfce/xfwm4/xfwm4_4.8.1.bb new file mode 100644 index 000000000..e31471d69 --- /dev/null +++ b/meta-xfce/recipes-xfce/xfwm4/xfwm4_4.8.1.bb | |||
@@ -0,0 +1,37 @@ | |||
1 | DESCRIPTION="Xfce4 Window Manager" | ||
2 | SECTION = "x11/wm" | ||
3 | LICENSE = "GPLv2" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=d791728a073bc009b4ffaf00b7599855" | ||
5 | DEPENDS = "virtual/libx11 libxpm gtk+ libxfce4util libxfce4ui xfconf libwnck dbus-glib startup-notification" | ||
6 | RDEPENDS_${PN} = "xfwm4-theme-default" | ||
7 | |||
8 | PR = "r0" | ||
9 | |||
10 | inherit xfce update-alternatives | ||
11 | |||
12 | # SRC_URI must follow inherited one | ||
13 | SRC_URI += " \ | ||
14 | file://relative-symlinks-docs.patch \ | ||
15 | " | ||
16 | |||
17 | EXTRA_OECONF += " --enable-startup-notification" | ||
18 | |||
19 | python populate_packages_prepend () { | ||
20 | themedir = bb.data.expand('${datadir}/themes', d) | ||
21 | do_split_packages(d, themedir, '^(.*)', 'xfwm4-theme-%s', 'XFWM4 theme %s', allow_dirs=True) | ||
22 | } | ||
23 | |||
24 | PACKAGES_DYNAMIC += "xfwm4-theme-*" | ||
25 | |||
26 | ALTERNATIVE_NAME = "x-window-manager" | ||
27 | ALTERNATIVE_LINK = "${bindir}/x-window-manager" | ||
28 | ALTERNATIVE_PATH = "${bindir}/xfce4-session" | ||
29 | ALTERNATIVE_PRIORITY = "30" | ||
30 | |||
31 | FILES_${PN} += "${libdir}/xfce4/xfwm4/helper-dialog \ | ||
32 | ${datadir}/xfwm4/defaults \ | ||
33 | " | ||
34 | FILES_${PN}-dbg += "${libexecdir}/xfce4/xfwm4/.debug/*" | ||
35 | |||
36 | SRC_URI[md5sum] = "447433dca613180ebd6cfed4beb1c1c9" | ||
37 | SRC_URI[sha256sum] = "6a3cbf6c92a0cc3bcaf7cf2565c35beae6354768ec26b4d616a3c2544a8f8499" | ||