From 709c4d66e0b107ca606941b988bad717c0b45d9b Mon Sep 17 00:00:00 2001 From: Denys Dmytriyenko Date: Tue, 17 Mar 2009 14:32:59 -0400 Subject: rename packages/ to recipes/ per earlier agreement See links below for more details: http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326 http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816 Signed-off-by: Denys Dmytriyenko Acked-by: Mike Westerhof Acked-by: Philip Balister Acked-by: Khem Raj Acked-by: Marcin Juszkiewicz Acked-by: Koen Kooi Acked-by: Frans Meulenbroeks --- .../ffmpeg-0.4.9.15594svn-20081010.diff | 14 ++++++++++++++ recipes/motion/motion_3.2.11.bb | 21 +++++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 recipes/motion/motion-3.2.11/ffmpeg-0.4.9.15594svn-20081010.diff create mode 100644 recipes/motion/motion_3.2.11.bb (limited to 'recipes/motion') diff --git a/recipes/motion/motion-3.2.11/ffmpeg-0.4.9.15594svn-20081010.diff b/recipes/motion/motion-3.2.11/ffmpeg-0.4.9.15594svn-20081010.diff new file mode 100644 index 0000000000..af85599f20 --- /dev/null +++ b/recipes/motion/motion-3.2.11/ffmpeg-0.4.9.15594svn-20081010.diff @@ -0,0 +1,14 @@ +Index: ffmpeg.c +=================================================================== +--- trunk/ffmpeg.c (revision 434) ++++ trunk/ffmpeg.c (working copy) +@@ -164,7 +164,8 @@ + return write(fd, buf, size); + } + +-static offset_t file_seek(URLContext *h, offset_t pos, int whence) ++ ++static int64_t file_seek(URLContext *h, int64_t pos, int whence) + { + int fd = (size_t)h->priv_data; + return lseek(fd, pos, whence); diff --git a/recipes/motion/motion_3.2.11.bb b/recipes/motion/motion_3.2.11.bb new file mode 100644 index 0000000000..999a0ab6bd --- /dev/null +++ b/recipes/motion/motion_3.2.11.bb @@ -0,0 +1,21 @@ +DESCRIPTION = "Motion - a motion detection program" +HOMEPAGE = "http://www.lavrsen.dk/twiki/bin/view/Motion/WebHome" +AUTHOR = "Kenneth Lavrsen motion-user@lists.sourceforge.net" +PRIORITY = "optional" +LICENSE = "GPL" +DEPENDS = "jpeg ffmpeg mysql postgresql" + +RSUGGESTS = "mysql-client postgresql-client" + +PR = "r1" + +SRC_URI = "${SOURCEFORGE_MIRROR}/${PN}/${PN}-${PV}.tar.gz \ + file://ffmpeg-0.4.9.15594svn-20081010.diff;patch=1 " + +inherit autotools + +EXTRA_OECONF = " --with-ffmpeg=${STAGING_LIBDIR}/../ \ + --with-mysql-lib=${STAGING_LIBDIR} \ + --with-mysql-include=${STAGING_INCDIR}/mysql \ + --with-pgsql-lib=${STAGING_LIBDIR} \ + --with-pgsql-include=${STAGING_INCDIR} " -- cgit 1.2.3-korg