From 1b26bce9675f1beb3d0370f49fc5ed9709c979f6 Mon Sep 17 00:00:00 2001 From: Zhai Edwin Date: Wed, 26 Jan 2011 19:14:35 +0800 Subject: matchbox: Convert all the matchbox components' repo from svn to git including: matchbox-wm matchbox-panel-2 matchbox-terminal matchbox-config-gtk matchbox-stroke matchbox-desktop matchbox-keyboard matchbox-themes-extra libfakekey settings-daemon Also remove some old recipes. Signed-off-by: Zhai Edwin --- .../matchbox-themes-extra_git.bb | 32 ++++++++++++ .../matchbox-themes-extra_svn.bb | 30 ----------- .../conf/distro/include/poky-default-revisions.inc | 22 ++++---- meta/recipes-graphics/libfakekey/libfakekey_git.bb | 19 +++++++ meta/recipes-graphics/libfakekey/libfakekey_svn.bb | 19 ------- .../libmatchbox/libmatchbox_git.bb | 17 ++++++ .../libmatchbox/libmatchbox_svn.bb | 17 ------ .../matchbox-wm/matchbox-wm_0.9.5.bb | 32 ------------ .../matchbox-wm/matchbox-wm_1.1.bb | 37 ------------- .../matchbox-wm/matchbox-wm_git.bb | 44 ++++++++++++++++ .../matchbox-wm/matchbox-wm_svn.bb | 44 ---------------- .../matchbox-config-gtk/matchbox-config-gtk_git.bb | 21 ++++++++ .../matchbox-config-gtk/matchbox-config-gtk_svn.bb | 21 -------- .../matchbox-desktop/matchbox-desktop_git.bb | 23 ++++++++ .../matchbox-desktop/matchbox-desktop_svn.bb | 23 -------- .../matchbox-keyboard/matchbox-keyboard_git.bb | 61 ++++++++++++++++++++++ .../matchbox-keyboard/matchbox-keyboard_svn.bb | 61 ---------------------- .../matchbox-panel-2/matchbox-panel-2_git.bb | 36 +++++++++++++ .../matchbox-panel-2/matchbox-panel-2_svn.bb | 36 ------------- .../matchbox-stroke/matchbox-stroke_git.bb | 25 +++++++++ .../matchbox-stroke/matchbox-stroke_svn.bb | 25 --------- .../matchbox-terminal/matchbox-terminal_git.bb | 18 +++++++ .../matchbox-terminal/matchbox-terminal_svn.bb | 18 ------- .../settings-daemon/settings-daemon_git.bb | 27 ++++++++++ .../settings-daemon/settings-daemon_svn.bb | 27 ---------- 25 files changed, 334 insertions(+), 401 deletions(-) create mode 100644 meta-demoapps/recipes-sato/matchbox-themes-extra/matchbox-themes-extra_git.bb delete mode 100644 meta-demoapps/recipes-sato/matchbox-themes-extra/matchbox-themes-extra_svn.bb create mode 100644 meta/recipes-graphics/libfakekey/libfakekey_git.bb delete mode 100644 meta/recipes-graphics/libfakekey/libfakekey_svn.bb create mode 100644 meta/recipes-graphics/libmatchbox/libmatchbox_git.bb delete mode 100644 meta/recipes-graphics/libmatchbox/libmatchbox_svn.bb delete mode 100644 meta/recipes-graphics/matchbox-wm/matchbox-wm_0.9.5.bb delete mode 100644 meta/recipes-graphics/matchbox-wm/matchbox-wm_1.1.bb create mode 100644 meta/recipes-graphics/matchbox-wm/matchbox-wm_git.bb delete mode 100644 meta/recipes-graphics/matchbox-wm/matchbox-wm_svn.bb create mode 100644 meta/recipes-sato/matchbox-config-gtk/matchbox-config-gtk_git.bb delete mode 100644 meta/recipes-sato/matchbox-config-gtk/matchbox-config-gtk_svn.bb create mode 100644 meta/recipes-sato/matchbox-desktop/matchbox-desktop_git.bb delete mode 100644 meta/recipes-sato/matchbox-desktop/matchbox-desktop_svn.bb create mode 100644 meta/recipes-sato/matchbox-keyboard/matchbox-keyboard_git.bb delete mode 100644 meta/recipes-sato/matchbox-keyboard/matchbox-keyboard_svn.bb create mode 100644 meta/recipes-sato/matchbox-panel-2/matchbox-panel-2_git.bb delete mode 100644 meta/recipes-sato/matchbox-panel-2/matchbox-panel-2_svn.bb create mode 100644 meta/recipes-sato/matchbox-stroke/matchbox-stroke_git.bb delete mode 100644 meta/recipes-sato/matchbox-stroke/matchbox-stroke_svn.bb create mode 100644 meta/recipes-sato/matchbox-terminal/matchbox-terminal_git.bb delete mode 100644 meta/recipes-sato/matchbox-terminal/matchbox-terminal_svn.bb create mode 100644 meta/recipes-sato/settings-daemon/settings-daemon_git.bb delete mode 100644 meta/recipes-sato/settings-daemon/settings-daemon_svn.bb diff --git a/meta-demoapps/recipes-sato/matchbox-themes-extra/matchbox-themes-extra_git.bb b/meta-demoapps/recipes-sato/matchbox-themes-extra/matchbox-themes-extra_git.bb new file mode 100644 index 0000000000..fdb764ca03 --- /dev/null +++ b/meta-demoapps/recipes-sato/matchbox-themes-extra/matchbox-themes-extra_git.bb @@ -0,0 +1,32 @@ +DESCRIPTION = "Matchbox window manager extra themes" +LICENSE = "GPL" +DEPENDS = "matchbox-wm" +SECTION = "x11/wm" +PV = "0.3+git${SRCPV}" + +LIC_FILES_CHKSUM = "file://configure.ac;endline=7;md5=3c4e087662e37f10e469425f3a0ad225" + +SRC_URI = "git://git.pokylinux.org/${PN};protocol=git" +S = "${WORKDIR}/git" + +inherit autotools pkgconfig + +# split into several packages plus one meta package +PACKAGES = "${PN} ${PN}-industrial ${PN}-expose ${PN}-mbcrystal ${PN}-clearlooks" + +ALLOW_EMPTY_${PN} = 1 +FILES_${PN} = "" +RDEPENDS_${PN} = "${PN}-industrial ${PN}-expose ${PN}-mbcrystal ${PN}-clearlooks" + +FILES_${PN}-industrial = "${datadir}/themes/Industrial \ + ${datadir}/icons/Industrial" + +FILES_${PN}-expose = "${datadir}/themes/expose \ + ${datadir}/icons/expose" + +FILES_${PN}-mbcrystal = "${datadir}/themes/mbcrystal \ + ${datadir}/icons/mbcrystal" + +FILES_${PN}-clearlooks = "${datadir}/themes/Clearlooks \ + ${datadir}/icons/Clearlooks" + diff --git a/meta-demoapps/recipes-sato/matchbox-themes-extra/matchbox-themes-extra_svn.bb b/meta-demoapps/recipes-sato/matchbox-themes-extra/matchbox-themes-extra_svn.bb deleted file mode 100644 index e4e2f730c4..0000000000 --- a/meta-demoapps/recipes-sato/matchbox-themes-extra/matchbox-themes-extra_svn.bb +++ /dev/null @@ -1,30 +0,0 @@ -DESCRIPTION = "Matchbox window manager extra themes" -LICENSE = "GPL" -DEPENDS = "matchbox-wm" -SECTION = "x11/wm" -PV = "0.3+svnr${SRCPV}" - -SRC_URI = "svn://svn.o-hand.com/repos/matchbox/trunk;module=matchbox-themes-extra;proto=http" -S = "${WORKDIR}/${PN}" - -inherit autotools pkgconfig - -# split into several packages plus one meta package -PACKAGES = "${PN} ${PN}-industrial ${PN}-expose ${PN}-mbcrystal ${PN}-clearlooks" - -ALLOW_EMPTY_${PN} = 1 -FILES_${PN} = "" -RDEPENDS_${PN} = "${PN}-industrial ${PN}-expose ${PN}-mbcrystal ${PN}-clearlooks" - -FILES_${PN}-industrial = "${datadir}/themes/Industrial \ - ${datadir}/icons/Industrial" - -FILES_${PN}-expose = "${datadir}/themes/expose \ - ${datadir}/icons/expose" - -FILES_${PN}-mbcrystal = "${datadir}/themes/mbcrystal \ - ${datadir}/icons/mbcrystal" - -FILES_${PN}-clearlooks = "${datadir}/themes/Clearlooks \ - ${datadir}/icons/Clearlooks" - diff --git a/meta/conf/distro/include/poky-default-revisions.inc b/meta/conf/distro/include/poky-default-revisions.inc index 9a34a200dc..f9a0eef34b 100644 --- a/meta/conf/distro/include/poky-default-revisions.inc +++ b/meta/conf/distro/include/poky-default-revisions.inc @@ -59,10 +59,10 @@ SRCREV_pn-inputproto-native ??= "7203036522ba9d4b224d282d6afc2d0b947711ee" SRCREV_pn-inputproto-nativesdk ??= "7203036522ba9d4b224d282d6afc2d0b947711ee" SRCREV_pn-kern-tools-native ??= "8832b75dc2e494ae96ca3e1dee7bfde2f3096904" SRCREV_pn-libdrm ??= "3f3c5be6f908272199ccf53f108b1124bfe0a00e" -SRCREV_pn-libfakekey ??= "2031" +SRCREV_pn-libfakekey ??= "e8c2e412ea4a417afc1f30e32cb7bdc508b1dccc" SRCREV_pn-libgdbus ??= "aeab6e3c0185b271ca343b439470491b99cc587f" SRCREV_pn-libgsmd ??= "5394" -SRCREV_pn-libmatchbox ??= "1531" +SRCREV_pn-libmatchbox ??= "c81f8f444b83b187727f046432b186d67a42c732" SRCREV_pn-libowl ??= "408" SRCREV_pn-libowl-av ??= "416" SRCREV_pn-libx11 ??= "d23aad31338e7d869d878d5aa1b6b91d20287005" @@ -107,19 +107,19 @@ SRCREV_machine_pn-linux-yocto_mpc8315e-rdb ?= "3f01b98238c2ff7913ce9f68f9db5ae95 SRCREV_machine_pn-linux-yocto_beagleboard ?= "a9d833fda90e2f1257888a97e092135610b5f259" SRCREV_meta_pn-linux-yocto ?= "8a49ef6f1a43dabbce34a9ee9a1be08b26fc511c" SRCREV_pn-linux-libc-headers-yocto ??= "a9d833fda90e2f1257888a97e092135610b5f259" -SRCREV_pn-matchbox-config-gtk ??= "2081" +SRCREV_pn-matchbox-config-gtk ??= "3ed74dfb7c57be088a5ab36e446c0ccde9fa1028" SRCREV_pn-matchbox-desktop-sato ??= "76" -SRCREV_pn-matchbox-desktop ??= "2096" -SRCREV_pn-matchbox-keyboard ??= "2075" -SRCREV_pn-matchbox-panel-2 ??= "2111" +SRCREV_pn-matchbox-desktop ??= "af7ed6775487380be73160aa0298bf6019765fad" +SRCREV_pn-matchbox-keyboard ??= "b38f24036cff3be6c2fbcf9ca9881803e69003ac" +SRCREV_pn-matchbox-panel-2 ??= "982d9ea173dc87a84db2303d1a6a12607fc4d539" SRCREV_pn-matchbox-panel ??= "1364" -SRCREV_pn-matchbox-stroke ??= "1820" -SRCREV_pn-matchbox-terminal ??= "1816" +SRCREV_pn-matchbox-stroke ??= "8edfd9a2bf1f0d6b28d4afee4bda9d3635f26a0b" +SRCREV_pn-matchbox-terminal ??= "3fc25cb811a8ed306de897edf9b930f4402f3852" SRCREV_pn-matchbox-theme-sato-2 ??= "164" SRCREV_pn-matchbox-theme-sato ??= "90" -SRCREV_pn-matchbox-themes-extra ??= "1524" +SRCREV_pn-matchbox-themes-extra ??= "f848f9e4e577d5b9719f05b5152df1ce59399f5c" SRCREV_pn-matchbox-wm-2 ??= "2106" -SRCREV_pn-matchbox-wm ??= "1819" +SRCREV_pn-matchbox-wm ??= "e8236c9ab44a8af8137cac2a35fb87f9146a9656" SRCREV_pn-mesa-dri ??= "1bf94d419805538ac23a4d0b04d31ac5e4487aca" SRCREV_pn-mesa-xlib ??= "1bf94d419805538ac23a4d0b04d31ac5e4487aca" SRCDATE_minimo ??= "20070510" @@ -162,7 +162,7 @@ SRCREV_pn-qemugl ??= "d888bbc723c00d197d34a39b5b7448660ec1b1c0" SRCREV_pn-qemugl-nativesdk ??= "d888bbc723c00d197d34a39b5b7448660ec1b1c0" SRCREV_pn-sat-solver = "aa799f7bae0ec055e0e527203635001bb7346dbc" SRCREV_pn-screenshot ??= "292" -SRCREV_pn-settings-daemon ??= "2059" +SRCREV_pn-settings-daemon ??= "0f174f463dfed500b65533e249cd22942e439c77" SRCREV_pn-swabber-native ??= "a0792390c5d6d5a5bade7ab155c80eef3f30fa52" SRCREV_pn-sysprof ??= "38a6af1f0a45e528fd2842983da71e0f23c70d6a" SRCREV_pn-systemtap ??= "4ab3a1863bf4f472acae7a809bf2b38d91658aa8" diff --git a/meta/recipes-graphics/libfakekey/libfakekey_git.bb b/meta/recipes-graphics/libfakekey/libfakekey_git.bb new file mode 100644 index 0000000000..8670ad8215 --- /dev/null +++ b/meta/recipes-graphics/libfakekey/libfakekey_git.bb @@ -0,0 +1,19 @@ +SUMMARY = "Library for converting characters to X key-presses" +DESCRIPTION = "libfakekey is a simple library for converting UTF-8 characters into 'fake' X \ +key-presses." +HOMEPAGE = "http://matchbox-project.org/" +BUGTRACKER = "http://bugzilla.openedhand.com/" + +LICENSE = "LGPLv2+" +LIC_FILES_CHKSUM = "file://src/libfakekey.c;endline=30;md5=602b5ccd48f64407510867f3373b448c" + +DEPENDS = "libxtst" +SECTION = "x11/wm" +PV = "0.0+git${SRCPV}" +PR = "r0" + +SRC_URI = "git://git.pokylinux.org/${PN};protocol=git" + +S = "${WORKDIR}/git" + +inherit autotools pkgconfig gettext diff --git a/meta/recipes-graphics/libfakekey/libfakekey_svn.bb b/meta/recipes-graphics/libfakekey/libfakekey_svn.bb deleted file mode 100644 index 24136664a4..0000000000 --- a/meta/recipes-graphics/libfakekey/libfakekey_svn.bb +++ /dev/null @@ -1,19 +0,0 @@ -SUMMARY = "Library for converting characters to X key-presses" -DESCRIPTION = "libfakekey is a simple library for converting UTF-8 characters into 'fake' X \ -key-presses." -HOMEPAGE = "http://matchbox-project.org/" -BUGTRACKER = "http://bugzilla.openedhand.com/" - -LICENSE = "LGPLv2+" -LIC_FILES_CHKSUM = "file://src/libfakekey.c;endline=30;md5=602b5ccd48f64407510867f3373b448c" - -DEPENDS = "libxtst" -SECTION = "x11/wm" -PV = "0.0+svnr${SRCPV}" -PR = "r1" - -SRC_URI = "svn://svn.o-hand.com/repos/matchbox/trunk;module=${PN};proto=http" - -S = "${WORKDIR}/${PN}" - -inherit autotools pkgconfig gettext diff --git a/meta/recipes-graphics/libmatchbox/libmatchbox_git.bb b/meta/recipes-graphics/libmatchbox/libmatchbox_git.bb new file mode 100644 index 0000000000..f916889cc3 --- /dev/null +++ b/meta/recipes-graphics/libmatchbox/libmatchbox_git.bb @@ -0,0 +1,17 @@ +require libmatchbox.inc + +PV = "1.9+git${SRCPV}" +PR = "r0" +DEFAULT_PREFERENCE = "-1" + +SRC_URI = "git://git.pokylinux.org/${PN};protocol=git \ + file://configure_fixes.patch;patch=1 \ + file://check.m4 \ + file://16bppfixes.patch;patch=1 \ + file://matchbox-start-fix.patch;patch=1" + +S = "${WORKDIR}/git" + +do_configure_prepend () { + cp ${WORKDIR}/check.m4 ${S}/ +} diff --git a/meta/recipes-graphics/libmatchbox/libmatchbox_svn.bb b/meta/recipes-graphics/libmatchbox/libmatchbox_svn.bb deleted file mode 100644 index 6bc7112eca..0000000000 --- a/meta/recipes-graphics/libmatchbox/libmatchbox_svn.bb +++ /dev/null @@ -1,17 +0,0 @@ -require libmatchbox.inc - -PV = "1.7+svnr${SRCPV}" -PR = "r5" -DEFAULT_PREFERENCE = "-1" - -SRC_URI = "svn://svn.o-hand.com/repos/matchbox/trunk;module=${PN};proto=http \ - file://configure_fixes.patch;patch=1 \ - file://check.m4 \ - file://16bppfixes.patch;patch=1 \ - file://matchbox-start-fix.patch;patch=1" - -S = "${WORKDIR}/libmatchbox" - -do_configure_prepend () { - cp ${WORKDIR}/check.m4 ${S}/ -} diff --git a/meta/recipes-graphics/matchbox-wm/matchbox-wm_0.9.5.bb b/meta/recipes-graphics/matchbox-wm/matchbox-wm_0.9.5.bb deleted file mode 100644 index e09eb00ed1..0000000000 --- a/meta/recipes-graphics/matchbox-wm/matchbox-wm_0.9.5.bb +++ /dev/null @@ -1,32 +0,0 @@ -SECTION = "x11/wm" -DESCRIPTION = "Matchbox window manager" -LICENSE = "GPL" -DEPENDS = "libmatchbox virtual/libx11 libxext libxcomposite libxfixes xdamage libxrender startup-notification expat gconf" -PR="r2" - - -SRC_URI = "http://projects.o-hand.com/matchbox/sources/matchbox-window-manager/0.9/matchbox-window-manager-${PV}.tar.gz \ - file://kbdconfig" - -S = "${WORKDIR}/matchbox-window-manager-${PV}" - -inherit autotools pkgconfig update-alternatives - -FILES_${PN} = "${bindir}/* \ - ${datadir}/matchbox \ - ${sysconfdir}/matchbox \ - ${datadir}/themes/blondie/matchbox \ - ${datadir}/themes/Default/matchbox \ - ${datadir}/themes/MBOpus/matchbox" - -ALTERNATIVE_NAME = "x-session-manager" -ALTERNATIVE_LINK = "${bindir}/x-session-manager" -ALTERNATIVE_PATH = "${bindir}/matchbox-session" -ALTERNATIVE_PRIORITY = "10" - -EXTRA_OECONF = " --enable-startup-notification --disable-xrm" - -do_install_prepend() { - install ${WORKDIR}/kbdconfig ${S}/data/kbdconfig -} - diff --git a/meta/recipes-graphics/matchbox-wm/matchbox-wm_1.1.bb b/meta/recipes-graphics/matchbox-wm/matchbox-wm_1.1.bb deleted file mode 100644 index ebed31e2a5..0000000000 --- a/meta/recipes-graphics/matchbox-wm/matchbox-wm_1.1.bb +++ /dev/null @@ -1,37 +0,0 @@ -SECTION = "x11/wm" -DESCRIPTION = "Matchbox window manager" -LICENSE = "GPL" -DEPENDS = "libmatchbox virtual/libx11 libxext libxcomposite libxfixes xdamage libxrender startup-notification expat" -PR="r4" - - -SRC_URI = "http://projects.o-hand.com/matchbox/sources/matchbox-window-manager/1.1/matchbox-window-manager-${PV}.tar.gz \ - file://kbdconfig \ - file://gconf-2.m4" - -S = "${WORKDIR}/matchbox-window-manager-${PV}" - -inherit autotools pkgconfig update-alternatives - -FILES_${PN} = "${bindir}/* \ - ${datadir}/matchbox \ - ${sysconfdir}/matchbox \ - ${datadir}/themes/blondie/matchbox \ - ${datadir}/themes/Default/matchbox \ - ${datadir}/themes/MBOpus/matchbox" - -ALTERNATIVE_NAME = "x-session-manager" -ALTERNATIVE_LINK = "${bindir}/x-session-manager" -ALTERNATIVE_PATH = "${bindir}/matchbox-session" -ALTERNATIVE_PRIORITY = "10" - -EXTRA_OECONF = " --enable-startup-notification --disable-xrm" - -do_configure_prepend () { - cp ${WORKDIR}/gconf-2.m4 ${S}/ -} - -do_install_prepend() { - install ${WORKDIR}/kbdconfig ${S}/data/kbdconfig -} - diff --git a/meta/recipes-graphics/matchbox-wm/matchbox-wm_git.bb b/meta/recipes-graphics/matchbox-wm/matchbox-wm_git.bb new file mode 100644 index 0000000000..086d4853e4 --- /dev/null +++ b/meta/recipes-graphics/matchbox-wm/matchbox-wm_git.bb @@ -0,0 +1,44 @@ +DESCRIPTION = "Matchbox window manager" +HOMEPAGE = "http://matchbox-project.org" +BUGTRACKER = "http://bugzilla.openedhand.com/" + +LICENSE = "GPLv2+" +LIC_FILES_CHKSUM = "file://src/wm.h;endline=21;md5=a7e844465edbcf79c282369f93caa835 \ + file://src/main.c;endline=21;md5=3e5d9f832b527b0d72dbe8e3c4c60b95 \ + file://src/wm.c;endline=21;md5=8dc9d24477d87ef5dfbc2e4927146aab" + +SECTION = "x11/wm" +DEPENDS = "libmatchbox virtual/libx11 libxext libxrender startup-notification expat gconf" + +PV = "1.2+git${SRCPV}" +PR = "r0" + +SRC_URI = "git://git.pokylinux.org/matchbox-window-manager;protocol=git \ + file://configure_fix.patch;patch=1;maxrev=1818 \ + file://kbdconfig" + +S = "${WORKDIR}/git" + +inherit autotools pkgconfig update-alternatives + +ALTERNATIVE_NAME = "x-session-manager" +ALTERNATIVE_LINK = "${bindir}/x-session-manager" +ALTERNATIVE_PATH = "${bindir}/matchbox-session" +ALTERNATIVE_PRIORITY = "10" + +FILES_${PN} = "${bindir}/* \ + ${datadir}/matchbox \ + ${sysconfdir}/matchbox \ + ${datadir}/themes/blondie/matchbox \ + ${datadir}/themes/Default/matchbox \ + ${datadir}/themes/MBOpus/matchbox" + +EXTRA_OECONF = " --enable-startup-notification \ + --disable-xrm \ + --enable-expat \ + --with-expat-lib=${STAGING_LIBDIR} \ + --with-expat-includes=${STAGING_INCDIR}" + +do_install_prepend() { + install ${WORKDIR}/kbdconfig ${S}/data/kbdconfig +} diff --git a/meta/recipes-graphics/matchbox-wm/matchbox-wm_svn.bb b/meta/recipes-graphics/matchbox-wm/matchbox-wm_svn.bb deleted file mode 100644 index d215171768..0000000000 --- a/meta/recipes-graphics/matchbox-wm/matchbox-wm_svn.bb +++ /dev/null @@ -1,44 +0,0 @@ -DESCRIPTION = "Matchbox window manager" -HOMEPAGE = "http://matchbox-project.org" -BUGTRACKER = "http://bugzilla.openedhand.com/" - -LICENSE = "GPLv2+" -LIC_FILES_CHKSUM = "file://src/wm.h;endline=21;md5=a7e844465edbcf79c282369f93caa835 \ - file://src/main.c;endline=21;md5=3e5d9f832b527b0d72dbe8e3c4c60b95 \ - file://src/wm.c;endline=21;md5=8dc9d24477d87ef5dfbc2e4927146aab" - -SECTION = "x11/wm" -DEPENDS = "libmatchbox virtual/libx11 libxext libxrender startup-notification expat gconf" - -PV = "1.2+svnr${SRCPV}" -PR = "r4" - -SRC_URI = "svn://svn.o-hand.com/repos/matchbox/trunk;module=matchbox-window-manager;proto=http \ - file://configure_fix.patch;patch=1;maxrev=1818 \ - file://kbdconfig" - -S = "${WORKDIR}/matchbox-window-manager" - -inherit autotools pkgconfig update-alternatives - -ALTERNATIVE_NAME = "x-session-manager" -ALTERNATIVE_LINK = "${bindir}/x-session-manager" -ALTERNATIVE_PATH = "${bindir}/matchbox-session" -ALTERNATIVE_PRIORITY = "10" - -FILES_${PN} = "${bindir}/* \ - ${datadir}/matchbox \ - ${sysconfdir}/matchbox \ - ${datadir}/themes/blondie/matchbox \ - ${datadir}/themes/Default/matchbox \ - ${datadir}/themes/MBOpus/matchbox" - -EXTRA_OECONF = " --enable-startup-notification \ - --disable-xrm \ - --enable-expat \ - --with-expat-lib=${STAGING_LIBDIR} \ - --with-expat-includes=${STAGING_INCDIR}" - -do_install_prepend() { - install ${WORKDIR}/kbdconfig ${S}/data/kbdconfig -} diff --git a/meta/recipes-sato/matchbox-config-gtk/matchbox-config-gtk_git.bb b/meta/recipes-sato/matchbox-config-gtk/matchbox-config-gtk_git.bb new file mode 100644 index 0000000000..9f4e4d3e01 --- /dev/null +++ b/meta/recipes-sato/matchbox-config-gtk/matchbox-config-gtk_git.bb @@ -0,0 +1,21 @@ +DESCRIPTION = "Matchbox GTK+ theme configuration application." +HOMEPAGE = "http://matchbox-project.org" +BUGTRACKER = "http://bugzilla.openedhand.com/" + +LICENSE = "GPLv2+" +LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \ + file://appearance/mb-appearance.c;endline=25;md5=ea92333cf8a6802639d62d874c114a28" + +DEPENDS = "gconf gtk+" +RDEPENDS_${PN} = "settings-daemon" + +PV = "0.0+git${SRCPV}" +PR = "r0" + +S = "${WORKDIR}/git" + +SRC_URI = "git://git.pokylinux.org/${PN};protocol=git \ + file://no-handed.patch;patch=1;pnum=0" + +inherit autotools pkgconfig + diff --git a/meta/recipes-sato/matchbox-config-gtk/matchbox-config-gtk_svn.bb b/meta/recipes-sato/matchbox-config-gtk/matchbox-config-gtk_svn.bb deleted file mode 100644 index fce21a3a25..0000000000 --- a/meta/recipes-sato/matchbox-config-gtk/matchbox-config-gtk_svn.bb +++ /dev/null @@ -1,21 +0,0 @@ -DESCRIPTION = "Matchbox GTK+ theme configuration application." -HOMEPAGE = "http://matchbox-project.org" -BUGTRACKER = "http://bugzilla.openedhand.com/" - -LICENSE = "GPLv2+" -LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \ - file://appearance/mb-appearance.c;endline=25;md5=ea92333cf8a6802639d62d874c114a28" - -DEPENDS = "gconf gtk+" -RDEPENDS_${PN} = "settings-daemon" - -PV = "0.0+svnr${SRCPV}" -PR = "r1" - -S = "${WORKDIR}/${PN}" - -SRC_URI = "svn://svn.o-hand.com/repos/matchbox/trunk;module=${PN};proto=http \ - file://no-handed.patch;patch=1;pnum=0" - -inherit autotools pkgconfig - diff --git a/meta/recipes-sato/matchbox-desktop/matchbox-desktop_git.bb b/meta/recipes-sato/matchbox-desktop/matchbox-desktop_git.bb new file mode 100644 index 0000000000..09f79138ca --- /dev/null +++ b/meta/recipes-sato/matchbox-desktop/matchbox-desktop_git.bb @@ -0,0 +1,23 @@ +DESCRIPTION = "Matchbox Window Manager Desktop" +HOMEPAGE = "http://matchbox-project.org/" +BUGTRACKER = "http://bugzilla.openedhand.com/" + +LICENSE = "GPLv2+ & LGPLv2+" +LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \ + file://libtaku/eggsequence.h;endline=20;md5=b91f68f7642a1459fa1f4c9df94a8f15 \ + file://src/desktop.c;endline=20;md5=36c9bf295e6007f3423095f405af5a2d \ + file://src/main.c;endline=19;md5=2044244f97a195c25b7dc602ac7e9a00" + +DEPENDS = "gtk+ startup-notification dbus" +SECTION = "x11/wm" +PV = "2.0+git${SRCPV}" +PR = "r0" + +SRC_URI = "git://git.pokylinux.org/${PN}-2;protocol=git \ + file://dso_linking_change_build_fix.patch" + +EXTRA_OECONF = "--enable-startup-notification --with-dbus" + +S = "${WORKDIR}/git" + +inherit autotools pkgconfig diff --git a/meta/recipes-sato/matchbox-desktop/matchbox-desktop_svn.bb b/meta/recipes-sato/matchbox-desktop/matchbox-desktop_svn.bb deleted file mode 100644 index bed82acee6..0000000000 --- a/meta/recipes-sato/matchbox-desktop/matchbox-desktop_svn.bb +++ /dev/null @@ -1,23 +0,0 @@ -DESCRIPTION = "Matchbox Window Manager Desktop" -HOMEPAGE = "http://matchbox-project.org/" -BUGTRACKER = "http://bugzilla.openedhand.com/" - -LICENSE = "GPLv2+ & LGPLv2+" -LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \ - file://libtaku/eggsequence.h;endline=20;md5=b91f68f7642a1459fa1f4c9df94a8f15 \ - file://src/desktop.c;endline=20;md5=36c9bf295e6007f3423095f405af5a2d \ - file://src/main.c;endline=19;md5=2044244f97a195c25b7dc602ac7e9a00" - -DEPENDS = "gtk+ startup-notification dbus" -SECTION = "x11/wm" -PV = "2.0+svnr${SRCPV}" -PR = "r1" - -SRC_URI = "svn://svn.o-hand.com/repos/matchbox/trunk;module=${PN}-2;proto=http \ - file://dso_linking_change_build_fix.patch" - -EXTRA_OECONF = "--enable-startup-notification --with-dbus" - -S = "${WORKDIR}/${PN}-2" - -inherit autotools pkgconfig diff --git a/meta/recipes-sato/matchbox-keyboard/matchbox-keyboard_git.bb b/meta/recipes-sato/matchbox-keyboard/matchbox-keyboard_git.bb new file mode 100644 index 0000000000..245f999335 --- /dev/null +++ b/meta/recipes-sato/matchbox-keyboard/matchbox-keyboard_git.bb @@ -0,0 +1,61 @@ +DESCRIPTION = "Matchbox virtual keyboard for X11" +HOMEPAGE = "http://matchbox-project.org" +BUGTRACKER = "http://bugzilla.openedhand.com/" + +LICENSE = "GPLv2+" +LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \ + file://src/matchbox-keyboard.h;endline=20;md5=4ba16ff913ad245dd6d95a6c67f72526 \ + file://applet/applet.c;endline=20;md5=e9201b3efa0a81a160b88d6feb5cf75b" + +DEPENDS = "libfakekey expat libxft gtk+ matchbox-panel-2" +RDEPENDS_${PN} = "formfactor dbus-wait" +SECTION = "x11" +PV = "0.0+git${SRCPV}" +PR = "r0" + +SRC_URI = "git://git.pokylinux.org/${PN};protocol=git \ + file://configure_fix.patch;patch=1;maxrev=1819 \ + file://single-instance.patch;patch=1 \ + file://80matchboxkeyboard.shbg" + +S = "${WORKDIR}/git" + +inherit autotools pkgconfig gettext + +EXTRA_OECONF = "--disable-cairo --enable-gtk-im --enable-applet" + +PACKAGES += "matchbox-keyboard-im matchbox-keyboard-im-dbg \ + matchbox-keyboard-applet matchbox-keyboard-applet-dbg" + +FILES_${PN} = "${bindir}/* \ + ${sysconfdir} \ + ${datadir}/applications \ + ${datadir}/pixmaps \ + ${datadir}/matchbox-keyboard" + +FILES_matchbox-keyboard-im = "${libdir}/gtk-2.0/*/immodules/*.so" +FILES_matchbox-keyboard-im-dbg += "${libdir}/gtk-2.0/*/immodules/.debug" + +FILES_matchbox-keyboard-applet = "${libdir}/matchbox-panel/*.so" +FILES_matchbox-keyboard-applet-dbg += "${libdir}/matchbox-panel/.debug" + +do_install_append () { + install -d ${D}/${sysconfdir}/X11/Xsession.d/ + install -m 755 ${WORKDIR}/80matchboxkeyboard.shbg ${D}/${sysconfdir}/X11/Xsession.d/ +} + +pkg_postinst_matchbox-keyboard-im () { +if [ "x$D" != "x" ]; then + exit 1 +fi + +gtk-query-immodules-2.0 > /etc/gtk-2.0/gtk.immodules +} + +pkg_postrm_matchbox-keyboard-im () { +if [ "x$D" != "x" ]; then + exit 1 +fi + +gtk-query-immodules-2.0 > /etc/gtk-2.0/gtk.immodules +} diff --git a/meta/recipes-sato/matchbox-keyboard/matchbox-keyboard_svn.bb b/meta/recipes-sato/matchbox-keyboard/matchbox-keyboard_svn.bb deleted file mode 100644 index 380e5ba338..0000000000 --- a/meta/recipes-sato/matchbox-keyboard/matchbox-keyboard_svn.bb +++ /dev/null @@ -1,61 +0,0 @@ -DESCRIPTION = "Matchbox virtual keyboard for X11" -HOMEPAGE = "http://matchbox-project.org" -BUGTRACKER = "http://bugzilla.openedhand.com/" - -LICENSE = "GPLv2+" -LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \ - file://src/matchbox-keyboard.h;endline=20;md5=4ba16ff913ad245dd6d95a6c67f72526 \ - file://applet/applet.c;endline=20;md5=e9201b3efa0a81a160b88d6feb5cf75b" - -DEPENDS = "libfakekey expat libxft gtk+ matchbox-panel-2" -RDEPENDS_${PN} = "formfactor dbus-wait" -SECTION = "x11" -PV = "0.0+svnr${SRCPV}" -PR = "r5" - -SRC_URI = "svn://svn.o-hand.com/repos/matchbox/trunk;module=${PN};proto=http \ - file://configure_fix.patch;patch=1;maxrev=1819 \ - file://single-instance.patch;patch=1 \ - file://80matchboxkeyboard.shbg" - -S = "${WORKDIR}/${PN}" - -inherit autotools pkgconfig gettext - -EXTRA_OECONF = "--disable-cairo --enable-gtk-im --enable-applet" - -PACKAGES += "matchbox-keyboard-im matchbox-keyboard-im-dbg \ - matchbox-keyboard-applet matchbox-keyboard-applet-dbg" - -FILES_${PN} = "${bindir}/* \ - ${sysconfdir} \ - ${datadir}/applications \ - ${datadir}/pixmaps \ - ${datadir}/matchbox-keyboard" - -FILES_matchbox-keyboard-im = "${libdir}/gtk-2.0/*/immodules/*.so" -FILES_matchbox-keyboard-im-dbg += "${libdir}/gtk-2.0/*/immodules/.debug" - -FILES_matchbox-keyboard-applet = "${libdir}/matchbox-panel/*.so" -FILES_matchbox-keyboard-applet-dbg += "${libdir}/matchbox-panel/.debug" - -do_install_append () { - install -d ${D}/${sysconfdir}/X11/Xsession.d/ - install -m 755 ${WORKDIR}/80matchboxkeyboard.shbg ${D}/${sysconfdir}/X11/Xsession.d/ -} - -pkg_postinst_matchbox-keyboard-im () { -if [ "x$D" != "x" ]; then - exit 1 -fi - -gtk-query-immodules-2.0 > /etc/gtk-2.0/gtk.immodules -} - -pkg_postrm_matchbox-keyboard-im () { -if [ "x$D" != "x" ]; then - exit 1 -fi - -gtk-query-immodules-2.0 > /etc/gtk-2.0/gtk.immodules -} diff --git a/meta/recipes-sato/matchbox-panel-2/matchbox-panel-2_git.bb b/meta/recipes-sato/matchbox-panel-2/matchbox-panel-2_git.bb new file mode 100644 index 0000000000..256b5a22da --- /dev/null +++ b/meta/recipes-sato/matchbox-panel-2/matchbox-panel-2_git.bb @@ -0,0 +1,36 @@ +DESCRIPTION = "A simple GTK+ based panel for handheld devices." +HOMEPAGE = "http://matchbox-project.org" +BUGTRACKER = "http://bugzilla.openedhand.com/" + +LICENSE = "GPLv2+" +LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \ + file://matchbox-panel/mb-panel.h;endline=10;md5=0b7db28f4b6863fb853d0467e590019a \ + file://applets/startup/startup.c;endline=22;md5=b0a64fbef3097d79f8264e6907a98f03" + +PRIORITY = "optional" +DEPENDS = "gtk+ startup-notification dbus dbus-glib" +DEPENDS += " ${@base_contains("MACHINE_FEATURES", "acpi", "libacpi", "",d)}" +DEPENDS += " ${@base_contains("MACHINE_FEATURES", "apm", "apmd", "",d)}" + +PV = "0.0+git${SRCPV}" +PR = "r0" + +RPROVIDES_${PN} = "matchbox-panel" +RREPLACES_${PN} = "matchbox-panel" +RCONFLICTS_${PN} = "matchbox-panel" + +SRC_URI = "git://git.pokylinux.org/${PN};protocol=git \ + file://startup_fix.diff;patch=1" + +EXTRA_OECONF = "--enable-startup-notification --enable-dbus" +EXTRA_OECONF += " ${@base_contains("MACHINE_FEATURES", "acpi", "--with-battery=acpi", "",d)}" +EXTRA_OECONF += " ${@base_contains("MACHINE_FEATURES", "apm", "--with-battery=apm", "",d)}" + +S = "${WORKDIR}/git" + +FILES_${PN} += "${libdir}/matchbox-panel/*.so \ + ${datadir}/matchbox-panel/brightness/*.png \ + ${datadir}/matchbox-panel/startup/*.png " +FILES_${PN}-dbg += "${libdir}/matchbox-panel/.debug" + +inherit autotools pkgconfig diff --git a/meta/recipes-sato/matchbox-panel-2/matchbox-panel-2_svn.bb b/meta/recipes-sato/matchbox-panel-2/matchbox-panel-2_svn.bb deleted file mode 100644 index d76fc09dc3..0000000000 --- a/meta/recipes-sato/matchbox-panel-2/matchbox-panel-2_svn.bb +++ /dev/null @@ -1,36 +0,0 @@ -DESCRIPTION = "A simple GTK+ based panel for handheld devices." -HOMEPAGE = "http://matchbox-project.org" -BUGTRACKER = "http://bugzilla.openedhand.com/" - -LICENSE = "GPLv2+" -LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \ - file://matchbox-panel/mb-panel.h;endline=10;md5=0b7db28f4b6863fb853d0467e590019a \ - file://applets/startup/startup.c;endline=22;md5=b0a64fbef3097d79f8264e6907a98f03" - -PRIORITY = "optional" -DEPENDS = "gtk+ startup-notification dbus dbus-glib" -DEPENDS += " ${@base_contains("MACHINE_FEATURES", "acpi", "libacpi", "",d)}" -DEPENDS += " ${@base_contains("MACHINE_FEATURES", "apm", "apmd", "",d)}" - -PV = "0.0+svnr${SRCPV}" -PR = "r7" - -RPROVIDES_${PN} = "matchbox-panel" -RREPLACES_${PN} = "matchbox-panel" -RCONFLICTS_${PN} = "matchbox-panel" - -SRC_URI = "svn://svn.o-hand.com/repos/matchbox/trunk;module=${PN};proto=http \ - file://startup_fix.diff;patch=1" - -EXTRA_OECONF = "--enable-startup-notification --enable-dbus" -EXTRA_OECONF += " ${@base_contains("MACHINE_FEATURES", "acpi", "--with-battery=acpi", "",d)}" -EXTRA_OECONF += " ${@base_contains("MACHINE_FEATURES", "apm", "--with-battery=apm", "",d)}" - -S = "${WORKDIR}/${PN}" - -FILES_${PN} += "${libdir}/matchbox-panel/*.so \ - ${datadir}/matchbox-panel/brightness/*.png \ - ${datadir}/matchbox-panel/startup/*.png " -FILES_${PN}-dbg += "${libdir}/matchbox-panel/.debug" - -inherit autotools pkgconfig diff --git a/meta/recipes-sato/matchbox-stroke/matchbox-stroke_git.bb b/meta/recipes-sato/matchbox-stroke/matchbox-stroke_git.bb new file mode 100644 index 0000000000..8077a56e1c --- /dev/null +++ b/meta/recipes-sato/matchbox-stroke/matchbox-stroke_git.bb @@ -0,0 +1,25 @@ +DESCRIPTION = "Matchbox stroke recogniser" +HOMEPAGE = "http://matchbox-project.org" +BUGTRACKER = "http://bugzilla.openedhand.com/" + +LICENSE = "GPLv2" +LIC_FILES_CHKSUM = "file://src/matchbox-stroke.h;endline=12;md5=8ed5c5bbec2321fbf5d31bdd55af03aa" + +DEPENDS = "libfakekey expat libxft" +SECTION = "x11/wm" +PV = "0.0+git${SRCPV}" +PR = "r0" + +SRC_URI = "git://git.pokylinux.org/${PN};protocol=git \ + file://single-instance.patch;patch=1 \ + file://configure_fix.patch;patch=1;maxrev=1819 \ + file://dso_linking_change_build_fix.patch " + +S = "${WORKDIR}/git" + +inherit autotools pkgconfig gettext + +FILES_${PN} = "${bindir}/* \ + ${datadir}/applications \ + ${datadir}/pixmaps \ + ${datadir}/matchbox-stroke" diff --git a/meta/recipes-sato/matchbox-stroke/matchbox-stroke_svn.bb b/meta/recipes-sato/matchbox-stroke/matchbox-stroke_svn.bb deleted file mode 100644 index de675c2b9b..0000000000 --- a/meta/recipes-sato/matchbox-stroke/matchbox-stroke_svn.bb +++ /dev/null @@ -1,25 +0,0 @@ -DESCRIPTION = "Matchbox stroke recogniser" -HOMEPAGE = "http://matchbox-project.org" -BUGTRACKER = "http://bugzilla.openedhand.com/" - -LICENSE = "GPLv2" -LIC_FILES_CHKSUM = "file://src/matchbox-stroke.h;endline=12;md5=8ed5c5bbec2321fbf5d31bdd55af03aa" - -DEPENDS = "libfakekey expat libxft" -SECTION = "x11/wm" -PV = "0.0+svnr${SRCPV}" -PR = "r1" - -SRC_URI = "svn://svn.o-hand.com/repos/matchbox/trunk;module=${PN};proto=http \ - file://single-instance.patch;patch=1 \ - file://configure_fix.patch;patch=1;maxrev=1819 \ - file://dso_linking_change_build_fix.patch " - -S = "${WORKDIR}/${PN}" - -inherit autotools pkgconfig gettext - -FILES_${PN} = "${bindir}/* \ - ${datadir}/applications \ - ${datadir}/pixmaps \ - ${datadir}/matchbox-stroke" diff --git a/meta/recipes-sato/matchbox-terminal/matchbox-terminal_git.bb b/meta/recipes-sato/matchbox-terminal/matchbox-terminal_git.bb new file mode 100644 index 0000000000..c26c33861f --- /dev/null +++ b/meta/recipes-sato/matchbox-terminal/matchbox-terminal_git.bb @@ -0,0 +1,18 @@ +DESCRIPTION = "Matchbox Terminal" +HOMEPAGE = "http://www.matchbox-project.org/" +BUGTRACKER = "http://bugzilla.openedhand.com/" + +LICENSE = "GPLv2+" +LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \ + file://main.c;endline=20;md5=96e39176d9e355639a0b8b1c7a840820" + +DEPENDS = "gtk+ vte" +SECTION = "x11/utils" +PV = "0.0+git${SRCPV}" +PR = "r0" + +SRC_URI = "git://git.pokylinux.org/${PN};protocol=git" + +S = "${WORKDIR}/git" + +inherit autotools pkgconfig diff --git a/meta/recipes-sato/matchbox-terminal/matchbox-terminal_svn.bb b/meta/recipes-sato/matchbox-terminal/matchbox-terminal_svn.bb deleted file mode 100644 index f06d80cab0..0000000000 --- a/meta/recipes-sato/matchbox-terminal/matchbox-terminal_svn.bb +++ /dev/null @@ -1,18 +0,0 @@ -DESCRIPTION = "Matchbox Terminal" -HOMEPAGE = "http://www.matchbox-project.org/" -BUGTRACKER = "http://bugzilla.openedhand.com/" - -LICENSE = "GPLv2+" -LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \ - file://main.c;endline=20;md5=96e39176d9e355639a0b8b1c7a840820" - -DEPENDS = "gtk+ vte" -SECTION = "x11/utils" -PV = "0.0+svnr${SRCPV}" -PR = "r0" - -SRC_URI = "svn://svn.o-hand.com/repos/matchbox/trunk;module=${PN};proto=http" - -S = "${WORKDIR}/${PN}" - -inherit autotools pkgconfig diff --git a/meta/recipes-sato/settings-daemon/settings-daemon_git.bb b/meta/recipes-sato/settings-daemon/settings-daemon_git.bb new file mode 100644 index 0000000000..f7dc86fec9 --- /dev/null +++ b/meta/recipes-sato/settings-daemon/settings-daemon_git.bb @@ -0,0 +1,27 @@ +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+git${SRCPV}" + +PR = "r0" + +SRC_URI = "git://git.pokylinux.org/xsettings-daemon;protocol=git \ + file://addsoundkeys.patch;apply=yes \ + file://70settings-daemon.sh \ + file://dso_linking_change_build_fix.patch" + +S = "${WORKDIR}/git" + +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/ +} diff --git a/meta/recipes-sato/settings-daemon/settings-daemon_svn.bb b/meta/recipes-sato/settings-daemon/settings-daemon_svn.bb deleted file mode 100644 index 4f798b85b0..0000000000 --- a/meta/recipes-sato/settings-daemon/settings-daemon_svn.bb +++ /dev/null @@ -1,27 +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${SRCPV}" - -PR = "r4" - -SRC_URI = "svn://svn.o-hand.com/repos/matchbox/trunk;module=${PN};proto=http \ - file://addsoundkeys.patch;apply=yes \ - file://70settings-daemon.sh \ - file://dso_linking_change_build_fix.patch" - -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/ -} -- cgit 1.2.3-korg