Commit Graph

67 Commits

Author SHA1 Message Date
Tony Theodore a9df005bb1 openthreads and openscenegraph: move try run results to cmake wrapper 2019-10-13 18:36:43 +11:00
Boris Pek 71e57be210 openscenegraph: delete unused build dependency from qtbase 2018-10-10 23:52:30 +03:00
Boris Pek f8c0846037 update openscenegraph 2018-10-09 01:22:17 +03:00
Saikrishna Arcot e6a7594a7c
Update source files fot qt5, and update qt4 overlays. 2017-12-29 21:37:01 -06:00
Tony Theodore 01e2a64d00 cross packages: replace dependency gcc with cc 2017-12-23 08:19:00 +11:00
Boris Pek e6b965c5de update openscenegraph 2017-12-21 16:23:09 +03:00
Tony Theodore f406275785 opencv openscenegraph: fix __STDC_LIMIT_MACROS used by jasper 2017-07-20 20:32:36 +10: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
Saikrishna Arcot a3c8d4b5eb
Another fix to the makefiles. 2016-06-08 08:41:52 -05:00
Saikrishna Arcot 4a2dfcebb2
Get value of variable instead of using the variable name itself. 2016-06-07 17:34:26 -05:00
Saikrishna Arcot 3b3af3e8b9
Simplify overrides, and add shared build support to poppler. 2016-06-05 17:35:41 -05:00
Boris Nagaev d6b49a2a78 remove xine-lib 2016-03-08 13:31:43 +03:00
Boris Nagaev f6d028fb02 openscenegraph: disable ffmpeg
fix #1230
2016-02-22 22:10:46 +03:00
Tony Theodore 121d251ddf openscenegraph: add missing gstreamer dep and fix detection on mingw 2016-01-12 19:41:41 +11:00
Rashad Kanavath a0f3d2ff8f openscenegraph: use previously built openthreads 2015-12-04 00:25:44 +11:00
Tony Theodore e94d07e978 openexr openscenegraph: remove -fpermissive from CXXFLAGS 2015-09-30 15:49:30 +10:00
Tony Theodore d7c6798ff5 openscenegraph: update 3.2.1 --> 3.40 and enable shared 2015-09-26 00:06:52 +10: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
Boris Nagaev 59a95f583e fix openscenegraph download URL 2015-09-18 09:45:26 +03:00
Mark Brand 6947d3245f itk libdca libvpx openscenegraph: gcc 5 compatibility 2015-04-23 23:10:46 +02:00
Tony Theodore c7deb709fd openscenegraph: update and enable *-w64-* (see #492) 2014-10-03 03:33:39 +10:00
Tony Theodore 8de0584a23 many packages: explicitly disable shared builds
closes #369
2014-04-06 23:18:24 +10:00
Niels Kristian Bech Jensen 55bba23b54 package openscenegraph: only update to stable releases 2013-11-19 13:50:42 +11:00
Niels Kristian Bech Jensen be8dd135fb update packages librsvg libusb m4 openscenegraph 2013-11-10 17:41:49 +11:00
Tony Theodore 9636406dff update packages gsl ilmbase libgcrypt openexr openscenegraph 2013-07-31 20:16:22 +10: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
Niels Kristian Bech Jensen 732b8f4c64 update package openscenegraph 2013-07-06 15:00:05 +10:00
Tony Theodore b485ce8560 update packages openscenegraph poppler 2013-06-23 21:33:58 +10:00
Tony Theodore 5390e5203e various packages: enable/disable mingw-w64 builds 2013-06-01 22:28:04 +10:00
Ulrich Klauer bb1954389e Update package openscenegraph 2013-05-29 10:33:26 +02:00
Niels Kristian Bech Jensen b9e1fb90c0 update package openscenegraph 2013-05-19 04:15:58 +10:00
Tony Theodore 12b1744b63 package openscenegraph: use developer releases instead of trunk 2013-04-24 14:49:56 +10:00
Martin Lambers 8466d79205 package openscenegraph: depend on gta 2013-04-22 09:40:49 +02:00
Niels Kristian Bech Jensen baab78f684 update package openscenegraph 2013-04-20 14:50:47 +10:00
Tony Theodore e07a526aeb package openscenegraph: use osg git mirror and update package
http://www.openscenegraph.org/projects/osg/wiki/Downloads/GIT
2013-02-15 20:00:51 +11:00
Tony Theodore 1b5aa61e93 package openscenegrap: enable poppler support 2013-02-15 08:27:52 +11:00
Tony Theodore 1a18c31c6a package openscenegraph: update to track svn instead of releases 2013-02-14 01:17:29 +11:00
Tony Theodore 49ccc6c2f7 package openscenegraph: ignore development version in update script 2012-12-12 23:13:50 +11:00
Tony Theodore 0506287f4e package openscenegraph: use developer releases url as URL_2
This will allow 'make update' to find the latest releases
2012-12-09 16:35:32 +11:00
Tony Theodore 4ed13a9f30 all packages: use $(WGET) portability variable 2012-05-16 17:49:40 +10:00
Volker Grabsch 00f4690d3f Move full package names from src/*.mk into package list (index.html) 2012-03-29 21:41:44 +02:00
Volker Grabsch 7badad85c9 Move doc/index.html -> index.html 2012-03-29 12:14:15 +02:00
Volker Grabsch 7e6723adb5 Move $(PKG)_VERSION and $(PKG)_WEBSITE from src/*.mk into doc/index.html 2012-03-29 11:07:07 +02:00
Volker Grabsch defdff28f0 Rebrand to new project name MXE 2012-03-28 15:46:58 +02:00
Mark Brand dcf8e8e702 package openscenegraph: add missing qt dependency 2011-10-19 02:20:18 +02:00
Mark Brand 15ee05fe68 update packags: ffmpeg libsamplerate openscenegraph 2011-08-20 01:01:25 +02:00
Mark Brand d7f47c6f21 update package openscenegraph 2011-07-10 22:38:36 +02:00