* [PATCH 0/3] Camera recipes
@ 2012-12-14 18:33 Cliff Brake
2012-12-14 18:33 ` [PATCH 1/3] libraw1394: add recipe Cliff Brake
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Cliff Brake @ 2012-12-14 18:33 UTC (permalink / raw)
To: openembedded-devel
Various patches to add support for firewire and USB industrial cameras
[PATCH 1/3] libraw1394: add recipe
[PATCH 2/3] libdc1394: add recipe
[PATCH 3/3] coriander: add recipe
^ permalink raw reply [flat|nested] 7+ messages in thread* [PATCH 1/3] libraw1394: add recipe 2012-12-14 18:33 [PATCH 0/3] Camera recipes Cliff Brake @ 2012-12-14 18:33 ` Cliff Brake 2012-12-14 18:33 ` [PATCH 2/3] libdc1394: " Cliff Brake 2012-12-14 18:33 ` [PATCH 3/3] coriander: " Cliff Brake 2 siblings, 0 replies; 7+ messages in thread From: Cliff Brake @ 2012-12-14 18:33 UTC (permalink / raw) To: openembedded-devel; +Cc: Cliff Brake From: Cliff Brake <cbrake@bec-systems.com> Initial recipe created by Khem Raj Signed-off-by: Cliff Brake <cbrake@bec-systems.com> --- meta-oe/recipes-multimedia/libraw1394/libraw1394_2.0.9.bb | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 meta-oe/recipes-multimedia/libraw1394/libraw1394_2.0.9.bb diff --git a/meta-oe/recipes-multimedia/libraw1394/libraw1394_2.0.9.bb b/meta-oe/recipes-multimedia/libraw1394/libraw1394_2.0.9.bb new file mode 100644 index 0000000..b0b4a53 --- /dev/null +++ b/meta-oe/recipes-multimedia/libraw1394/libraw1394_2.0.9.bb @@ -0,0 +1,11 @@ +DESCRIPTION = "base library for low-level IEEE 1394 accesses" +HOMEPAGE = "https://ieee1394.wiki.kernel.org/index.php/Libraries#libraw1394" +SECTION = "libs" +LICENSE = "LGPL-2.1" +LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=d8045f3b8f929c1cb29a1e3fd737b499" + +SRC_URI = "https://www.kernel.org/pub/linux/libs/ieee1394/${P}.tar.gz" +SRC_URI[md5sum] = "faf6b18a92075d80e45b603f9a659670" +SRC_URI[sha256sum] = "f83268b3f5d37e8d42ae9881c099b55839b70ac0af71549be7ef6af2578e809a" + +inherit autotools -- 1.8.0.2 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH 2/3] libdc1394: add recipe 2012-12-14 18:33 [PATCH 0/3] Camera recipes Cliff Brake 2012-12-14 18:33 ` [PATCH 1/3] libraw1394: add recipe Cliff Brake @ 2012-12-14 18:33 ` Cliff Brake 2012-12-16 18:47 ` Martin Jansa 2012-12-14 18:33 ` [PATCH 3/3] coriander: " Cliff Brake 2 siblings, 1 reply; 7+ messages in thread From: Cliff Brake @ 2012-12-14 18:33 UTC (permalink / raw) To: openembedded-devel; +Cc: Cliff Brake From: Cliff Brake <cbrake@bec-systems.com> Initial recipe created by Khem Raj Signed-off-by: Cliff Brake <cbrake@bec-systems.com> --- .../libdc1394/files/install_examples.patch | 14 ++++++++++++++ .../recipes-multimedia/libdc1394/files/libdc1394.png | 0 meta-oe/recipes-multimedia/libdc1394/libdc1394_git.bb | 18 ++++++++++++++++++ 3 files changed, 32 insertions(+) create mode 100755 meta-oe/recipes-multimedia/libdc1394/files/install_examples.patch create mode 100755 meta-oe/recipes-multimedia/libdc1394/files/libdc1394.png create mode 100755 meta-oe/recipes-multimedia/libdc1394/libdc1394_git.bb diff --git a/meta-oe/recipes-multimedia/libdc1394/files/install_examples.patch b/meta-oe/recipes-multimedia/libdc1394/files/install_examples.patch new file mode 100755 index 0000000..89133ad --- /dev/null +++ b/meta-oe/recipes-multimedia/libdc1394/files/install_examples.patch @@ -0,0 +1,14 @@ +Index: libdc1394/examples/Makefile.am +=================================================================== +--- libdc1394.orig/examples/Makefile.am 2012-06-30 17:50:46.000000000 -0700 ++++ libdc1394/examples/Makefile.am 2012-06-30 19:02:13.822646430 -0700 +@@ -36,8 +36,7 @@ + AM_LDFLAGS = -framework CoreFoundation -framework Carbon + endif + +-noinst_PROGRAMS = $(A) +-bin_PROGRAMS = $(B) ++bin_PROGRAMS = $(A) $(B) + + LDADD = ../dc1394/libdc1394.la + diff --git a/meta-oe/recipes-multimedia/libdc1394/files/libdc1394.png b/meta-oe/recipes-multimedia/libdc1394/files/libdc1394.png new file mode 100755 index 0000000..e69de29 diff --git a/meta-oe/recipes-multimedia/libdc1394/libdc1394_git.bb b/meta-oe/recipes-multimedia/libdc1394/libdc1394_git.bb new file mode 100755 index 0000000..41547d9 --- /dev/null +++ b/meta-oe/recipes-multimedia/libdc1394/libdc1394_git.bb @@ -0,0 +1,18 @@ +DESCRIPTION = "Capture and control API for IIDC compliant cameras" +HOMEPAGE = "http://sourceforge.net/projects/libdc1394/" +SECTION = "libs" +LICENSE = "LGPL-2.0" +LIC_FILES_CHKSUM = "file://COPYING;md5=c848e78d9a4a5cc69906178e4d6fbd64" +DEPENDS += "libxv virtual/libsdl virtual/libx11 libusb1 libraw1394" +SRCREV = "fa2b5b5a56e2c306cd3e756e810cceb68ab55b8f" + +SRC_URI = "git://libdc1394.git.sourceforge.net/gitroot/libdc1394/libdc1394/;branch=master;protocol=git \ + file://install_examples.patch \ + file://${PN}.png \ + " + +S = "${WORKDIR}/git/${PN}" + +inherit autotools pkgconfig sdl + +EXTRA_OECONF += "--disable-doxygen-doc" -- 1.8.0.2 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH 2/3] libdc1394: add recipe 2012-12-14 18:33 ` [PATCH 2/3] libdc1394: " Cliff Brake @ 2012-12-16 18:47 ` Martin Jansa 2012-12-16 19:33 ` Martin Jansa 0 siblings, 1 reply; 7+ messages in thread From: Martin Jansa @ 2012-12-16 18:47 UTC (permalink / raw) To: openembedded-devel; +Cc: Cliff Brake [-- Attachment #1: Type: text/plain, Size: 3073 bytes --] On Fri, Dec 14, 2012 at 01:33:42PM -0500, Cliff Brake wrote: > From: Cliff Brake <cbrake@bec-systems.com> > > Initial recipe created by Khem Raj > > Signed-off-by: Cliff Brake <cbrake@bec-systems.com> > --- > .../libdc1394/files/install_examples.patch | 14 ++++++++++++++ > .../recipes-multimedia/libdc1394/files/libdc1394.png | 0 Is this empty libdc1394.png really needed? Cheers, > meta-oe/recipes-multimedia/libdc1394/libdc1394_git.bb | 18 ++++++++++++++++++ > 3 files changed, 32 insertions(+) > create mode 100755 meta-oe/recipes-multimedia/libdc1394/files/install_examples.patch > create mode 100755 meta-oe/recipes-multimedia/libdc1394/files/libdc1394.png > create mode 100755 meta-oe/recipes-multimedia/libdc1394/libdc1394_git.bb > > diff --git a/meta-oe/recipes-multimedia/libdc1394/files/install_examples.patch b/meta-oe/recipes-multimedia/libdc1394/files/install_examples.patch > new file mode 100755 > index 0000000..89133ad > --- /dev/null > +++ b/meta-oe/recipes-multimedia/libdc1394/files/install_examples.patch > @@ -0,0 +1,14 @@ > +Index: libdc1394/examples/Makefile.am > +=================================================================== > +--- libdc1394.orig/examples/Makefile.am 2012-06-30 17:50:46.000000000 -0700 > ++++ libdc1394/examples/Makefile.am 2012-06-30 19:02:13.822646430 -0700 > +@@ -36,8 +36,7 @@ > + AM_LDFLAGS = -framework CoreFoundation -framework Carbon > + endif > + > +-noinst_PROGRAMS = $(A) > +-bin_PROGRAMS = $(B) > ++bin_PROGRAMS = $(A) $(B) > + > + LDADD = ../dc1394/libdc1394.la > + > diff --git a/meta-oe/recipes-multimedia/libdc1394/files/libdc1394.png b/meta-oe/recipes-multimedia/libdc1394/files/libdc1394.png > new file mode 100755 > index 0000000..e69de29 > diff --git a/meta-oe/recipes-multimedia/libdc1394/libdc1394_git.bb b/meta-oe/recipes-multimedia/libdc1394/libdc1394_git.bb > new file mode 100755 > index 0000000..41547d9 > --- /dev/null > +++ b/meta-oe/recipes-multimedia/libdc1394/libdc1394_git.bb > @@ -0,0 +1,18 @@ > +DESCRIPTION = "Capture and control API for IIDC compliant cameras" > +HOMEPAGE = "http://sourceforge.net/projects/libdc1394/" > +SECTION = "libs" > +LICENSE = "LGPL-2.0" > +LIC_FILES_CHKSUM = "file://COPYING;md5=c848e78d9a4a5cc69906178e4d6fbd64" > +DEPENDS += "libxv virtual/libsdl virtual/libx11 libusb1 libraw1394" > +SRCREV = "fa2b5b5a56e2c306cd3e756e810cceb68ab55b8f" > + > +SRC_URI = "git://libdc1394.git.sourceforge.net/gitroot/libdc1394/libdc1394/;branch=master;protocol=git \ > + file://install_examples.patch \ > + file://${PN}.png \ > + " > + > +S = "${WORKDIR}/git/${PN}" > + > +inherit autotools pkgconfig sdl > + > +EXTRA_OECONF += "--disable-doxygen-doc" > -- > 1.8.0.2 > > > _______________________________________________ > Openembedded-devel mailing list > Openembedded-devel@lists.openembedded.org > http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel -- Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com [-- Attachment #2: Digital signature --] [-- Type: application/pgp-signature, Size: 205 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 2/3] libdc1394: add recipe 2012-12-16 18:47 ` Martin Jansa @ 2012-12-16 19:33 ` Martin Jansa 2013-01-09 14:21 ` Martin Jansa 0 siblings, 1 reply; 7+ messages in thread From: Martin Jansa @ 2012-12-16 19:33 UTC (permalink / raw) To: openembedded-devel; +Cc: Cliff Brake [-- Attachment #1: Type: text/plain, Size: 3402 bytes --] On Sun, Dec 16, 2012 at 07:47:19PM +0100, Martin Jansa wrote: > On Fri, Dec 14, 2012 at 01:33:42PM -0500, Cliff Brake wrote: > > From: Cliff Brake <cbrake@bec-systems.com> > > > > Initial recipe created by Khem Raj > > > > Signed-off-by: Cliff Brake <cbrake@bec-systems.com> > > --- > > .../libdc1394/files/install_examples.patch | 14 ++++++++++++++ > > .../recipes-multimedia/libdc1394/files/libdc1394.png | 0 > > Is this empty libdc1394.png really needed? Also please set PV to something usefull. > Cheers, > > > meta-oe/recipes-multimedia/libdc1394/libdc1394_git.bb | 18 ++++++++++++++++++ > > 3 files changed, 32 insertions(+) > > create mode 100755 meta-oe/recipes-multimedia/libdc1394/files/install_examples.patch > > create mode 100755 meta-oe/recipes-multimedia/libdc1394/files/libdc1394.png > > create mode 100755 meta-oe/recipes-multimedia/libdc1394/libdc1394_git.bb > > > > diff --git a/meta-oe/recipes-multimedia/libdc1394/files/install_examples.patch b/meta-oe/recipes-multimedia/libdc1394/files/install_examples.patch > > new file mode 100755 > > index 0000000..89133ad > > --- /dev/null > > +++ b/meta-oe/recipes-multimedia/libdc1394/files/install_examples.patch > > @@ -0,0 +1,14 @@ > > +Index: libdc1394/examples/Makefile.am > > +=================================================================== > > +--- libdc1394.orig/examples/Makefile.am 2012-06-30 17:50:46.000000000 -0700 > > ++++ libdc1394/examples/Makefile.am 2012-06-30 19:02:13.822646430 -0700 > > +@@ -36,8 +36,7 @@ > > + AM_LDFLAGS = -framework CoreFoundation -framework Carbon > > + endif > > + > > +-noinst_PROGRAMS = $(A) > > +-bin_PROGRAMS = $(B) > > ++bin_PROGRAMS = $(A) $(B) > > + > > + LDADD = ../dc1394/libdc1394.la > > + > > diff --git a/meta-oe/recipes-multimedia/libdc1394/files/libdc1394.png b/meta-oe/recipes-multimedia/libdc1394/files/libdc1394.png > > new file mode 100755 > > index 0000000..e69de29 > > diff --git a/meta-oe/recipes-multimedia/libdc1394/libdc1394_git.bb b/meta-oe/recipes-multimedia/libdc1394/libdc1394_git.bb > > new file mode 100755 > > index 0000000..41547d9 > > --- /dev/null > > +++ b/meta-oe/recipes-multimedia/libdc1394/libdc1394_git.bb > > @@ -0,0 +1,18 @@ > > +DESCRIPTION = "Capture and control API for IIDC compliant cameras" > > +HOMEPAGE = "http://sourceforge.net/projects/libdc1394/" > > +SECTION = "libs" > > +LICENSE = "LGPL-2.0" > > +LIC_FILES_CHKSUM = "file://COPYING;md5=c848e78d9a4a5cc69906178e4d6fbd64" > > +DEPENDS += "libxv virtual/libsdl virtual/libx11 libusb1 libraw1394" > > +SRCREV = "fa2b5b5a56e2c306cd3e756e810cceb68ab55b8f" > > + > > +SRC_URI = "git://libdc1394.git.sourceforge.net/gitroot/libdc1394/libdc1394/;branch=master;protocol=git \ > > + file://install_examples.patch \ > > + file://${PN}.png \ > > + " > > + > > +S = "${WORKDIR}/git/${PN}" > > + > > +inherit autotools pkgconfig sdl > > + > > +EXTRA_OECONF += "--disable-doxygen-doc" > > -- > > 1.8.0.2 > > > > > > _______________________________________________ > > Openembedded-devel mailing list > > Openembedded-devel@lists.openembedded.org > > http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel > > -- > Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com -- Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com [-- Attachment #2: Digital signature --] [-- Type: application/pgp-signature, Size: 205 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 2/3] libdc1394: add recipe 2012-12-16 19:33 ` Martin Jansa @ 2013-01-09 14:21 ` Martin Jansa 0 siblings, 0 replies; 7+ messages in thread From: Martin Jansa @ 2013-01-09 14:21 UTC (permalink / raw) To: openembedded-devel; +Cc: Cliff Brake [-- Attachment #1: Type: text/plain, Size: 3717 bytes --] On Sun, Dec 16, 2012 at 08:33:36PM +0100, Martin Jansa wrote: > On Sun, Dec 16, 2012 at 07:47:19PM +0100, Martin Jansa wrote: > > On Fri, Dec 14, 2012 at 01:33:42PM -0500, Cliff Brake wrote: > > > From: Cliff Brake <cbrake@bec-systems.com> > > > > > > Initial recipe created by Khem Raj > > > > > > Signed-off-by: Cliff Brake <cbrake@bec-systems.com> > > > --- > > > .../libdc1394/files/install_examples.patch | 14 ++++++++++++++ > > > .../recipes-multimedia/libdc1394/files/libdc1394.png | 0 > > > > Is this empty libdc1394.png really needed? > > Also please set PV to something usefull. ping :) > > > Cheers, > > > > > meta-oe/recipes-multimedia/libdc1394/libdc1394_git.bb | 18 ++++++++++++++++++ > > > 3 files changed, 32 insertions(+) > > > create mode 100755 meta-oe/recipes-multimedia/libdc1394/files/install_examples.patch > > > create mode 100755 meta-oe/recipes-multimedia/libdc1394/files/libdc1394.png > > > create mode 100755 meta-oe/recipes-multimedia/libdc1394/libdc1394_git.bb > > > > > > diff --git a/meta-oe/recipes-multimedia/libdc1394/files/install_examples.patch b/meta-oe/recipes-multimedia/libdc1394/files/install_examples.patch > > > new file mode 100755 > > > index 0000000..89133ad > > > --- /dev/null > > > +++ b/meta-oe/recipes-multimedia/libdc1394/files/install_examples.patch > > > @@ -0,0 +1,14 @@ > > > +Index: libdc1394/examples/Makefile.am > > > +=================================================================== > > > +--- libdc1394.orig/examples/Makefile.am 2012-06-30 17:50:46.000000000 -0700 > > > ++++ libdc1394/examples/Makefile.am 2012-06-30 19:02:13.822646430 -0700 > > > +@@ -36,8 +36,7 @@ > > > + AM_LDFLAGS = -framework CoreFoundation -framework Carbon > > > + endif > > > + > > > +-noinst_PROGRAMS = $(A) > > > +-bin_PROGRAMS = $(B) > > > ++bin_PROGRAMS = $(A) $(B) > > > + > > > + LDADD = ../dc1394/libdc1394.la > > > + > > > diff --git a/meta-oe/recipes-multimedia/libdc1394/files/libdc1394.png b/meta-oe/recipes-multimedia/libdc1394/files/libdc1394.png > > > new file mode 100755 > > > index 0000000..e69de29 > > > diff --git a/meta-oe/recipes-multimedia/libdc1394/libdc1394_git.bb b/meta-oe/recipes-multimedia/libdc1394/libdc1394_git.bb > > > new file mode 100755 > > > index 0000000..41547d9 > > > --- /dev/null > > > +++ b/meta-oe/recipes-multimedia/libdc1394/libdc1394_git.bb > > > @@ -0,0 +1,18 @@ > > > +DESCRIPTION = "Capture and control API for IIDC compliant cameras" > > > +HOMEPAGE = "http://sourceforge.net/projects/libdc1394/" > > > +SECTION = "libs" > > > +LICENSE = "LGPL-2.0" > > > +LIC_FILES_CHKSUM = "file://COPYING;md5=c848e78d9a4a5cc69906178e4d6fbd64" > > > +DEPENDS += "libxv virtual/libsdl virtual/libx11 libusb1 libraw1394" > > > +SRCREV = "fa2b5b5a56e2c306cd3e756e810cceb68ab55b8f" > > > + > > > +SRC_URI = "git://libdc1394.git.sourceforge.net/gitroot/libdc1394/libdc1394/;branch=master;protocol=git \ > > > + file://install_examples.patch \ > > > + file://${PN}.png \ > > > + " > > > + > > > +S = "${WORKDIR}/git/${PN}" > > > + > > > +inherit autotools pkgconfig sdl > > > + > > > +EXTRA_OECONF += "--disable-doxygen-doc" > > > -- > > > 1.8.0.2 > > > > > > > > > _______________________________________________ > > > Openembedded-devel mailing list > > > Openembedded-devel@lists.openembedded.org > > > http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel > > > > -- > > Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com > > > > -- > Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com -- Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com [-- Attachment #2: Digital signature --] [-- Type: application/pgp-signature, Size: 205 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH 3/3] coriander: add recipe 2012-12-14 18:33 [PATCH 0/3] Camera recipes Cliff Brake 2012-12-14 18:33 ` [PATCH 1/3] libraw1394: add recipe Cliff Brake 2012-12-14 18:33 ` [PATCH 2/3] libdc1394: " Cliff Brake @ 2012-12-14 18:33 ` Cliff Brake 2 siblings, 0 replies; 7+ messages in thread From: Cliff Brake @ 2012-12-14 18:33 UTC (permalink / raw) To: openembedded-devel; +Cc: Cliff Brake From: Cliff Brake <cbrake@bec-systems.com> Initial recipe created by Khem Raj Signed-off-by: Cliff Brake <cbrake@bec-systems.com> --- meta-oe/recipes-multimedia/coriander/coriander_2.0.1.bb | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 meta-oe/recipes-multimedia/coriander/coriander_2.0.1.bb diff --git a/meta-oe/recipes-multimedia/coriander/coriander_2.0.1.bb b/meta-oe/recipes-multimedia/coriander/coriander_2.0.1.bb new file mode 100755 index 0000000..fe46a1f --- /dev/null +++ b/meta-oe/recipes-multimedia/coriander/coriander_2.0.1.bb @@ -0,0 +1,12 @@ +DESCRIPTION = "Control and capture GUI for IIDC compliant cameras" +HOMEPAGE = "http://damien.douxchamps.net/ieee1394/coriander/" +SECTION = "applications" +LICENSE = "GPL-3.0" +LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" +DEPENDS = "gtk+ libgnomeui libraw1394 libdc1394" + +SRC_URI = "${SOURCEFORGE_MIRROR}/project/${PN}/coriander-2/${PV}/${P}.tar.gz" +SRC_URI[md5sum] = "2bffa79925bda182c5c3c975e5b81a63" +SRC_URI[sha256sum] = "a597411a03e48407922a539b503877cb056bf57bb9551a5b569ee4e29fbbd050" + +inherit autotools -- 1.8.0.2 ^ permalink raw reply related [flat|nested] 7+ messages in thread
end of thread, other threads:[~2013-01-09 14:36 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2012-12-14 18:33 [PATCH 0/3] Camera recipes Cliff Brake 2012-12-14 18:33 ` [PATCH 1/3] libraw1394: add recipe Cliff Brake 2012-12-14 18:33 ` [PATCH 2/3] libdc1394: " Cliff Brake 2012-12-16 18:47 ` Martin Jansa 2012-12-16 19:33 ` Martin Jansa 2013-01-09 14:21 ` Martin Jansa 2012-12-14 18:33 ` [PATCH 3/3] coriander: " Cliff Brake
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox