diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-08-27 15:14:24 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-08-27 15:29:45 +0100 |
commit | 29d6678fd546377459ef75cf54abeef5b969b5cf (patch) | |
tree | 8edd65790e37a00d01c3f203f773fe4b5012db18 /meta/packages/settings-daemon | |
parent | da49de6885ee1bc424e70bc02f21f6ab920efb55 (diff) | |
download | openembedded-core-29d6678fd546377459ef75cf54abeef5b969b5cf.tar.gz openembedded-core-29d6678fd546377459ef75cf54abeef5b969b5cf.tar.bz2 openembedded-core-29d6678fd546377459ef75cf54abeef5b969b5cf.zip |
Major layout change to the packages directory
Having one monolithic packages directory makes it hard to find things
and is generally overwhelming. This commit splits it into several
logical sections roughly based on function, recipes.txt gives more
information about the classifications used.
The opportunity is also used to switch from "packages" to "recipes"
as used in OpenEmbedded as the term "packages" can be confusing to
people and has many different meanings.
Not all recipes have been classified yet, this is just a first pass
at separating things out. Some packages are moved to meta-extras as
they're no longer actively used or maintained.
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/packages/settings-daemon')
-rw-r--r-- | meta/packages/settings-daemon/files/70settings-daemon.sh | 1 | ||||
-rw-r--r-- | meta/packages/settings-daemon/files/addsoundkeys.patch | 47 | ||||
-rw-r--r-- | meta/packages/settings-daemon/settings-daemon_svn.bb | 26 |
3 files changed, 0 insertions, 74 deletions
diff --git a/meta/packages/settings-daemon/files/70settings-daemon.sh b/meta/packages/settings-daemon/files/70settings-daemon.sh deleted file mode 100644 index 95374135f2..0000000000 --- a/meta/packages/settings-daemon/files/70settings-daemon.sh +++ /dev/null @@ -1 +0,0 @@ -/usr/bin/settings-daemon & diff --git a/meta/packages/settings-daemon/files/addsoundkeys.patch b/meta/packages/settings-daemon/files/addsoundkeys.patch deleted file mode 100644 index e06f02917b..0000000000 --- a/meta/packages/settings-daemon/files/addsoundkeys.patch +++ /dev/null @@ -1,47 +0,0 @@ -Index: settings-daemon/settings-daemon.c -=================================================================== ---- settings-daemon.orig/settings-daemon.c 2009-05-22 14:57:05.000000000 +0100 -+++ settings-daemon/settings-daemon.c 2009-05-22 14:58:22.000000000 +0100 -@@ -187,6 +187,10 @@ - GCONF_VALUE_STRING, translate_string_string }, - { "/desktop/poky/interface/gtk_color_scheme", "Gtk/ColorScheme", - GCONF_VALUE_STRING, translate_string_string }, -+ { "/desktop/gnome/sound/theme_name", "Net/SoundThemeName", -+ GCONF_VALUE_STRING, translate_string_string }, -+ { "/desktop/gnome/sound/event_sounds", "Net/EnableEventSounds" , -+ GCONF_VALUE_BOOL, translate_bool_int }, - }; - - static const TranslationEntry* -Index: settings-daemon/settings-daemon.schemas -=================================================================== ---- settings-daemon.orig/settings-daemon.schemas 2009-05-22 15:49:17.000000000 +0100 -+++ settings-daemon/settings-daemon.schemas 2009-05-22 15:51:31.000000000 +0100 -@@ -196,6 +196,27 @@ - </locale> - </schema> - -+ <schema> -+ <key>/schemas/desktop/gnome/sound/theme_name</key> -+ <applyto>/desktop/gnome/sound/theme_name</applyto> -+ <owner>gnome</owner> -+ <type>string</type> -+ <default>freedesktop</default> -+ <locale name="C"> -+ <short>Sound Theme Name</short> -+ </locale> -+ </schema> -+ -+ <schema> -+ <key>/schemas/desktop/gnome/sound/event_sounds</key> -+ <applyto>/desktop/gnome/sound/event_sounds</applyto> -+ <owner>gnome</owner> -+ <type>bool</type> -+ <default>true</default> -+ <locale name="C"> -+ <short>Enable Sound Events</short> -+ </locale> -+ </schema> - - </schemalist> - </gconfschemafile> diff --git a/meta/packages/settings-daemon/settings-daemon_svn.bb b/meta/packages/settings-daemon/settings-daemon_svn.bb deleted file mode 100644 index 4d1d9baf40..0000000000 --- a/meta/packages/settings-daemon/settings-daemon_svn.bb +++ /dev/null @@ -1,26 +0,0 @@ -DESCRIPTION = "Settings-daemon provides a bridge between gconf and xsettings" -HOMEPAGE = "http://svn.o-hand.com/view/matchbox/trunk/settings-daemon/" -BUGTRACKER = "http://bugzilla.openedhand.com/" -LICENSE = "MIT-style" -LIC_FILES_CHKSUM = "file://xsettings-manager.h;endline=22;md5=7cfac9d2d4dc3694cc7eb605cf32a69b \ - file://xsettings-common.h;endline=22;md5=7cfac9d2d4dc3694cc7eb605cf32a69b" -DEPENDS = "gconf glib-2.0 gtk+" -SECTION = "x11" -PV = "0.0+svnr${SRCREV}" - -PR = "r3" - -SRC_URI = "svn://svn.o-hand.com/repos/matchbox/trunk;module=${PN};proto=http \ - file://addsoundkeys.patch;apply=yes \ - file://70settings-daemon.sh" - -S = "${WORKDIR}/${PN}" - -inherit autotools pkgconfig gconf - -FILES_${PN} = "${bindir}/* ${sysconfdir}" - -do_install_append () { - install -d ${D}/${sysconfdir}/X11/Xsession.d - install -m 755 ${WORKDIR}/70settings-daemon.sh ${D}/${sysconfdir}/X11/Xsession.d/ -} |