Commit Graph

21 Commits

Author SHA1 Message Date
Tony Theodore 8de0584a23 many packages: explicitly disable shared builds
closes #369
2014-04-06 23:18:24 +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
Tony Theodore 5390e5203e various packages: enable/disable mingw-w64 builds 2013-06-01 22:28:04 +10:00
Niels Kristian Bech Jensen 0d6f37fb76 package cgal: use version variable for doc install dir 2013-04-14 10:30:47 +10: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
Mark Brand f11c4d24e3 update package cgal 2012-07-18 01:22:41 +02: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
Tony Theodore 32504cac82 package cgal: fix update macro 2012-03-24 23:37:07 +11:00
Mark Brand bd415c3468 update package cgal
---
 src/cgal-1-fixes.patch |   46 +++++++++-------------------------------------
 src/cgal.mk            |   10 ++++++----
 2 files changed, 15 insertions(+), 41 deletions(-)
2012-03-24 11:19:30 +01:00
Luis Saavedra 7cfca695cf update package cgal 2011-12-29 19:46:44 +01:00
Tony Theodore b3db813174 packages cgal, eigen, lapack: use CMAKE_TOOLCHAIN_FILE 2011-11-27 00:45:44 +11:00
Mark Brand 8035a88938 package cgal: fix build failure when qt is present
When Qt happened to be present, CGAL would fail to build. This
happened when moc was called on certain files that included
has_binary_operator.hpp from boost:

<includedir>/boost/type_traits/detail/has_binary_operator.hp:50:
Parse error at "BOOST_JOIN"
2011-11-18 00:11:33 +01:00
Mark Brand c291d7f4ca package cgal: fix test program name 2011-10-22 12:33:29 +02:00
Mark Brand 456cf21c12 style improvements for projects cgal eigen mpfr 2011-10-22 00:53:46 +02:00
Brad Pitcher 4093ebb6cc new packages cgal eigen mpfr 2011-10-22 00:24:34 +02:00