aboutsummaryrefslogtreecommitdiffstats
path: root/packages/opencv/opencv_1.0.0.bb
blob: 3c442dd9ec7e039adcdaed2e925177766e77bbc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
DESCRIPTION = "Opencv : The Open Computer Vision Library"
HOMEPAGE = "http://sourceforge.net/projects/opencvlibrary"
SECTION = "libs"
PRIORITY = "optional"
LICENSE = "GPLv2"

PR = "r1"

DEPENDS = "libtool swig swig-native python jpeg zlib libpng tiff glib-2.0"
#RDEPENDS = "python jpeg zlib libpng tiff glib-2.0"

SRC_URI = "${SOURCEFORGE_MIRROR}/opencvlibrary/opencv-${PV}.tar.gz \
          file://debian/010_enable_static.diff;patch=1 \
          file://debian/010_ffmpeg_linking.diff;patch=1 \
          file://debian/010_fix_optimisations.diff;patch=1 \
          file://debian/010_m4_syntax.diff;patch=1 \
          file://debian/010_makefile_syntax.diff;patch=1 \
          file://debian/010_python_cspec.diff;patch=1 \
          file://debian/020_python_linking.diff;patch=1 \
          file://debian/030_install_hook.diff;patch=1 \
          file://debian/050_rebootstrap.diff;patch=1 \
          file://debian/100_amd64.diff;patch=1 \
          file://debian/100_static_inline.diff;patch=1 \
          file://debian/100_ffmpeg_updates.diff;patch=1 \
          file://debian/110_dc1394.diff;patch=1 \
          file://debian/120_header_warnings.diff;patch=1 \
          file://debian/200_documentation.diff;patch=1 \
          file://debian/200_examples_makefile.diff;patch=1 \
          file://debian/210_openmp_compilation.diff;patch=1 \
          file://debian/300_fix_segfault_in_window_gtk.diff;patch=1 \
"

inherit autotools pkgconfig

EXTRA_OECONF = "--disable-debug --disable-apps"

do_configure() {
	gnu-configize
	cp ${STAGING_DATADIR}/libtool/config.{sub,guess} autotools
	oe_runconf
}	


PACKAGES = "${PN} ${PN}-dev ${PN}-doc ${PN}-dbg python-opencv"

FILES_${PN} = "${libdir}/*.so*"
# ${libdir}/libcv.so* \
# ${libdir}/libcvaux.so* \
# ${libdir}/libcxcore.so* \
# ${libdir}/libhighgui.so* \
# ${libdir}/libml.so* "

FILES_${PN}-dev += " ${libdir}/*.la "
FILES_${PN}-doc += "${datadir}/opencv/"
FILES_${PN}-dbg += "${libdir}/.debug/"

DESCRIPTION_python-opencv = "Python bindings to opencv"
FILES_python-opencv = "${libdir}/*/site-packages/*"
RDEPENDS_python-opencv = "python-core opencv"

LEAD_SONAME = "libcv.so"

do_stage() {
	autotools_stage_all
}