Commit Graph

45 Commits

Author SHA1 Message Date
Tony Theodore aab04b93b0 vtk: use new style PKG_CONFIGURE_OPTS
closes #2439
2019-12-06 20:39:13 +11:00
Tony Theodore 181da98e54 vtk: add user configure opts
see #2439
2019-12-06 19:51:14 +11:00
Martin Müllenhaupt dbf63416ed update vtk 2019-02-27 03:52:04 +11:00
Tony Theodore 6784313fa4 vtk: fix headless build 2017-12-26 19:41:52 +11:00
Tony Theodore e2a66f221f vtk: build compile tools once
closes #1991
2017-12-24 23:12:01 +11:00
Tony Theodore 01e2a64d00 cross packages: replace dependency gcc with cc 2017-12-23 08:19:00 +11:00
Tony Theodore d4fd40df4e vtk: fix native build on headless server
OpenGL/Mesa libs aren't required for compile tools
2017-10-27 18:38:12 +11:00
Tony Theodore 5dcc8ede4c run make cleanup-deps-style 2017-10-10 16:24:40 +11:00
Viktor Szakats b8599ed14b secure/update URLs
* change libssh2/apache/xiph URLs to canonical ones
* resubmit patch to remove unnecessary
  --no-check-certificate option. The URLs
  are non-HTTPS anyway
* blas: restore URL and point to versioned archive
2017-09-24 16:04:56 +00:00
Tony Theodore 9400b43317 vtk: remove positional vars and CMAKE_TOOLCHAIN_FILE 2017-07-25 11:12:13 +10:00
Martin Müllenhaupt bc0375ae05 vtk: use SOURCE_DIR and CMAKE_SHARED_BOOL vars 2017-07-24 11:16:31 +02:00
Martin Müllenhaupt a540f21be6 vtk: update to version 8 and remove package vtk6 2017-07-24 10:08:11 +02: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 ac7344aaef many packages: cleanup deps ordering 2015-09-23 17:41:16 +10:00
Tony Theodore a228c0488f all packages: switch to sha256 checksums
closes #871
2015-09-23 17:27:16 +10:00
Tony Theodore d21020a5d6 packages vtk vtk6 wt: retry with serial build 2014-04-08 20:54:31 +10:00
Tony Theodore 8de0584a23 many packages: explicitly disable shared builds
closes #369
2014-04-06 23:18:24 +10:00
Tony Theodore c96a893a24 package vtk: use included freetype library 2013-12-26 18:50:25 +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
Tony Theodore 1e8555aa08 package vtk: only update 5 series and ignore 5.10x 2013-06-23 17:38:41 +10:00
Tony Theodore 9430bf381a package vtk: enable mingw-w64 build 2013-06-23 04:50:32 +10:00
Tony Theodore 5390e5203e various packages: enable/disable mingw-w64 builds 2013-06-01 22:28:04 +10:00
Tony Theodore abd6328451 packages vtk ocaml-* cross builds: add explicit gcc dependency 2013-01-08 19:12:41 +11:00
Tony Theodore d95a5f9156 package vtk: use short pkg version in url 2012-12-12 21:14:07 +11:00
Volker Grabsch c80ee377b2 Move CMAKE_BUILD_TYPE into toolchain file 2012-08-25 16:40:28 +02:00
Volker Grabsch 070e7a680d Revert "Move CMAKE_BUILD_TYPE, CMAKE_AR and CMAKE_RANLIB into toolchain file"
This reverts commit e57db6d8c9.

See http://lists.nongnu.org/archive/html/mingw-cross-env-list/2012-08/msg00028.html
2012-08-25 16:11:23 +02:00
Volker Grabsch e57db6d8c9 Move CMAKE_BUILD_TYPE, CMAKE_AR and CMAKE_RANLIB into toolchain file 2012-08-13 10:15:30 +02:00
Tony Theodore 4ed13a9f30 all packages: use $(WGET) portability variable 2012-05-16 17:49:40 +10:00
Volker Grabsch c7f62b02ca Bugfix: Don't make use of outdated $(PKG)_WEBSITE variables 2012-03-30 08:08:03 +02: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
Volker Grabsch e86ebf0526 Fix annoying whitespaces at EOL 2012-03-27 13:29:57 +02:00
Tony Theodore 716c51a024 package vtk:disable directx detection 2011-11-23 00:40:00 +11:00
Tony Theodore 793d2a88f9 package vtk: disable gui components in native build 2011-11-22 22:18:31 +11:00
Tony Theodore 19498a7670 package vtk: revert previous change 2011-11-21 01:49:41 +11:00
Tony Theodore ba3ba7fcd8 package vtk: disable gui components in native build 2011-11-19 16:52:13 +11:00
Mark Brand a4c61e4a78 package vtk: add update macro 2011-10-31 10:45:29 +01:00
Muellni e288002301 package vtk: consolidate patch file and add tools target
merged compile tools patches into one patch file and added
a CompileTools target for compiling only the compile tools
during the native build
2011-10-31 09:44:38 +01:00
Muellni f8e628bfb8 vtk patch for building without wine 2011-10-31 09:04:03 +01:00
Muellni b9fb471ab0 new package: vtk 2011-10-25 23:32:42 +02:00