summaryrefslogtreecommitdiff
path: root/recipes/shr
diff options
context:
space:
mode:
authorKoen Kooi <koen@openembedded.org>2009-09-23 00:15:58 +0200
committerKoen Kooi <koen@openembedded.org>2009-09-23 00:15:58 +0200
commit00f166d4fdb5ff5b966daa12a7a29cbbeeec4e8c (patch)
treea8666fdaac1553e139a05b91ca2bcfa1563e1732 /recipes/shr
parentda4dfa8b6fb0750c8013cf05209e3aeedaccee66 (diff)
parent9887524ae3b1acd6ece8d85eaab2a6c7b5c8e1aa (diff)
Merge branch 'org.openembedded.dev' of git@git.openembedded.org:openembedded into org.openembedded.dev
Diffstat (limited to 'recipes/shr')
-rw-r--r--recipes/shr/e-wm-config-illume-shr_git.bb21
-rw-r--r--recipes/shr/ophonekitd_git.bb24
-rw-r--r--recipes/shr/shr-contacts_git.bb13
-rw-r--r--recipes/shr/shr-dialer_git.bb13
-rw-r--r--recipes/shr/shr-installer_git.bb18
-rw-r--r--recipes/shr/shr-messages_git.bb13
-rw-r--r--recipes/shr/shr-splash-theme-dontpanic_git.bb10
-rw-r--r--recipes/shr/shr-splash-theme-handy_git.bb10
-rw-r--r--recipes/shr/shr-splash-theme-niebiee_git.bb11
-rw-r--r--recipes/shr/shr-splash-theme-simple_git.bb13
-rw-r--r--recipes/shr/shr-splash-theme.inc23
-rw-r--r--recipes/shr/shr-splash_git.bb34
-rw-r--r--recipes/shr/shr-theme-niebiee.bb7
-rw-r--r--recipes/shr/shr-theme_git.bb18
-rw-r--r--recipes/shr/shr-today_git.bb20
15 files changed, 248 insertions, 0 deletions
diff --git a/recipes/shr/e-wm-config-illume-shr_git.bb b/recipes/shr/e-wm-config-illume-shr_git.bb
new file mode 100644
index 0000000000..64bd23fe90
--- /dev/null
+++ b/recipes/shr/e-wm-config-illume-shr_git.bb
@@ -0,0 +1,21 @@
+DESCRIPTION = "illume SHR config"
+SECTION = "e/utils"
+DEPENDS = "eet"
+LICENSE = "MIT BSD"
+PV = "1.1-${EFL_SRCREV}-gitr${SRCREV}"
+PR = "r6"
+
+inherit e
+
+SRC_URI = "git://git.shr-project.org/repo/shr-themes.git;protocol=http;branch=master"
+
+S = "${WORKDIR}/git/e-wm/${PN}"
+
+EXTRA_OECONF = "\
+ --with-eet-eet=${STAGING_BINDIR_NATIVE}/eet \
+"
+
+FILES_${PN} = "${datadir}/enlightenment/data/config/illume-shr"
+
+RRECOMMENDS_${PN} = "e-wm-theme-illume-shr e-wm-sysactions-shr e-wm-menu-shr"
+
diff --git a/recipes/shr/ophonekitd_git.bb b/recipes/shr/ophonekitd_git.bb
new file mode 100644
index 0000000000..ed561c7c75
--- /dev/null
+++ b/recipes/shr/ophonekitd_git.bb
@@ -0,0 +1,24 @@
+DESCRIPTION = "Ophonekitd daemon"
+HOMEPAGE = "http://shr-project.org/"
+LICENSE = "GPL"
+SECTION = "x11/applications"
+DEPENDS += " dbus-glib libframeworkd-glib libframeworkd-phonegui sqlite3"
+PV = "0.0.2+gitr${SRCREV}"
+PR = "r18"
+
+SRC_URI = "git://git.shr-project.org/repo/shr.git;protocol=http;branch=master"
+S = "${WORKDIR}/git/${PN}"
+
+inherit autotools
+
+do_install_append() {
+ install -d ${D}${sysconfdir}/X11/Xsession.d/
+ install -d ${D}${sysconfdir}/dbus-1/system.d/
+ install -d ${D}${datadir}/ophonekitd/
+ install -d ${D}${localstatedir}/db
+ install -m 0755 ${S}/data/80ophonekitd ${D}${sysconfdir}/X11/Xsession.d/
+ install -m 0755 ${S}/data/ophonekitd.conf ${D}${sysconfdir}/dbus-1/system.d/
+}
+
+FILES_${PN} += "${datadir} ${sysconfdir}"
+
diff --git a/recipes/shr/shr-contacts_git.bb b/recipes/shr/shr-contacts_git.bb
new file mode 100644
index 0000000000..1b9a383130
--- /dev/null
+++ b/recipes/shr/shr-contacts_git.bb
@@ -0,0 +1,13 @@
+DESCRIPTION = "The SHR Contacts application"
+HOMEPAGE = "http://shr-project.org/"
+LICENSE = "GPL"
+SECTION = "x11/applications"
+DEPENDS += "dbus-glib libframeworkd-glib libframeworkd-phonegui"
+PV = "0.0.2+gitr${SRCREV}"
+PR = "r6"
+
+inherit pkgconfig autotools
+
+SRC_URI = "git://git.shr-project.org/repo/shr.git;protocol=http;branch=master"
+S = "${WORKDIR}/git/${PN}"
+
diff --git a/recipes/shr/shr-dialer_git.bb b/recipes/shr/shr-dialer_git.bb
new file mode 100644
index 0000000000..796b96592b
--- /dev/null
+++ b/recipes/shr/shr-dialer_git.bb
@@ -0,0 +1,13 @@
+DESCRIPTION = "The SHR Dialer"
+HOMEPAGE = "http://shr-project.org/"
+LICENSE = "GPL"
+SECTION = "x11/applications"
+DEPENDS += "dbus-glib libframeworkd-glib libframeworkd-phonegui"
+PV = "0.0.2+gitr${SRCREV}"
+PR = "r9"
+
+inherit pkgconfig autotools
+
+SRC_URI = "git://git.shr-project.org/repo/shr.git;protocol=http;branch=master"
+S = "${WORKDIR}/git/${PN}"
+
diff --git a/recipes/shr/shr-installer_git.bb b/recipes/shr/shr-installer_git.bb
new file mode 100644
index 0000000000..1206d635d5
--- /dev/null
+++ b/recipes/shr/shr-installer_git.bb
@@ -0,0 +1,18 @@
+DESCRIPTION = "EFL frontend for packagekit"
+HOMEPAGE = "http://shr-project.org"
+SHR_RELEASE ?= "shr"
+LICENSE ?= "GPL"
+RDEPENDS = "python-elementary python-dbus python-core python-edbus packagekit"
+SECTION = "x11/application"
+
+PV = "0.0.1-gitr${SRCREV}"
+PR = "r0"
+
+inherit setuptools
+
+SRC_URI = "git://git.shr-project.org/repo/shr-installer.git;protocol=http"
+S = "${WORKDIR}/git"
+
+FILES_${PN} += "${prefix}/share/pixmaps"
+FILES_${PN} += "${prefix}/share/applications"
+
diff --git a/recipes/shr/shr-messages_git.bb b/recipes/shr/shr-messages_git.bb
new file mode 100644
index 0000000000..6fc0694c29
--- /dev/null
+++ b/recipes/shr/shr-messages_git.bb
@@ -0,0 +1,13 @@
+DESCRIPTION = "The SHR Messages"
+HOMEPAGE = "http://shr-project.org/"
+LICENSE = "GPL"
+SECTION = "x11/applications"
+DEPENDS += "dbus-glib libframeworkd-glib libframeworkd-phonegui"
+PV = "0.0.2+gitr${SRCREV}"
+PR = "r8"
+
+inherit pkgconfig autotools
+
+SRC_URI = "git://git.shr-project.org/repo/shr.git;protocol=http;branch=master"
+S = "${WORKDIR}/git/${PN}"
+
diff --git a/recipes/shr/shr-splash-theme-dontpanic_git.bb b/recipes/shr/shr-splash-theme-dontpanic_git.bb
new file mode 100644
index 0000000000..4bf41fbd29
--- /dev/null
+++ b/recipes/shr/shr-splash-theme-dontpanic_git.bb
@@ -0,0 +1,10 @@
+DESCRIPTION = "SHR splash screen - DON'T PANIC theme"
+SECTION = "x11/data"
+LICENSE = "MIT BSD"
+PV = "1.2-gitr${SRCREV}"
+PR = "r6"
+
+SRC_URI = "git://git.shr-project.org/repo/shr-themes.git;protocol=http;branch=master"
+S = "${WORKDIR}/git/shr-splash/${PN}"
+
+require shr-splash-theme.inc
diff --git a/recipes/shr/shr-splash-theme-handy_git.bb b/recipes/shr/shr-splash-theme-handy_git.bb
new file mode 100644
index 0000000000..773d4f16db
--- /dev/null
+++ b/recipes/shr/shr-splash-theme-handy_git.bb
@@ -0,0 +1,10 @@
+DESCRIPTION = "SHR splash screen - handy theme"
+SECTION = "x11/data"
+LICENSE = "MIT BSD"
+PV = "1.2-gitr${SRCREV}"
+PR = "r3"
+
+SRC_URI = "git://git.shr-project.org/repo/shr-themes.git;protocol=http;branch=master"
+S = "${WORKDIR}/git/shr-splash/${PN}"
+
+require shr-splash-theme.inc
diff --git a/recipes/shr/shr-splash-theme-niebiee_git.bb b/recipes/shr/shr-splash-theme-niebiee_git.bb
new file mode 100644
index 0000000000..40a0973f2b
--- /dev/null
+++ b/recipes/shr/shr-splash-theme-niebiee_git.bb
@@ -0,0 +1,11 @@
+DESCRIPTION = "SHR splash screen - extremely blue Niebiee theme"
+SECTION = "x11/data"
+LICENSE = "MIT BSD"
+PV = "1.2-gitr${SRCREV}"
+PR = "r0"
+
+SRC_URI = "git://git.shr-project.org/repo/shr-themes.git;protocol=http;branch=master"
+S = "${WORKDIR}/git/shr-splash/${PN}"
+
+require shr-splash-theme.inc
+
diff --git a/recipes/shr/shr-splash-theme-simple_git.bb b/recipes/shr/shr-splash-theme-simple_git.bb
new file mode 100644
index 0000000000..865e18fce7
--- /dev/null
+++ b/recipes/shr/shr-splash-theme-simple_git.bb
@@ -0,0 +1,13 @@
+DESCRIPTION = "SHR splash screen - simple SHR theme"
+SECTION = "x11/data"
+LICENSE = "MIT BSD"
+PV = "1.2-gitr${SRCREV}"
+PR = "r6"
+
+SRC_URI = "git://git.shr-project.org/repo/shr-themes.git;protocol=http;branch=master"
+S = "${WORKDIR}/git/shr-splash/${PN}"
+
+ALTERNATIVE_PRIORITY = 2
+
+require shr-splash-theme.inc
+
diff --git a/recipes/shr/shr-splash-theme.inc b/recipes/shr/shr-splash-theme.inc
new file mode 100644
index 0000000000..50e62bcb7e
--- /dev/null
+++ b/recipes/shr/shr-splash-theme.inc
@@ -0,0 +1,23 @@
+RPROVIDES_${PN} = "virtual/shr-splash-theme"
+RDEPENDS += "shr-splash"
+
+inherit update-alternatives
+
+FILES_${PN} = "${datadir}/shr-splash/themes/${PN}"
+
+ALTERNATIVE_NAME = "shr-splash-theme"
+ALTERNATIVE_LINK = "${datadir}/shr-splash/theme"
+ALTERNATIVE_PATH = "${datadir}/shr-splash/themes/${PN}"
+ALTERNATIVE_PRIORITY ?= 1
+
+do_install() {
+ install -d ${D}${datadir}/shr-splash/themes/${PN}
+
+ install -m 0644 ${S}/xsplash-vga.ppm ${D}${datadir}/shr-splash/themes/${PN}/xsplash-vga.ppm
+ install -m 0644 ${S}/boot.fbz ${D}${datadir}/shr-splash/themes/${PN}/boot.fbz
+ install -m 0644 ${S}/shutdown.fbz ${D}${datadir}/shr-splash/themes/${PN}/shutdown.fbz
+ install -m 0644 ${S}/name ${D}${datadir}/shr-splash/themes/${PN}/name
+ install -m 0644 ${S}/author ${D}${datadir}/shr-splash/themes/${PN}/author
+ install -m 0644 ${S}/preview.png ${D}${datadir}/shr-splash/themes/${PN}/preview.png
+}
+
diff --git a/recipes/shr/shr-splash_git.bb b/recipes/shr/shr-splash_git.bb
new file mode 100644
index 0000000000..1ce7373e82
--- /dev/null
+++ b/recipes/shr/shr-splash_git.bb
@@ -0,0 +1,34 @@
+DESCRIPTION = "SHR splash screen"
+SECTION = "x11/data"
+LICENSE = "MIT BSD"
+PV = "1.2-gitr${SRCREV}"
+PR = "r4"
+RRECOMMENDS_${PN} += "\
+ virtual/shr-splash-theme"
+
+inherit update-rc.d
+
+SRC_URI = "git://git.shr-project.org/repo/shr.git;protocol=http;branch=master"
+
+S = "${WORKDIR}/git/${PN}"
+
+FILES_${PN} = "${datadir}/shr-splash \
+ ${sysconfdir}/init.d/shr-splash.sh \
+"
+
+do_install() {
+ install -d ${D}${datadir}/shr-splash
+ install -d ${D}${datadir}/shr-splash/themes
+ install -d ${D}${sysconfdir}/init.d
+
+ install -m 0755 ${S}/shr-splash.sh ${D}${sysconfdir}/init.d/shr-splash.sh
+
+}
+
+pkg_postinst() {
+ [ -e ${datadir}/pixmaps/xsplash-vga.ppm ] || ln -s ${datadir}/shr-splash/theme/xsplash-vga.ppm ${datadir}/pixmaps/xsplash-vga.ppm
+}
+
+
+INITSCRIPT_NAME = "shr-splash.sh"
+INITSCRIPT_PARAMS = "start 01 S . stop 21 0 1 6 ."
diff --git a/recipes/shr/shr-theme-niebiee.bb b/recipes/shr/shr-theme-niebiee.bb
new file mode 100644
index 0000000000..5e5a1399e6
--- /dev/null
+++ b/recipes/shr/shr-theme-niebiee.bb
@@ -0,0 +1,7 @@
+DESCRIPTION = "Niebiee - extremely blue theme for SHR (metapackage)"
+SECTION = "x11/data"
+RDEPENDS += "e-wm-theme-illume-niebiee elementary-theme-niebiee shr-splash-theme-niebiee"
+PV = "0.1"
+PR = "r1"
+
+ALLOW_EMPTY = "1"
diff --git a/recipes/shr/shr-theme_git.bb b/recipes/shr/shr-theme_git.bb
new file mode 100644
index 0000000000..54803107a4
--- /dev/null
+++ b/recipes/shr/shr-theme_git.bb
@@ -0,0 +1,18 @@
+DESCRIPTION = "Standard icon theme for the SHR distribution"
+HOMEPAGE = "http://shr-project.org/"
+LICENSE = "GPL"
+SECTION = "x11/data"
+PV = "0.0.2+gitr${SRCREV}"
+PR = "r2"
+
+inherit autotools
+
+SRC_URI = "git://git.shr-project.org/repo/shr.git;protocol=http;branch=master"
+S = "${WORKDIR}/git/${PN}"
+
+pkg_postinst_shr-theme () {
+}
+
+PACKAGE_ARCH = "all"
+
+FILES_${PN} += "${datadir}/icons"
diff --git a/recipes/shr/shr-today_git.bb b/recipes/shr/shr-today_git.bb
new file mode 100644
index 0000000000..c6947cf3ca
--- /dev/null
+++ b/recipes/shr/shr-today_git.bb
@@ -0,0 +1,20 @@
+DESCRIPTION = "python-elementary and opimd based lock and today screen for the SHR distribution"
+HOMEPAGE = "http://wiki.github.com/slyon/today"
+SHR_RELEASE ?= "shr"
+LICENSE ?= "GPL"
+RDEPENDS = "python-elementary python-dbus python-edbus python-ecore"
+SECTION = "x11/applications"
+
+PV = "0.0.1-gitr${SRCREV}"
+PR = "r0"
+
+inherit setuptools
+
+SRC_URI = "git://github.com/slyon/today.git;protocol=http"
+S = "${WORKDIR}/git"
+
+FILES_${PN} += "/etc/shr-today.conf"
+FILES_${PN} += "/usr/share/shr-today"
+FILES_${PN} += "/etc/X11/Xsession.d/89shr-today"
+CONFFILES_${PN} += "/etc/shr-today.conf"
+