diff options
Diffstat (limited to 'recipes/efl1')
-rw-r--r-- | recipes/efl1/e-wm-illume-dict-pl_git.bb | 15 | ||||
-rw-r--r-- | recipes/efl1/illume-keyboard-arabic_git.bb | 11 | ||||
-rw-r--r-- | recipes/efl1/illume-keyboard-browse_git.bb | 19 | ||||
-rw-r--r-- | recipes/efl1/illume-keyboard-danish_git.bb | 11 | ||||
-rw-r--r-- | recipes/efl1/illume-keyboard-default-alt_git.bb | 11 | ||||
-rw-r--r-- | recipes/efl1/illume-keyboard-dutch_git.bb | 21 | ||||
-rw-r--r-- | recipes/efl1/illume-keyboard-dvorak_git.bb | 11 | ||||
-rw-r--r-- | recipes/efl1/illume-keyboard-french_git.bb | 10 | ||||
-rw-r--r-- | recipes/efl1/illume-keyboard-german_git.bb | 11 | ||||
-rw-r--r-- | recipes/efl1/illume-keyboard-hebrew_git.bb | 11 | ||||
-rw-r--r-- | recipes/efl1/illume-keyboard-numeric-alt_git.bb | 18 | ||||
-rw-r--r-- | recipes/efl1/illume-keyboard-russian-terminal_git.bb | 9 | ||||
-rw-r--r-- | recipes/efl1/illume-keyboard-russian_git.bb | 11 | ||||
-rw-r--r-- | recipes/efl1/illume-keyboard.inc | 14 |
14 files changed, 183 insertions, 0 deletions
diff --git a/recipes/efl1/e-wm-illume-dict-pl_git.bb b/recipes/efl1/e-wm-illume-dict-pl_git.bb new file mode 100644 index 0000000000..a5cf1938c4 --- /dev/null +++ b/recipes/efl1/e-wm-illume-dict-pl_git.bb @@ -0,0 +1,15 @@ +DESCRIPTION = "Polish dictionary for Illume keyboard" +SECTION = "x11/data" +PV = "1.0-gitr${SRCREV}" +PR = "r0" + +SRC_URI = "git://git.shr-project.org/repo/shr-themes.git;protocol=http;branch=master" + +S = "${WORKDIR}/git/e-wm/${PN}" + +FILES_${PN} = "${libdir}/enlightenment/modules/illume/dicts/Polish.dic" + +do_install() { + install -d ${D}${libdir}/enlightenment/modules/illume/dicts + install -m 0644 ${S}/Polish.dic ${D}${libdir}/enlightenment/modules/illume/dicts/Polish.dic +} diff --git a/recipes/efl1/illume-keyboard-arabic_git.bb b/recipes/efl1/illume-keyboard-arabic_git.bb new file mode 100644 index 0000000000..41ea9e1cd4 --- /dev/null +++ b/recipes/efl1/illume-keyboard-arabic_git.bb @@ -0,0 +1,11 @@ +AUTHOR = "Mohammad Fahmi / Tom Hacohen" +DESCRIPTION = "Illume keyboard with arabic layout" +PV = "0.0-gitr${SRCREV}" +PR = "r0" + +BASEDIR = "arabic" +INSTFILES = "Arabic.kbd Arabic.png" + +require illume-keyboard.inc + + diff --git a/recipes/efl1/illume-keyboard-browse_git.bb b/recipes/efl1/illume-keyboard-browse_git.bb new file mode 100644 index 0000000000..268140c75a --- /dev/null +++ b/recipes/efl1/illume-keyboard-browse_git.bb @@ -0,0 +1,19 @@ +AUTHOR = "Pander" +DESCRIPTION = "Illume keyboard with a layout optimized for browsing" +PV = "0.0-gitr${SRCREV}" +PR = "r0" + +BASEDIR = "browse" +INSTFILES = "\ +Browse.kbd \ +end-browse.png \ +pagedown-browse.png \ +browse.png \ +home-browse.png \ +pageup-browse.png \ +space-browse.png \ +" + +require illume-keyboard.inc + + diff --git a/recipes/efl1/illume-keyboard-danish_git.bb b/recipes/efl1/illume-keyboard-danish_git.bb new file mode 100644 index 0000000000..21f8ff954a --- /dev/null +++ b/recipes/efl1/illume-keyboard-danish_git.bb @@ -0,0 +1,11 @@ +AUTHOR = "Esben Damgaard" +DESCRIPTION = "Illume keyboard with danish layout" +PV = "0.0-gitr${SRCREV}" +PR = "r0" + +BASEDIR = "danish" +INSTFILES = "Danish.kbd danish.png" + +require illume-keyboard.inc + + diff --git a/recipes/efl1/illume-keyboard-default-alt_git.bb b/recipes/efl1/illume-keyboard-default-alt_git.bb new file mode 100644 index 0000000000..34c3c299bb --- /dev/null +++ b/recipes/efl1/illume-keyboard-default-alt_git.bb @@ -0,0 +1,11 @@ +AUTHOR = "Pander" +DESCRIPTION = "Illume keyboard with an alternative default layout" +PV = "0.0-gitr${SRCREV}" +PR = "r0" + +BASEDIR = "default-alt" +INSTFILES = "Default-alt.kbd" + +require illume-keyboard.inc + + diff --git a/recipes/efl1/illume-keyboard-dutch_git.bb b/recipes/efl1/illume-keyboard-dutch_git.bb new file mode 100644 index 0000000000..2300ac7101 --- /dev/null +++ b/recipes/efl1/illume-keyboard-dutch_git.bb @@ -0,0 +1,21 @@ +AUTHOR = "Pander" +DESCRIPTION = "Illume keyboard with dutch layout" +PV = "0.0-gitr${SRCREV}" +PR = "r0" + +BASEDIR = "dutch" +INSTFILES = "\ +capslock-negative.png \ +end.png \ +pagedown.png \ +qwerty-dutch-nl.png \ +Terminal-dutch-nl.kbd \ +capslock.png \ +home.png \ +pageup.png \ +space.png \ +" + +require illume-keyboard.inc + + diff --git a/recipes/efl1/illume-keyboard-dvorak_git.bb b/recipes/efl1/illume-keyboard-dvorak_git.bb new file mode 100644 index 0000000000..795d78dcc7 --- /dev/null +++ b/recipes/efl1/illume-keyboard-dvorak_git.bb @@ -0,0 +1,11 @@ +AUTHOR = "Gabor Adam TOTH" +DESCRIPTION = "Illume keyboard with dvorak layout" +PV = "0.0-gitr${SRCREV}" +PR = "r0" + +BASEDIR = "dvorak" +INSTFILES = "Dvorak.kbd dvorak.png" + +require illume-keyboard.inc + + diff --git a/recipes/efl1/illume-keyboard-french_git.bb b/recipes/efl1/illume-keyboard-french_git.bb new file mode 100644 index 0000000000..205a6ad991 --- /dev/null +++ b/recipes/efl1/illume-keyboard-french_git.bb @@ -0,0 +1,10 @@ +DESCRIPTION = "Illume keyboard with french layout" +PV = "0.0-gitr${SRCREV}" +PR = "r0" + +BASEDIR = "french" +INSTFILES = "Azerty.kbd Azerty.png" + +require illume-keyboard.inc + + diff --git a/recipes/efl1/illume-keyboard-german_git.bb b/recipes/efl1/illume-keyboard-german_git.bb new file mode 100644 index 0000000000..0252932116 --- /dev/null +++ b/recipes/efl1/illume-keyboard-german_git.bb @@ -0,0 +1,11 @@ +AUTHOR = "Florian Hackenberger" +DESCRIPTION = "Illume keyboard with german layout" +PV = "0.0-gitr${SRCREV}" +PR = "r0" + +BASEDIR = "german" +INSTFILES = "German.kbd German.png" + +require illume-keyboard.inc + + diff --git a/recipes/efl1/illume-keyboard-hebrew_git.bb b/recipes/efl1/illume-keyboard-hebrew_git.bb new file mode 100644 index 0000000000..8d408b4a91 --- /dev/null +++ b/recipes/efl1/illume-keyboard-hebrew_git.bb @@ -0,0 +1,11 @@ +AUTHOR = "Tom Hacohen" +DESCRIPTION = "Illume keyboard with hebrew layout" +PV = "0.0-gitr${SRCREV}" +PR = "r0" + +BASEDIR = "hebrew" +INSTFILES = "Hebrew.kbd Alpha-hebrew-il.png" + +require illume-keyboard.inc + + diff --git a/recipes/efl1/illume-keyboard-numeric-alt_git.bb b/recipes/efl1/illume-keyboard-numeric-alt_git.bb new file mode 100644 index 0000000000..f2d2487386 --- /dev/null +++ b/recipes/efl1/illume-keyboard-numeric-alt_git.bb @@ -0,0 +1,18 @@ +AUTHOR = "Pander" +DESCRIPTION = "Illume keyboard with an alternative numeric layout" +PV = "0.0-gitr${SRCREV}" +PR = "r0" + +BASEDIR = "numeric-alt" +INSTFILES = "\ +end-alt.png \ +home-alt.png \ +Numbers-alt.kbd \ +numeric-alt.png \ +pagedown-alt.png \ +pageup-alt.png \ +" + +require illume-keyboard.inc + + diff --git a/recipes/efl1/illume-keyboard-russian-terminal_git.bb b/recipes/efl1/illume-keyboard-russian-terminal_git.bb new file mode 100644 index 0000000000..f0a4508d98 --- /dev/null +++ b/recipes/efl1/illume-keyboard-russian-terminal_git.bb @@ -0,0 +1,9 @@ +AUTHOR = "lucky" +DESCRIPTION = "Illume keyboard with russian layout for the Terminal" +PV = "0.0-gitr${SRCREV}" +PR = "r0" + +BASEDIR = "russian-terminal" +INSTFILES = "Terminal_Russian.kbd Terminal-russian-ru.png" + +require illume-keyboard.inc diff --git a/recipes/efl1/illume-keyboard-russian_git.bb b/recipes/efl1/illume-keyboard-russian_git.bb new file mode 100644 index 0000000000..517956bb2b --- /dev/null +++ b/recipes/efl1/illume-keyboard-russian_git.bb @@ -0,0 +1,11 @@ +AUTHOR = "lucky" +DESCRIPTION = "Illume keyboard with russian layout" +PV = "0.0-gitr${SRCREV}" +PR = "r0" + +BASEDIR = "russian" +INSTFILES = "X8_Russian.kbd X8-russian-ru.png" + +require illume-keyboard.inc + + diff --git a/recipes/efl1/illume-keyboard.inc b/recipes/efl1/illume-keyboard.inc new file mode 100644 index 0000000000..4003352cc1 --- /dev/null +++ b/recipes/efl1/illume-keyboard.inc @@ -0,0 +1,14 @@ +SECTION = "x11/data" + +SRC_URI = "git://git.shr-project.org/repo/illume-keyboards.git;protocol=http;branch=master" +S = "${WORKDIR}/git" + +FILES_${PN} = "${libdir}/enlightenment/modules/illume/keyboards/*" +PACKAGE_ARCH = "all" + +do_install() { + install -d ${D}${libdir}/enlightenment/modules/illume/keyboards + for f in ${INSTFILES}; do + install -m 0644 ${S}/${BASEDIR}/${f} ${D}${libdir}/enlightenment/modules/illume/keyboards/ + done +} |