Commit Graph

129 Commits

Author SHA1 Message Date
Viktor Szakats e961e447fb URL updates 2017-03-04 10:33:47 +00:00
Phillip Berndt 43db7381bb Fix glib build failure if native glib is unavailable
Recent versions of glib require libmount on Linux. If it is unavailable,
configure fails with

    checking libmount/libmount.h presence... no
    checking for libmount/libmount.h... no
    configure: error: *** Could not find libmount

This commit disables libmount.
2017-02-15 11:06:31 +01:00
Boris Nagaev a5fee7a4c5 glib: update to 2.50.2
See https://github.com/mxe/mxe/issues/1647#issuecomment-275888417
2017-02-01 03:16:49 +01:00
Boris Nagaev ef2faa7039 glib: fix updater 2017-02-01 03:16:49 +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 06a18c9af8 glib: update 2.42.1 --> 2.44.1
no more gtk-doc dependence - simply issues warnings
2015-09-15 05:55:43 +10:00
Tobias Gruetzmacher 7680835ae2 glib: Build native zlib for tools.
Newer versions of glib require zlib, so the build fails if zlib (&
development headers) aren't installed in the host system...
2015-02-05 19:56:32 +01:00
Tobias Gruetzmacher 175d1da789 Don't depend on if_nametoindex from iphlpapi.dll.
This makes glib work on Windows XP again.
2015-01-17 01:48:09 +01: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
Tony Theodore e72ab4a659 various packages: run `make cleanup-style` 2014-10-29 21:09:07 +11:00
Mark Brand d7715ca351 glib: fix for i686-w64-mingw32
Correction to 38cdd7b19b
2014-10-27 12:08:44 +01:00
Mark Brand 38cdd7b19b mingw-w64: update 2014-10-27 10:17:41 +01:00
Timothy Gu 81fe520aa2 glib, glibmm: Update to 2.42.0
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
2014-10-14 19:49:53 -04:00
Lluixhi Scura 6a8ec6a478 Update glib and glibmm to 2.41.2 2014-10-14 19:49:53 -04:00
Timothy Gu 59f59f2fde glib: Clarify the glib-* tools building process 2014-08-19 08:24:34 -07:00
Timothy Gu 79ff98f490 glib: remove outdated comment 2014-08-19 08:21:29 -07:00
Timothy Gu 4be73ca844 Multiple packages: use target-g++ instead of target-c++ as CXX
It is more explicit and conforms with other packages.

Signed-off-by: Timothy Gu <timothygu99@gmail.com>
2014-08-10 10:47:31 -07:00
Tuukka Pasanen 41760b1867 Updated Glib for shared build 2014-02-10 13:56:25 +11:00
Niels Kristian Bech Jensen efbfb98942 update package glib 2013-11-13 12:28:38 +11:00
Niels Kristian Bech Jensen 02091d821a update package gtk2 and dependencies 2013-11-10 15:18:56 +11:00
Niels Kristian Bech Jensen 4782d01ead update packages cairo fontconfig glib harfbuzz pango 2013-09-07 23:15:07 +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 512947acc8 update package glib and friends 2013-06-29 22:41:43 +10:00
Tony Theodore 8e4ab07b8e packages libiconv glib: fix for removed gets() and apply patches in glib build 2013-06-07 17:52:20 +10:00
Ryan Pavlik 4deeae718f Update glib.mk
Don't let autogen.sh run configure - we do this manually.
2013-03-08 14:12:05 -06:00
Tony Theodore 1eefbe8b1d package glib: install gspawn-win32-helper programs 2013-02-14 02:10:08 +11:00
Tony Theodore 12ae708500 package glib: install m4 macros 2013-02-10 15:02:21 +11:00
Tony Theodore 3f5290710b update package glib 2012-12-08 23:22:31 +11:00
Mark Brand 64f32dd791 update package glib 2012-10-12 12:14:00 +02:00
Tony Theodore d660d05e37 package glib: build native tools only when not installed 2012-09-18 17:37:36 +10:00
Mark Brand ca4d72c0c5 package glib: use autogen.sh to avoid error 2012-06-15 15:54:54 +02:00
Mark Brand a78814c73a update package glib 2012-06-15 15:54:54 +02:00
Hans Petter Jansson 68031eb138 update package glib 2012-06-15 15:54:54 +02:00
Tony Theodore 4ed13a9f30 all packages: use $(WGET) portability variable 2012-05-16 17:49:40 +10:00
Tony Theodore 9555f8f2b6 packages atk* glib* libsigc++ pango: use xz archives 2012-05-03 08:02:36 +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
Volker Grabsch 148931b4ae replaced $(BUILD) with a more direct and less brittle construct
For discussion, see the following email and its follow-ups:
http://lists.nongnu.org/archive/html/mingw-cross-env-list/2011-11/msg00112.html
2011-11-28 09:51:56 +01:00
Mark Brand 3cce3e9b58 many packages: use --build instead of wine cross_compiling hack 2011-11-26 16:30:36 +01:00
Mark Brand 7b8631c5e7 upgrade packages: dbus fltk geos glib gnutls imagemagick lcms libass libevent libgsf pfstools x264 xvidcore xz 2011-06-08 08:53:36 +02:00
Mark Brand 8f865ed58d update package glib 2011-04-14 08:51:29 +02:00
Mark Brand 2b34fc14dd update packages glib gnutls gtk2 imagemagick xz 2011-04-02 11:16:57 +02:00
Mark Brand 6b22a3e60a update package glib 2011-03-22 09:32:30 +01:00
Mark Brand 61e0b98207 update package glib 2011-03-16 08:48:45 +01:00