aboutsummaryrefslogtreecommitdiffstats
path: root/packages/font-update-common
diff options
context:
space:
mode:
authorRolf Leggewie <oe-devel@rolf.leggewie.biz>2008-01-23 15:21:12 +0000
committerRolf Leggewie <oe-devel@rolf.leggewie.biz>2008-01-23 15:21:12 +0000
commit438c37c80601fdbff139eef84d492fbf84d39675 (patch)
tree4717ccf45b02260cc854a19bbab03bd628955a5f /packages/font-update-common
parenta450911ca47aec70fbbe0865d8262796ffc5fc8e (diff)
downloadopenembedded-438c37c80601fdbff139eef84d492fbf84d39675.tar.gz
font-update-common: first commit, partly closes bug 2430
* a GUI-agnostic update handler for registering fonts for use by the GUI * GUI-specific parts are yet to be committed and need to depend on this package
Diffstat (limited to 'packages/font-update-common')
-rw-r--r--packages/font-update-common/.mtn2git_empty0
-rw-r--r--packages/font-update-common/files/.mtn2git_empty0
-rw-r--r--packages/font-update-common/files/update-fonts4
-rw-r--r--packages/font-update-common/font-update-common_0.1.bb13
4 files changed, 17 insertions, 0 deletions
diff --git a/packages/font-update-common/.mtn2git_empty b/packages/font-update-common/.mtn2git_empty
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/packages/font-update-common/.mtn2git_empty
diff --git a/packages/font-update-common/files/.mtn2git_empty b/packages/font-update-common/files/.mtn2git_empty
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/packages/font-update-common/files/.mtn2git_empty
diff --git a/packages/font-update-common/files/update-fonts b/packages/font-update-common/files/update-fonts
new file mode 100644
index 0000000000..19e3157d2f
--- /dev/null
+++ b/packages/font-update-common/files/update-fonts
@@ -0,0 +1,4 @@
+#!/bin/sh
+#Author: Rolf Leggewie
+
+run-parts /etc/update-fonts-common.d/
diff --git a/packages/font-update-common/font-update-common_0.1.bb b/packages/font-update-common/font-update-common_0.1.bb
new file mode 100644
index 0000000000..eae0a8a55f
--- /dev/null
+++ b/packages/font-update-common/font-update-common_0.1.bb
@@ -0,0 +1,13 @@
+DESCRIPTION = "Scripts to be called when fonts are installed or removed \
+to make them known to the WM, whether X11 or Opie"
+AUTHOR = "Rolf Leggewie <oe-devel@rolf.leggewie.biz"
+
+SRC_URI = "file://update-fonts"
+
+do_install() {
+ install -d ${D}${bindir}
+ install -d ${D}${sysconfdir}/update-fonts-common.d/
+ install -m 0755 ${WORKDIR}/update-fonts ${D}${bindir}
+}
+
+PACKAGE_ARCH = "all"