diff options
author | Frans Meulenbroeks <fransmeulenbroeks@gmail.com> | 2009-03-19 20:56:09 +0100 |
---|---|---|
committer | Frans Meulenbroeks <fransmeulenbroeks@gmail.com> | 2009-03-19 20:56:09 +0100 |
commit | 6a21d65d2840c58cfa7cd749a04669d8f7980646 (patch) | |
tree | 00b1aa153b69cda8cf9406c4700fd7730c34d3a5 /recipes/lineak | |
parent | dcfe7349b369a87881cf1fa43085d9e9c5609fcf (diff) | |
parent | 6f854d71c347475d53d5080a5490625345d95d12 (diff) |
Merge branch 'org.openembedded.dev' of git@git.openembedded.net:openembedded into org.openembedded.dev
Diffstat (limited to 'recipes/lineak')
-rw-r--r-- | recipes/lineak/files/add-zaurus-remote-support.patch | 26 | ||||
-rw-r--r-- | recipes/lineak/lineak_0.8.3.bb | 22 |
2 files changed, 48 insertions, 0 deletions
diff --git a/recipes/lineak/files/add-zaurus-remote-support.patch b/recipes/lineak/files/add-zaurus-remote-support.patch new file mode 100644 index 0000000000..a5cfe9f474 --- /dev/null +++ b/recipes/lineak/files/add-zaurus-remote-support.patch @@ -0,0 +1,26 @@ +--- lineakd-0.8.3/lineakd/lineakkb.def 2005-03-02 04:15:39.000000000 -0800 ++++ lineakd-0.8.3/lineakd/lineakkb.def.new 2005-07-14 20:50:40.000000000 -0700 +@@ -1166,6 +1166,23 @@ + + #### END CodeGen Keyboards #### + ++#### Sharp Zaurus Remotes #### ++ ++[CE-RH2] ++ brandname = "Sharp" ++ modelname = "Sharp CE-RH2" ++ [KEYS] ++ AudioPlay|Pause = 72 ++ AudioRaiseVolume = 126 ++ AudioLowerVolume = 127 ++ AudioMute = 128 ++ AudioStop = 76 ++ AudioPrev = 124 ++ AudioNext = 116 ++ [END KEYS] ++[END CE-RH2] ++ ++#### END Sharp Zaurus Remotes #### + + #### Compaq keyboards #### + diff --git a/recipes/lineak/lineak_0.8.3.bb b/recipes/lineak/lineak_0.8.3.bb new file mode 100644 index 0000000000..d26ef7bb56 --- /dev/null +++ b/recipes/lineak/lineak_0.8.3.bb @@ -0,0 +1,22 @@ +DESCRIPTION = "lineakd" +SECTION = "gpe/multimedia" +HOMEPAGE = "http://lineak.sourceforge.net" +LICENSE = "GPLv2" +DEPENDS = "virtual/libx11 libxext" +PR = "r0" + +SRC_URI = "${SOURCEFORGE_MIRROR}/lineak/lineakd-${PV}.tar.gz \ + file://add-zaurus-remote-support.patch;patch=1" +S = "${WORKDIR}/lineakd-${PV}" + +inherit autotools + +do_install () { + oe_runmake 'mandir=${D}/usr/share/man' 'pkglibdir=${D}/usr/lib' 'sysconfdir=${D}/etc' 'DESTDIR=${D}' install +} + +PACKAGES += "${PN}-lib" + +FILES_${PN}-lib += " \ + ${libdir}/liblineak*" + |