diff options
author | Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com> | 2015-03-25 10:47:45 +0900 |
---|---|---|
committer | Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com> | 2015-03-25 10:47:45 +0900 |
commit | 1c35920d85e424b3f65aa6df1dbde689dd6ec007 (patch) | |
tree | 58b2cacb3674111aad5a4ded694db0cef5cf55f3 /common/recipes-multimedia/libshmeram |
commit BSP v1.8.0
Signed-off-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
Diffstat (limited to 'common/recipes-multimedia/libshmeram')
3 files changed, 68 insertions, 0 deletions
diff --git a/common/recipes-multimedia/libshmeram/libshmeram/configfile-path.patch b/common/recipes-multimedia/libshmeram/libshmeram/configfile-path.patch new file mode 100644 index 0000000..7538469 --- /dev/null +++ b/common/recipes-multimedia/libshmeram/libshmeram/configfile-path.patch @@ -0,0 +1,9 @@ +diff --git a/config_data/Makefile.am b/config_data/Makefile.am +index 540990e..04becd1 100644 +--- a/config_data/Makefile.am ++++ b/config_data/Makefile.am +@@ -1,3 +1,3 @@ + EXTRA_DIST = meram.conf +-configdir = $(prefix)/etc ++configdir = $(sysconfdir) + config_DATA = meram.conf diff --git a/common/recipes-multimedia/libshmeram/libshmeram_0.9.4.bb b/common/recipes-multimedia/libshmeram/libshmeram_0.9.4.bb new file mode 100644 index 0000000..be4cbf0 --- /dev/null +++ b/common/recipes-multimedia/libshmeram/libshmeram_0.9.4.bb @@ -0,0 +1,29 @@ +DESCRIPTION = "library for accessing the SH-Mobile MERAM" +AUTHOR = "Damian Hobson-Garcia <dhobsong@igel.co.jp>" +BUGTRACKER = "" + +SECTION = "libs" +PRIORITY = "optional" + +PR = "r0" + +inherit autotools pkgconfig + +LICENSE = "LGPLv2.0+" +LIC_FILES_CHKSUM = "file://COPYING;md5=3214f080875748938ba060314b4f727d" + +SRCREV = "2d9b1c32e17ddb260d592826a13fd5c8e0bdb763" +SRC_URI = "git://github.com/renesas-devel/libshmeram.git \ + file://configfile-path.patch \ + " +S = "${WORKDIR}/git/" + +DEPENDS = "libuiomux" + +do_configure() { + autoreconf -ivf ${S} + oe_runconf +} + +# install to libshmeram +FILES_${PN} += "${sysconfdir}/*" diff --git a/common/recipes-multimedia/libshmeram/libshmeram_git.bb b/common/recipes-multimedia/libshmeram/libshmeram_git.bb new file mode 100644 index 0000000..2d9873f --- /dev/null +++ b/common/recipes-multimedia/libshmeram/libshmeram_git.bb @@ -0,0 +1,30 @@ +DESCRIPTION = "library for accessing the SH-Mobile MERAM" +AUTHOR = "Damian Hobson-Garcia <dhobsong@igel.co.jp>" +BUGTRACKER = "" + +SECTION = "libs" +PRIORITY = "optional" + +PR = "r1" + +inherit autotools pkgconfig + +LICENSE = "LGPLv2.0+" +LIC_FILES_CHKSUM = "file://COPYING;md5=3214f080875748938ba060314b4f727d" + +SRCREV = "c7d54646cddfc6759ef64a6c22a3ea9e2c61888c" +SRCREV_armadillo800eva = "890bbd50e3a305a2331a4e2016ead968bdf916bb" +SRC_URI = "git://github.com/renesas-devel/libshmeram.git \ + file://configfile-path.patch \ + " +S = "${WORKDIR}/git/" + +DEPENDS = "libuiomux" + +do_configure() { + autoreconf -ivf ${S} + oe_runconf +} + +# install to libshmeram +FILES_${PN} += "${sysconfdir}/*" |