Commit Graph

11 Commits

Author SHA1 Message Date
Timothy Gu 5f47111c0d sdl_gfx: enable shared builds 2014-08-04 16:44:49 -07:00
Tony Theodore 8de0584a23 many packages: explicitly disable shared builds
closes #369
2014-04-06 23:18:24 +10:00
Niels Kristian Bech Jensen 2c8ec4dc8c update packages cminpack imagemagick ocaml-lablgl ocaml-lablgtk2 sdl_gfx 2013-11-10 17:47:13 +11:00
Sylvain Beucler 54aed17539 sdl_gfx: 64-bit support, by disabling buggy MMX supported (i386 and x86_64 fixed in upstream trunk) 2013-10-21 20:53:20 +02:00
Sylvain Beucler c80306ed2b sdl_gfx: remove autoreconf: no issue to report without, and no autoreconf is used in any other SDL_* package 2013-10-21 20:52:14 +02: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
Tony Theodore b0f61e875f package sdl_gfx: fix update macro 2013-03-25 14:24:53 +11:00
Tony Theodore 7e06d80cc7 package sdl_gfx: autoreconf with mxe installed m4 macros 2012-12-23 17:37:21 +11:00
Tony Theodore 2d74451c06 packages gtkglarea libglade libzip qdbm sdl_gfx: use $(WGET) variable 2012-12-21 18:09:54 +11:00
Sylvain Beucler b28ec826a3 Add build file for SDL_gfx
- Build against latest stable release
- _UPDATE rule implemented
- Test case included

Coded while hacking GNU FreeDink :)
2012-12-18 02:21:22 +01:00