diff options
Diffstat (limited to 'meta/recipes-sato/matchbox-desktop')
6 files changed, 42 insertions, 1 deletions
diff --git a/meta/recipes-sato/matchbox-desktop/files/vfolders/All.directory b/meta/recipes-sato/matchbox-desktop/files/vfolders/All.directory new file mode 100644 index 0000000000..dfa41e3d31 --- /dev/null +++ b/meta/recipes-sato/matchbox-desktop/files/vfolders/All.directory | |||
@@ -0,0 +1,5 @@ | |||
1 | [Desktop Entry] | ||
2 | Name=All | ||
3 | Icon=mbfolder.png | ||
4 | Type=Directory | ||
5 | Match=meta-all | ||
diff --git a/meta/recipes-sato/matchbox-desktop/files/vfolders/Applications.directory b/meta/recipes-sato/matchbox-desktop/files/vfolders/Applications.directory new file mode 100644 index 0000000000..a7e3501712 --- /dev/null +++ b/meta/recipes-sato/matchbox-desktop/files/vfolders/Applications.directory | |||
@@ -0,0 +1,6 @@ | |||
1 | [Desktop Entry] | ||
2 | Name=Applications | ||
3 | Comment=Applications | ||
4 | Icon=gnome-applications.png | ||
5 | Type=Directory | ||
6 | Match=AudioVideo;Audio;Video;Graphics;Network;Office;Utility;System;Development;meta-fallback; | ||
diff --git a/meta/recipes-sato/matchbox-desktop/files/vfolders/Games.directory b/meta/recipes-sato/matchbox-desktop/files/vfolders/Games.directory new file mode 100644 index 0000000000..1b0928c752 --- /dev/null +++ b/meta/recipes-sato/matchbox-desktop/files/vfolders/Games.directory | |||
@@ -0,0 +1,9 @@ | |||
1 | [Desktop Entry] | ||
2 | Name=Games | ||
3 | Name[de]=Spiele | ||
4 | Comment=Games of all kind | ||
5 | Comment[de]=Spiele aller Art | ||
6 | Icon=mbfolder.png | ||
7 | Type=Directory | ||
8 | Match=Game | ||
9 | |||
diff --git a/meta/recipes-sato/matchbox-desktop/files/vfolders/Root.order b/meta/recipes-sato/matchbox-desktop/files/vfolders/Root.order new file mode 100644 index 0000000000..01a86d2939 --- /dev/null +++ b/meta/recipes-sato/matchbox-desktop/files/vfolders/Root.order | |||
@@ -0,0 +1,4 @@ | |||
1 | Applications | ||
2 | Games | ||
3 | Settings | ||
4 | All | ||
diff --git a/meta/recipes-sato/matchbox-desktop/files/vfolders/Settings.directory b/meta/recipes-sato/matchbox-desktop/files/vfolders/Settings.directory new file mode 100644 index 0000000000..5dde365f0e --- /dev/null +++ b/meta/recipes-sato/matchbox-desktop/files/vfolders/Settings.directory | |||
@@ -0,0 +1,8 @@ | |||
1 | [Desktop Entry] | ||
2 | Name=Settings | ||
3 | Name[de]=Einstellungen | ||
4 | Comment=Settings for your handheld computer | ||
5 | Comment[de]=Einstellungen für Ihren Handheld-Computer | ||
6 | Icon=mbfolder.png | ||
7 | Type=Directory | ||
8 | Match=Settings | ||
diff --git a/meta/recipes-sato/matchbox-desktop/matchbox-desktop_2.1.bb b/meta/recipes-sato/matchbox-desktop/matchbox-desktop_2.1.bb index d6c53b003c..d9a2f22147 100644 --- a/meta/recipes-sato/matchbox-desktop/matchbox-desktop_2.1.bb +++ b/meta/recipes-sato/matchbox-desktop/matchbox-desktop_2.1.bb | |||
@@ -12,7 +12,9 @@ SECTION = "x11/wm" | |||
12 | 12 | ||
13 | # SRCREV tagged 2.1 | 13 | # SRCREV tagged 2.1 |
14 | SRCREV = "c8473519a0f37488b8b3e839e275b000cdde0b80" | 14 | SRCREV = "c8473519a0f37488b8b3e839e275b000cdde0b80" |
15 | SRC_URI = "git://git.yoctoproject.org/${BPN}-2" | 15 | SRC_URI = "git://git.yoctoproject.org/${BPN}-2 \ |
16 | file://vfolders/* \ | ||
17 | " | ||
16 | 18 | ||
17 | EXTRA_OECONF = "--enable-startup-notification --with-dbus" | 19 | EXTRA_OECONF = "--enable-startup-notification --with-dbus" |
18 | 20 | ||
@@ -22,3 +24,10 @@ inherit autotools pkgconfig distro_features_check | |||
22 | 24 | ||
23 | # The startup-notification requires x11 in DISTRO_FEATURES | 25 | # The startup-notification requires x11 in DISTRO_FEATURES |
24 | REQUIRED_DISTRO_FEATURES = "x11" | 26 | REQUIRED_DISTRO_FEATURES = "x11" |
27 | |||
28 | do_install_append() { | ||
29 | install -d ${D}${datadir}/matchbox/vfolders/ | ||
30 | install -m 0644 ${WORKDIR}/vfolders/* ${D}${datadir}/matchbox/vfolders/ | ||
31 | } | ||
32 | |||
33 | FILES_${PN} += "${datadir}/matchbox/vfolders/" | ||