Commit Graph

29 Commits

Author SHA1 Message Date
Boris Pek 1f938368c7 opencv: fix build after update of protobuf 2019-01-09 12:07:50 +01:00
Mark Brand 7b4a42e20d opencv: drop stray dependency lcms1
As far as I can tell, this was never used.
2018-11-14 14:22:52 +01:00
Tony Theodore 47a2424cf8 opencv: fix gcc7 build 2018-08-15 12:57:09 +10:00
Mark Brand fa3b687f85 fix some more update macros for sourceforge packages 2018-03-25 17:02:16 +02:00
Tony Theodore 01e2a64d00 cross packages: replace dependency gcc with cc 2017-12-23 08:19:00 +11:00
Tony Theodore cf8df92574 opencv: use openblas explicitly
undecrlared dependency that could cause build failure with older versions
2017-11-20 20:39:24 +11:00
Viktor Szakats 18aad24c83 URL upgrades and fixes 2017-10-19 18:39:25 +00:00
Boris Nagaev f29eed843b opencv.mk: remove trailing spaces 2017-09-24 17:08:06 +02:00
Gregorio Litenstein 4560f79e70 Update opencv to 3.3.0 2017-09-24 17:06:41 +02:00
Tony Theodore f406275785 opencv openscenegraph: fix __STDC_LIMIT_MACROS used by jasper 2017-07-20 20:32:36 +10:00
Viktor Szakats 45d34aaac7 more URL updates 2017-03-10 13:59:00 +00:00
Viktor Szakats e961e447fb URL updates 2017-03-04 10:33:47 +00:00
Boris Nagaev e2fd9fe23a use cmake wrapper in all packages
Native binaries (libmysqlclient, vtk, vtk6) still build with `cmake`
instead of the cmake wrapper. Note that even in these cases MXE's cmake
is used (not system cmake), because $(PREFIX)/$(BUILD)/bin is added to
PATH by Makefile and MXE's cmake binary exists there.
2017-01-08 03:01:54 +01:00
Boris Nagaev 74163f1794 add _WEBSITE and _DESCR fields to core packages
See https://github.com/mxe/mxe/issues/1422

Automation (Python 2 code): https://gist.github.com/9f5c315e5d0cf113d41dc454b7a0eb41
2016-12-22 22:25:48 +01:00
Boris Nagaev 6adb5ade12 Copyright headers: point to LICENSE.md and shorten
The following script was applied:

    sed ':a;/part of MXE.$/{N;s/\n//;ba}' -i $(git grep -l 'part of MXE')

    sed 's/\(part of MXE\).*\(See index.html\)/\1. \2/' -i \
        $(git grep -l 'part of MXE.*See index.html')

    before='This file is part of MXE. See index.html for further information.'
    after='This file is part of MXE. See LICENSE.md for licensing information.'
    sed "s/$before/$after/" -i $(git grep -l 'part of MXE')

Then git grep 'index.html for further information' revealed two other files.
One of them was patched manually (patch.mk). Makefile has text
"See index.html for further information" unrelated to licensing.

See https://github.com/mxe/mxe/issues/1500#issuecomment-241340792
2016-08-27 12:31:29 +03:00
Tony Theodore fc0ed34fb9 all packages: really use sha256 checksums 2015-09-23 18:32:58 +10:00
Tony Theodore a228c0488f all packages: switch to sha256 checksums
closes #871
2015-09-23 17:27:16 +10:00
Sérgio Faria e2ba9c8fb5 OpenCV: Fix paths and add shared support
Tested with x86_64-w64-mingw32.static and x86_64-w64-mingw32.shared.

Cherrypicks an upstream commit that cleanups the pkg-config file.
Also removes the version postfix on Windows dll's (matching other platforms).

These changes allows us to easilly support shared builds.
Removing the postfix avoids breaking programs that only link
to a subset of opencv modules, everytime a new version is released.

It should be noted that OpenCV forces static linking of libopencv_ts.
There are also 3 files that are left at usr/<triplet>/ that this commit does not
attempt to fix (LICENSE, OpenCVConfig.cmake and OpenCVConfig-version.cmake).

They cannot be moved to lib/ because a different OpenCVConfig.cmake is placed
there. On Ubuntu, for example, those cmake files are in /usr/share/OpenCV/.
2015-01-07 01:53:54 +00:00
Tony Theodore b672cd8266 update various packages (tested on i686-w64-mingw32.static)
ffmpeg flac gdk-pixbuf glew glib graphicsmagick ilmbase imagemagick
libffi libftdi1 libircclient libmicrohttpd libpaper librsvg libtool
libwebp libxml++ libxml2 mpg123 mxml nlopt oce openblas opencv
opusfile pfstools poco poppler primesieve x264 xine-lib
2014-12-01 23:51:26 +11:00
Timothy Gu 317d91ef3e opencv: Fix download
I intentionally didn't merge this when merging stable, but seems like this
fix is necessary for master too.

Signed-off-by: Timothy Gu <timothygu99@gmail.com>
2014-08-29 18:02:42 -07:00
Tony Theodore 8de0584a23 many packages: explicitly disable shared builds
closes #369
2014-04-06 23:18:24 +10:00
Tony Theodore 1a27fa5a1e package opencv: fixes for i686-pc-mingw32 and x86_64-w64-mingw32 2014-02-21 22:41:14 +11:00
Andrew Hankins e18b8cec56 package opencv: update and enable i686-w64-mingw32 2014-02-21 22:39:35 +11:00
Volker Grabsch e412eb642d Move package versions from index.html back into the src/*.mk files
Most of the automatic conversion was done using the following Python script:

import os
import re
pkgs = sorted(mkfile[:-len('.mk')] for mkfile in os.listdir('src') if mkfile.endswith('.mk'))
with open('index.html', 'rb') as f:
    index = f.read()
pkgs_index = re.findall('<td class="package">([^<]*)</td>', index)
assert pkgs_index == pkgs
versions = dict(re.findall('<td id="([^"]*)-version">([^<]*)</td>', index))
assert sorted(versions.keys()) == pkgs
for pkg in pkgs:
    version = versions[pkg]
    with open('src/' + pkg + '.mk', 'rb') as f:
        mk = f.read()
    checksumpos = mk.index('\n$(PKG)_CHECKSUM ')
    versionline = '\n$(PKG)_VERSION  := %(version)s' % {'version': version}
    newmk = mk[:checksumpos] + versionline + mk[checksumpos:]
    with open('src/' + pkg + '.mk', 'wb') as f:
        f.write(newmk)
2013-07-22 01:41:31 +02:00
Volker Grabsch a34ea233b1 Fix initial comments of all src/*.mk files 2013-07-21 18:47:20 +02:00
Tony Theodore 5390e5203e various packages: enable/disable mingw-w64 builds 2013-06-01 22:28:04 +10:00
Tony Theodore f8381674ef package opencv: fix pkgconfig file and remove qt dependency 2013-05-12 19:15:01 +10:00
Tony Theodore b5da5ade8d package opencv: disable gtk, gstreamer, and xine since they are unix only 2013-03-23 17:59:06 +11:00
Luis Saavedra 734329ad56 add package opencv
OpenCV (Open Source Computer Vision Library) is an open source computer vision and machine learning software library.

See more: http://opencv.org/about.html
2013-03-20 03:02:31 -04:00