* [STABLE][PATCH] lirc: update to 0.8.5
@ 2009-06-30 16:38 Koen Kooi
2009-06-30 17:43 ` Tom Rini
0 siblings, 1 reply; 3+ messages in thread
From: Koen Kooi @ 2009-06-30 16:38 UTC (permalink / raw)
To: openembedded-devel; +Cc: Koen Kooi
From: Koen Kooi <koen@openembedded.org>
Signed-off-by: Koen Kooi <koen@openembedded.org>
---
conf/checksums.ini | 8 ++++
recipes/lirc/lirc-modules_0.8.5.bb | 30 ++++++++++++++++
recipes/lirc/lirc_0.8.5.bb | 67 ++++++++++++++++++++++++++++++++++++
3 files changed, 105 insertions(+), 0 deletions(-)
create mode 100644 recipes/lirc/lirc-modules_0.8.5.bb
create mode 100644 recipes/lirc/lirc_0.8.5.bb
diff --git a/conf/checksums.ini b/conf/checksums.ini
index 066b442..bb1224c 100644
--- a/conf/checksums.ini
+++ b/conf/checksums.ini
@@ -15150,6 +15150,10 @@ sha256=8bc1c6cfc6a9c312c8f5b8cc79b501e26b438c96a2d245f42e50bfb353617716
md5=1101c44d542807a4f9f5e33349b5bf56
sha256=d6e68935e69c82bba091cb102bbc4b63428eb8deb94c7d00e14ea3b673e10712
+[http://downloads.sourceforge.net/lirc/lirc-0.8.5.tar.gz]
+md5=a9e44df2adbd71be586e0df6304605cc
+sha256=ab5752e9af2df5f4cd2bd6d4f13872fbb519d7fa1bd3f187cc14dcb163440234
+
[http://lisa-home.sourceforge.net/src/lisa-0.2.2.tar.bz2]
md5=cba116a4880f77205e0813d93bf14310
sha256=986a923a5247468db1d2a03e93268f4025ae5dc27e911dafc7b37e6a802122db
@@ -17094,6 +17098,10 @@ sha256=e42d3b3f30de0c1ad0a86aa039b35cf2bf64c7f64c29ee333cbf934784639973
md5=0e942f22864e601406a994420231075b
sha256=28e76af491ea3696885e4558ae2f5628a4b9ebdbefc2f1d9cf1b35db2813e497
+[ftp://ftp.netperf.org/netperf/netperf-2.4.4.tar.bz2]
+md5=0e942f22864e601406a994420231075b
+sha256=28e76af491ea3696885e4558ae2f5628a4b9ebdbefc2f1d9cf1b35db2813e497
+
[ftp://ftp.debian.org/debian/pool/non-free/n/netperf/netperf_2.3.orig.tar.gz]
md5=b50e49d5f0d3780438af0027a182b997
sha256=0578f4fafb309adf3413c9f56076b1b16476cb71e83c02ff7efafad172d91adb
diff --git a/recipes/lirc/lirc-modules_0.8.5.bb b/recipes/lirc/lirc-modules_0.8.5.bb
new file mode 100644
index 0000000..e077775
--- /dev/null
+++ b/recipes/lirc/lirc-modules_0.8.5.bb
@@ -0,0 +1,30 @@
+DESCRIPTION = "LIRC is a package that allows you to decode and send infra-red signals of many commonly used remote controls. This package contains the lirc kernel modules."
+SECTION = "base"
+PRIORITY = "optional"
+HOMEPAGE = "http://www.lirc.org"
+LICENSE = "GPL"
+DEPENDS = "virtual/kernel fakeroot-native setserial"
+
+SRCDATE=${@bb.data.getVar('PV', d, 1)[9:]}
+
+SRC_URI = "${SOURCEFORGE_MIRROR}/lirc/lirc-${PV}.tar.gz"
+S = "${WORKDIR}/lirc-${PV}"
+
+
+inherit autotools module
+
+require lirc-config.inc
+
+MAKE_TARGETS = "KERNEL_PATH=${STAGING_KERNEL_DIR} MAKE='make V=1' -C drivers"
+
+fakeroot do_install() {
+ oe_runmake -C drivers DESTDIR="${D}" moduledir="/lib/modules/${KERNEL_VERSION}/lirc" install
+ rm -rf ${D}/dev
+}
+
+# this is for distributions that don't use udev
+pkg_postinst_append() {
+if [ ! -c $D/dev/lirc -a ! -f /sbin/udevd ]; then mknod $D/dev/lirc c 61 0; fi
+}
+
+FILES_${PN} = "/lib/modules"
diff --git a/recipes/lirc/lirc_0.8.5.bb b/recipes/lirc/lirc_0.8.5.bb
new file mode 100644
index 0000000..34a40ff
--- /dev/null
+++ b/recipes/lirc/lirc_0.8.5.bb
@@ -0,0 +1,67 @@
+DESCRIPTION = "LIRC is a package that allows you to decode and send infra-red signals of many commonly used remote controls."
+DESCRIPTION_append_lirc = " This package contains the lirc daemon, libraries and tools."
+DESCRIPTION_append_lirc-x = " This package contains lirc tools for X11."
+DESCRIPTION_append_lirc-exec = " This package contains a daemon that runs programs on IR signals."
+DESCRIPTION_append_lirc-remotes = " This package contains some config files for remotes."
+DESCRIPTION_append_lirc-nslu2example = " This package contains a working config for RC5 remotes and a modified NSLU2."
+SECTION = "console/network"
+PRIORITY = "optional"
+HOMEPAGE = "http://www.lirc.org"
+LICENSE = "GPL"
+DEPENDS = "virtual/kernel virtual/libx11 libxau libsm libice"
+DEPENDS_nslu2 = "virtual/kernel lirc-modules"
+RDEPENDS = "lirc-modules"
+RDEPENDS_lirc-x = "lirc"
+RDEPENDS_lirc-exec = "lirc"
+RDEPENDS_lirc-nslu2example = "lirc lirc-exec"
+RRECOMMENDS_lirc = "lirc-exec"
+
+SRC_URI = "${SOURCEFORGE_MIRROR}/lirc/lirc-${PV}.tar.gz \
+ file://lircd.init file://lircmd.init file://lircexec.init"
+SRC_URI_append_nslu2 = " file://lircd.conf_nslu2 file://lircrc_nslu2"
+
+S = "${WORKDIR}/lirc-${PV}"
+
+inherit autotools module-base update-rc.d
+
+INITSCRIPT_PACKAGES = "lirc lirc-exec"
+INITSCRIPT_NAME = "lircd"
+INITSCRIPT_PARAMS = "defaults 20"
+INITSCRIPT_NAME_lirc-exec = "lircexec"
+INITSCRIPT_PARAMS_lirc-exec = "defaults 21"
+
+require lirc-config.inc
+
+EXTRA_OEMAKE = 'SUBDIRS="daemons tools"'
+
+do_stage() {
+ oe_libinstall -so -C tools liblirc_client ${STAGING_LIBDIR}
+ install -d ${STAGING_INCDIR}/lirc/
+ install -m 0644 tools/lirc_client.h ${STAGING_INCDIR}/lirc/
+}
+
+do_install_append() {
+ install -d ${D}${sysconfdir}/init.d
+ install ${WORKDIR}/lircd.init ${D}${sysconfdir}/init.d/lircd
+ install ${WORKDIR}/lircexec.init ${D}${sysconfdir}/init.d/lircexec
+ install -d ${D}${datadir}/lirc/
+ cp -pPR ${S}/remotes ${D}${datadir}/lirc/
+ rm -rf ${D}/dev
+}
+
+do_install_append_nslu2() {
+ install -d ${D}${sysconfdir}
+ install ${WORKDIR}/lircd.conf_nslu2 ${D}${sysconfdir}/lircd.conf
+ install ${WORKDIR}/lircrc_nslu2 ${D}${sysconfdir}/lircrc
+}
+
+PACKAGES =+ "lirc-x lirc-exec lirc-remotes"
+PACKAGES_prepend_nslu2 = "lirc-nslu2example "
+
+FILES_${PN}-dbg += "${bindir}/.debug ${sbindir}/.debug"
+FILES_${PN} = "${bindir} ${sbindir} ${libdir} ${sysconfdir}/init.d"
+FILES_lirc-x = "${bindir}/irxevent ${bindir}/xmode2"
+FILES_lirc-exec = "${bindir}/irexec ${sysconfdir}/init.d/lircexec"
+FILES_lirc-remotes = "${datadir}/lirc/remotes"
+FILES_lirc-nslu2example = "${sysconfdir}/lircd.conf ${sysconfdir}/lircrc"
+CONFFILES_lirc-nslu2example = "${FILES_lirc-nslu2example}"
--
1.6.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [STABLE][PATCH] lirc: update to 0.8.5
2009-06-30 16:38 [STABLE][PATCH] lirc: update to 0.8.5 Koen Kooi
@ 2009-06-30 17:43 ` Tom Rini
2009-06-30 17:50 ` Denys Dmytriyenko
0 siblings, 1 reply; 3+ messages in thread
From: Tom Rini @ 2009-06-30 17:43 UTC (permalink / raw)
To: openembedded-devel; +Cc: Koen Kooi
On Tue, Jun 30, 2009 at 06:38:45PM +0200, Koen Kooi wrote:
> From: Koen Kooi <koen@openembedded.org>
>
>
> Signed-off-by: Koen Kooi <koen@openembedded.org>
Acked-by: Tom Rini <trini@embeddedalley.com>
> ---
> conf/checksums.ini | 8 ++++
> recipes/lirc/lirc-modules_0.8.5.bb | 30 ++++++++++++++++
> recipes/lirc/lirc_0.8.5.bb | 67 ++++++++++++++++++++++++++++++++++++
> 3 files changed, 105 insertions(+), 0 deletions(-)
> create mode 100644 recipes/lirc/lirc-modules_0.8.5.bb
> create mode 100644 recipes/lirc/lirc_0.8.5.bb
>
> diff --git a/conf/checksums.ini b/conf/checksums.ini
> index 066b442..bb1224c 100644
> --- a/conf/checksums.ini
> +++ b/conf/checksums.ini
> @@ -15150,6 +15150,10 @@ sha256=8bc1c6cfc6a9c312c8f5b8cc79b501e26b438c96a2d245f42e50bfb353617716
> md5=1101c44d542807a4f9f5e33349b5bf56
> sha256=d6e68935e69c82bba091cb102bbc4b63428eb8deb94c7d00e14ea3b673e10712
>
> +[http://downloads.sourceforge.net/lirc/lirc-0.8.5.tar.gz]
> +md5=a9e44df2adbd71be586e0df6304605cc
> +sha256=ab5752e9af2df5f4cd2bd6d4f13872fbb519d7fa1bd3f187cc14dcb163440234
> +
> [http://lisa-home.sourceforge.net/src/lisa-0.2.2.tar.bz2]
> md5=cba116a4880f77205e0813d93bf14310
> sha256=986a923a5247468db1d2a03e93268f4025ae5dc27e911dafc7b37e6a802122db
> @@ -17094,6 +17098,10 @@ sha256=e42d3b3f30de0c1ad0a86aa039b35cf2bf64c7f64c29ee333cbf934784639973
> md5=0e942f22864e601406a994420231075b
> sha256=28e76af491ea3696885e4558ae2f5628a4b9ebdbefc2f1d9cf1b35db2813e497
>
> +[ftp://ftp.netperf.org/netperf/netperf-2.4.4.tar.bz2]
> +md5=0e942f22864e601406a994420231075b
> +sha256=28e76af491ea3696885e4558ae2f5628a4b9ebdbefc2f1d9cf1b35db2813e497
> +
> [ftp://ftp.debian.org/debian/pool/non-free/n/netperf/netperf_2.3.orig.tar.gz]
> md5=b50e49d5f0d3780438af0027a182b997
> sha256=0578f4fafb309adf3413c9f56076b1b16476cb71e83c02ff7efafad172d91adb
> diff --git a/recipes/lirc/lirc-modules_0.8.5.bb b/recipes/lirc/lirc-modules_0.8.5.bb
> new file mode 100644
> index 0000000..e077775
> --- /dev/null
> +++ b/recipes/lirc/lirc-modules_0.8.5.bb
> @@ -0,0 +1,30 @@
> +DESCRIPTION = "LIRC is a package that allows you to decode and send infra-red signals of many commonly used remote controls. This package contains the lirc kernel modules."
> +SECTION = "base"
> +PRIORITY = "optional"
> +HOMEPAGE = "http://www.lirc.org"
> +LICENSE = "GPL"
> +DEPENDS = "virtual/kernel fakeroot-native setserial"
> +
> +SRCDATE=${@bb.data.getVar('PV', d, 1)[9:]}
> +
> +SRC_URI = "${SOURCEFORGE_MIRROR}/lirc/lirc-${PV}.tar.gz"
> +S = "${WORKDIR}/lirc-${PV}"
> +
> +
> +inherit autotools module
> +
> +require lirc-config.inc
> +
> +MAKE_TARGETS = "KERNEL_PATH=${STAGING_KERNEL_DIR} MAKE='make V=1' -C drivers"
> +
> +fakeroot do_install() {
> + oe_runmake -C drivers DESTDIR="${D}" moduledir="/lib/modules/${KERNEL_VERSION}/lirc" install
> + rm -rf ${D}/dev
> +}
> +
> +# this is for distributions that don't use udev
> +pkg_postinst_append() {
> +if [ ! -c $D/dev/lirc -a ! -f /sbin/udevd ]; then mknod $D/dev/lirc c 61 0; fi
> +}
> +
> +FILES_${PN} = "/lib/modules"
> diff --git a/recipes/lirc/lirc_0.8.5.bb b/recipes/lirc/lirc_0.8.5.bb
> new file mode 100644
> index 0000000..34a40ff
> --- /dev/null
> +++ b/recipes/lirc/lirc_0.8.5.bb
> @@ -0,0 +1,67 @@
> +DESCRIPTION = "LIRC is a package that allows you to decode and send infra-red signals of many commonly used remote controls."
> +DESCRIPTION_append_lirc = " This package contains the lirc daemon, libraries and tools."
> +DESCRIPTION_append_lirc-x = " This package contains lirc tools for X11."
> +DESCRIPTION_append_lirc-exec = " This package contains a daemon that runs programs on IR signals."
> +DESCRIPTION_append_lirc-remotes = " This package contains some config files for remotes."
> +DESCRIPTION_append_lirc-nslu2example = " This package contains a working config for RC5 remotes and a modified NSLU2."
> +SECTION = "console/network"
> +PRIORITY = "optional"
> +HOMEPAGE = "http://www.lirc.org"
> +LICENSE = "GPL"
> +DEPENDS = "virtual/kernel virtual/libx11 libxau libsm libice"
> +DEPENDS_nslu2 = "virtual/kernel lirc-modules"
> +RDEPENDS = "lirc-modules"
> +RDEPENDS_lirc-x = "lirc"
> +RDEPENDS_lirc-exec = "lirc"
> +RDEPENDS_lirc-nslu2example = "lirc lirc-exec"
> +RRECOMMENDS_lirc = "lirc-exec"
> +
> +SRC_URI = "${SOURCEFORGE_MIRROR}/lirc/lirc-${PV}.tar.gz \
> + file://lircd.init file://lircmd.init file://lircexec.init"
> +SRC_URI_append_nslu2 = " file://lircd.conf_nslu2 file://lircrc_nslu2"
> +
> +S = "${WORKDIR}/lirc-${PV}"
> +
> +inherit autotools module-base update-rc.d
> +
> +INITSCRIPT_PACKAGES = "lirc lirc-exec"
> +INITSCRIPT_NAME = "lircd"
> +INITSCRIPT_PARAMS = "defaults 20"
> +INITSCRIPT_NAME_lirc-exec = "lircexec"
> +INITSCRIPT_PARAMS_lirc-exec = "defaults 21"
> +
> +require lirc-config.inc
> +
> +EXTRA_OEMAKE = 'SUBDIRS="daemons tools"'
> +
> +do_stage() {
> + oe_libinstall -so -C tools liblirc_client ${STAGING_LIBDIR}
> + install -d ${STAGING_INCDIR}/lirc/
> + install -m 0644 tools/lirc_client.h ${STAGING_INCDIR}/lirc/
> +}
> +
> +do_install_append() {
> + install -d ${D}${sysconfdir}/init.d
> + install ${WORKDIR}/lircd.init ${D}${sysconfdir}/init.d/lircd
> + install ${WORKDIR}/lircexec.init ${D}${sysconfdir}/init.d/lircexec
> + install -d ${D}${datadir}/lirc/
> + cp -pPR ${S}/remotes ${D}${datadir}/lirc/
> + rm -rf ${D}/dev
> +}
> +
> +do_install_append_nslu2() {
> + install -d ${D}${sysconfdir}
> + install ${WORKDIR}/lircd.conf_nslu2 ${D}${sysconfdir}/lircd.conf
> + install ${WORKDIR}/lircrc_nslu2 ${D}${sysconfdir}/lircrc
> +}
> +
> +PACKAGES =+ "lirc-x lirc-exec lirc-remotes"
> +PACKAGES_prepend_nslu2 = "lirc-nslu2example "
> +
> +FILES_${PN}-dbg += "${bindir}/.debug ${sbindir}/.debug"
> +FILES_${PN} = "${bindir} ${sbindir} ${libdir} ${sysconfdir}/init.d"
> +FILES_lirc-x = "${bindir}/irxevent ${bindir}/xmode2"
> +FILES_lirc-exec = "${bindir}/irexec ${sysconfdir}/init.d/lircexec"
> +FILES_lirc-remotes = "${datadir}/lirc/remotes"
> +FILES_lirc-nslu2example = "${sysconfdir}/lircd.conf ${sysconfdir}/lircrc"
> +CONFFILES_lirc-nslu2example = "${FILES_lirc-nslu2example}"
> --
> 1.6.1
>
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>
--
Tom Rini
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [STABLE][PATCH] lirc: update to 0.8.5
2009-06-30 17:43 ` Tom Rini
@ 2009-06-30 17:50 ` Denys Dmytriyenko
0 siblings, 0 replies; 3+ messages in thread
From: Denys Dmytriyenko @ 2009-06-30 17:50 UTC (permalink / raw)
To: openembedded-devel
On Tue, Jun 30, 2009 at 10:43:47AM -0700, Tom Rini wrote:
> On Tue, Jun 30, 2009 at 06:38:45PM +0200, Koen Kooi wrote:
>
> > From: Koen Kooi <koen@openembedded.org>
> >
> >
> > Signed-off-by: Koen Kooi <koen@openembedded.org>
>
> Acked-by: Tom Rini <trini@embeddedalley.com>
Acked-by: Denys Dmytriyenko <denis@denix.org>
> > ---
> > conf/checksums.ini | 8 ++++
> > recipes/lirc/lirc-modules_0.8.5.bb | 30 ++++++++++++++++
> > recipes/lirc/lirc_0.8.5.bb | 67 ++++++++++++++++++++++++++++++++++++
> > 3 files changed, 105 insertions(+), 0 deletions(-)
> > create mode 100644 recipes/lirc/lirc-modules_0.8.5.bb
> > create mode 100644 recipes/lirc/lirc_0.8.5.bb
> >
> > diff --git a/conf/checksums.ini b/conf/checksums.ini
> > index 066b442..bb1224c 100644
> > --- a/conf/checksums.ini
> > +++ b/conf/checksums.ini
> > @@ -15150,6 +15150,10 @@ sha256=8bc1c6cfc6a9c312c8f5b8cc79b501e26b438c96a2d245f42e50bfb353617716
> > md5=1101c44d542807a4f9f5e33349b5bf56
> > sha256=d6e68935e69c82bba091cb102bbc4b63428eb8deb94c7d00e14ea3b673e10712
> >
> > +[http://downloads.sourceforge.net/lirc/lirc-0.8.5.tar.gz]
> > +md5=a9e44df2adbd71be586e0df6304605cc
> > +sha256=ab5752e9af2df5f4cd2bd6d4f13872fbb519d7fa1bd3f187cc14dcb163440234
> > +
> > [http://lisa-home.sourceforge.net/src/lisa-0.2.2.tar.bz2]
> > md5=cba116a4880f77205e0813d93bf14310
> > sha256=986a923a5247468db1d2a03e93268f4025ae5dc27e911dafc7b37e6a802122db
> > @@ -17094,6 +17098,10 @@ sha256=e42d3b3f30de0c1ad0a86aa039b35cf2bf64c7f64c29ee333cbf934784639973
> > md5=0e942f22864e601406a994420231075b
> > sha256=28e76af491ea3696885e4558ae2f5628a4b9ebdbefc2f1d9cf1b35db2813e497
> >
> > +[ftp://ftp.netperf.org/netperf/netperf-2.4.4.tar.bz2]
> > +md5=0e942f22864e601406a994420231075b
> > +sha256=28e76af491ea3696885e4558ae2f5628a4b9ebdbefc2f1d9cf1b35db2813e497
> > +
> > [ftp://ftp.debian.org/debian/pool/non-free/n/netperf/netperf_2.3.orig.tar.gz]
> > md5=b50e49d5f0d3780438af0027a182b997
> > sha256=0578f4fafb309adf3413c9f56076b1b16476cb71e83c02ff7efafad172d91adb
> > diff --git a/recipes/lirc/lirc-modules_0.8.5.bb b/recipes/lirc/lirc-modules_0.8.5.bb
> > new file mode 100644
> > index 0000000..e077775
> > --- /dev/null
> > +++ b/recipes/lirc/lirc-modules_0.8.5.bb
> > @@ -0,0 +1,30 @@
> > +DESCRIPTION = "LIRC is a package that allows you to decode and send infra-red signals of many commonly used remote controls. This package contains the lirc kernel modules."
> > +SECTION = "base"
> > +PRIORITY = "optional"
> > +HOMEPAGE = "http://www.lirc.org"
> > +LICENSE = "GPL"
> > +DEPENDS = "virtual/kernel fakeroot-native setserial"
> > +
> > +SRCDATE=${@bb.data.getVar('PV', d, 1)[9:]}
> > +
> > +SRC_URI = "${SOURCEFORGE_MIRROR}/lirc/lirc-${PV}.tar.gz"
> > +S = "${WORKDIR}/lirc-${PV}"
> > +
> > +
> > +inherit autotools module
> > +
> > +require lirc-config.inc
> > +
> > +MAKE_TARGETS = "KERNEL_PATH=${STAGING_KERNEL_DIR} MAKE='make V=1' -C drivers"
> > +
> > +fakeroot do_install() {
> > + oe_runmake -C drivers DESTDIR="${D}" moduledir="/lib/modules/${KERNEL_VERSION}/lirc" install
> > + rm -rf ${D}/dev
> > +}
> > +
> > +# this is for distributions that don't use udev
> > +pkg_postinst_append() {
> > +if [ ! -c $D/dev/lirc -a ! -f /sbin/udevd ]; then mknod $D/dev/lirc c 61 0; fi
> > +}
> > +
> > +FILES_${PN} = "/lib/modules"
> > diff --git a/recipes/lirc/lirc_0.8.5.bb b/recipes/lirc/lirc_0.8.5.bb
> > new file mode 100644
> > index 0000000..34a40ff
> > --- /dev/null
> > +++ b/recipes/lirc/lirc_0.8.5.bb
> > @@ -0,0 +1,67 @@
> > +DESCRIPTION = "LIRC is a package that allows you to decode and send infra-red signals of many commonly used remote controls."
> > +DESCRIPTION_append_lirc = " This package contains the lirc daemon, libraries and tools."
> > +DESCRIPTION_append_lirc-x = " This package contains lirc tools for X11."
> > +DESCRIPTION_append_lirc-exec = " This package contains a daemon that runs programs on IR signals."
> > +DESCRIPTION_append_lirc-remotes = " This package contains some config files for remotes."
> > +DESCRIPTION_append_lirc-nslu2example = " This package contains a working config for RC5 remotes and a modified NSLU2."
> > +SECTION = "console/network"
> > +PRIORITY = "optional"
> > +HOMEPAGE = "http://www.lirc.org"
> > +LICENSE = "GPL"
> > +DEPENDS = "virtual/kernel virtual/libx11 libxau libsm libice"
> > +DEPENDS_nslu2 = "virtual/kernel lirc-modules"
> > +RDEPENDS = "lirc-modules"
> > +RDEPENDS_lirc-x = "lirc"
> > +RDEPENDS_lirc-exec = "lirc"
> > +RDEPENDS_lirc-nslu2example = "lirc lirc-exec"
> > +RRECOMMENDS_lirc = "lirc-exec"
> > +
> > +SRC_URI = "${SOURCEFORGE_MIRROR}/lirc/lirc-${PV}.tar.gz \
> > + file://lircd.init file://lircmd.init file://lircexec.init"
> > +SRC_URI_append_nslu2 = " file://lircd.conf_nslu2 file://lircrc_nslu2"
> > +
> > +S = "${WORKDIR}/lirc-${PV}"
> > +
> > +inherit autotools module-base update-rc.d
> > +
> > +INITSCRIPT_PACKAGES = "lirc lirc-exec"
> > +INITSCRIPT_NAME = "lircd"
> > +INITSCRIPT_PARAMS = "defaults 20"
> > +INITSCRIPT_NAME_lirc-exec = "lircexec"
> > +INITSCRIPT_PARAMS_lirc-exec = "defaults 21"
> > +
> > +require lirc-config.inc
> > +
> > +EXTRA_OEMAKE = 'SUBDIRS="daemons tools"'
> > +
> > +do_stage() {
> > + oe_libinstall -so -C tools liblirc_client ${STAGING_LIBDIR}
> > + install -d ${STAGING_INCDIR}/lirc/
> > + install -m 0644 tools/lirc_client.h ${STAGING_INCDIR}/lirc/
> > +}
> > +
> > +do_install_append() {
> > + install -d ${D}${sysconfdir}/init.d
> > + install ${WORKDIR}/lircd.init ${D}${sysconfdir}/init.d/lircd
> > + install ${WORKDIR}/lircexec.init ${D}${sysconfdir}/init.d/lircexec
> > + install -d ${D}${datadir}/lirc/
> > + cp -pPR ${S}/remotes ${D}${datadir}/lirc/
> > + rm -rf ${D}/dev
> > +}
> > +
> > +do_install_append_nslu2() {
> > + install -d ${D}${sysconfdir}
> > + install ${WORKDIR}/lircd.conf_nslu2 ${D}${sysconfdir}/lircd.conf
> > + install ${WORKDIR}/lircrc_nslu2 ${D}${sysconfdir}/lircrc
> > +}
> > +
> > +PACKAGES =+ "lirc-x lirc-exec lirc-remotes"
> > +PACKAGES_prepend_nslu2 = "lirc-nslu2example "
> > +
> > +FILES_${PN}-dbg += "${bindir}/.debug ${sbindir}/.debug"
> > +FILES_${PN} = "${bindir} ${sbindir} ${libdir} ${sysconfdir}/init.d"
> > +FILES_lirc-x = "${bindir}/irxevent ${bindir}/xmode2"
> > +FILES_lirc-exec = "${bindir}/irexec ${sysconfdir}/init.d/lircexec"
> > +FILES_lirc-remotes = "${datadir}/lirc/remotes"
> > +FILES_lirc-nslu2example = "${sysconfdir}/lircd.conf ${sysconfdir}/lircrc"
> > +CONFFILES_lirc-nslu2example = "${FILES_lirc-nslu2example}"
> > --
> > 1.6.1
> >
> >
> > _______________________________________________
> > Openembedded-devel mailing list
> > Openembedded-devel@lists.openembedded.org
> > http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
> >
>
> --
> Tom Rini
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2009-06-30 18:03 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-06-30 16:38 [STABLE][PATCH] lirc: update to 0.8.5 Koen Kooi
2009-06-30 17:43 ` Tom Rini
2009-06-30 17:50 ` Denys Dmytriyenko
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.