aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe
diff options
context:
space:
mode:
authorMarcin Juszkiewicz <marcin.juszkiewicz@linaro.org>2012-11-14 12:34:01 +0100
committerEric Bénard <eric@eukrea.com>2013-01-07 11:59:00 +0100
commit51ec241860a1d5fdd064420c11a2f3c1082a4ff5 (patch)
tree34aa7fe55087823e5eb67b78c2db1a9485e18fc0 /meta-oe
parent4cddf5f720d2341a180e97cf2eedb24f7e02975c (diff)
downloadmeta-openembedded-51ec241860a1d5fdd064420c11a2f3c1082a4ff5.tar.gz
devilspie2: move to meta-gnome (libwnck is there)
Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org> Signed-off-by: Eric Bénard <eric@eukrea.com>
Diffstat (limited to 'meta-oe')
-rw-r--r--meta-oe/recipes-graphics/devilspie/devilspie2_0.24.bb30
-rw-r--r--meta-oe/recipes-graphics/devilspie/files/default.lua46
-rw-r--r--meta-oe/recipes-graphics/devilspie/files/devilspie2.desktop5
3 files changed, 0 insertions, 81 deletions
diff --git a/meta-oe/recipes-graphics/devilspie/devilspie2_0.24.bb b/meta-oe/recipes-graphics/devilspie/devilspie2_0.24.bb
deleted file mode 100644
index 05311fd545..0000000000
--- a/meta-oe/recipes-graphics/devilspie/devilspie2_0.24.bb
+++ /dev/null
@@ -1,30 +0,0 @@
-DESCRIPTION = "Devilspie2 is a window matching utility, allowing the user to perform scripted actions on windows as they are created"
-HOMEPAGE = "http://www.gusnan.se/devilspie2"
-LICENSE = "GPLv3"
-LIC_FILES_CHKSUM = "file://COPYING;md5=00aefaa50aad75c21367df66102d542c \
- file://GPL3.txt;md5=d32239bcb673463ab874e80d47fae504"
-
-DEPENDS = "gtk+ glib-2.0 libwnck lua5.1 virtual/libx11"
-
-SRC_URI = " \
- http://www.gusnan.se/devilspie2/download/devilspie2_${PV}-src.tar.gz \
- file://default.lua \
- file://devilspie2.desktop \
-"
-SRC_URI[md5sum] = "90b354662659e2922bd051fdde3b0971"
-SRC_URI[sha256sum] = "9c94fa13ed8c0bf6914fdda513e21a4bd527821b97a53d8004168a8d465a646a"
-
-inherit pkgconfig
-
-do_compile() {
- export GTK2=1
- oe_runmake CC="${CC}" CPPFLAGS="${CPPFLAGS}" LDFLAGS=" -ldl -lm ${LDFLAGS}"
-}
-
-do_install() {
- oe_runmake DESTDIR="${D}" PREFIX="${prefix}" install
- install -d ${D}/${sysconfdir}/devilspie2
- install -m 644 ${WORKDIR}/default.lua ${D}/${sysconfdir}/devilspie2
- install -d ${D}/${sysconfdir}/xdg/autostart
- install -m 644 ${WORKDIR}/devilspie2.desktop ${D}/${sysconfdir}/xdg/autostart
-}
diff --git a/meta-oe/recipes-graphics/devilspie/files/default.lua b/meta-oe/recipes-graphics/devilspie/files/default.lua
deleted file mode 100644
index 22a17fe98e..0000000000
--- a/meta-oe/recipes-graphics/devilspie/files/default.lua
+++ /dev/null
@@ -1,46 +0,0 @@
--- Copyright (c) 2012 Andreas Müller <schnitzeltony@googlemail.com>
---
--- this is an example
--- * undecorating all windows opened maximized
--- * maximizing and undecorating all appplication's windows in apps_list
--- for further information see
--- http://www.gusnan.se/devilspie2/manual.php
-
-wnd_type = get_window_type()
-
-if(wnd_type == "WINDOW_TYPE_NORMAL") then
-
- -- add only applications you want maximized+undecorated and
- -- which don't keep maximized state
- apps_list =
- {
- "Terminal",
- "ristretto",
- "xarchiver",
- }
-
- app_name = get_application_name()
-
- -- to have some informational output, start devilspie2 with --debug
- -- option and uncomment the following lines:
-
- --debug_print ("Window Name: " .. get_window_name())
- --debug_print ("Application name: " .. app_name)
- --debug_print ("window-type: " .. wnd_type)
-
- -- undecorate all windows starting maximized
- if (get_window_is_maximized()) then
- undecorate_window()
-
- -- maximize/undecorate all windows in apps_list
- -- (unfortunately for some also their settings)
- else
- for line, str in ipairs(apps_list) do
- if (string.find(app_name, str)) then
- maximize()
- undecorate_window()
- break
- end
- end
- end
-end
diff --git a/meta-oe/recipes-graphics/devilspie/files/devilspie2.desktop b/meta-oe/recipes-graphics/devilspie/files/devilspie2.desktop
deleted file mode 100644
index e34e881cd4..0000000000
--- a/meta-oe/recipes-graphics/devilspie/files/devilspie2.desktop
+++ /dev/null
@@ -1,5 +0,0 @@
-[Desktop Entry]
-Type=Application
-Name=Devilspie2
-Exec=devilspie2 -f /etc/devilspie2
-