Commit Graph

26 Commits

Author SHA1 Message Date
Tony Theodore ecf006ce9e openal: fix BUILD_SHARED variable 2014-08-20 14:58:19 +10:00
abma 4b889f64d7 remove duplicate code 2014-08-16 19:37:46 +02:00
abma 89b11edadd enable openal shared compile 2014-08-10 12:53:51 +02:00
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
Niels Kristian Bech Jensen 6b7a7962c9 package openal: fix update macro 2013-05-28 18:41:03 +10:00
Mark Brand 8f65ba88db update package openal 2012-12-12 08:14:44 +01:00
Mark Brand 1c4bf8ff26 update package openal 2012-12-06 15:13:18 +01:00
Tony Theodore 5b82323caa package openal: disable examples build 2012-09-17 20:06:50 +10:00
Tony Theodore 4ed13a9f30 all packages: use $(WGET) portability variable 2012-05-16 17:49:40 +10:00
Mark Brand 1db2f349b4 update package openal 2012-04-14 09:22:58 +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 2e24399708 improved quoting 2011-03-17 01:54:10 +01:00
Tony Theodore d9bfa57f73 add cmake toolchain file and simplify build rules of relevant packages 2011-03-17 05:05:00 +11:00
Volker Grabsch 0a5c45992e add missing depedency to package openal 2011-03-09 15:20:56 +01:00
Tony Theodore 6b66de816f package openal: remove libOpenAl32 link and add -luuid to pkg-config 2011-03-02 15:59:39 +11:00
Tony Theodore 181b32ccdf update package openal 2011-03-02 00:32:35 +11:00
Mark Brand 0d20234f54 remove $($PKG)_SUBDIR) from FILE and URL defintions
For now this means a bit of duplication, but if the remaining
references to SUBDIR can be dealt with, we should be able
to get rid of the SUBDIR defintion altogether.
2010-12-12 01:16:13 +01:00
Volker Grabsch 9e3e115b78 fix nasty whitespaces 2010-11-30 00:03:40 +01:00
Volker Grabsch e72156b1a7 improved update script of package openal 2010-11-30 00:01:36 +01:00
Tony Theodore 84f5192270 package openal: fic CXX cmake variable 2010-10-01 02:08:17 +10:00
Tony Theodore c4a45ccd43 package openal: combine patch files, portability fixes, and add test program 2010-10-01 02:03:08 +10:00
Martin Gerhardy 2022f74486 new package: OpenAL 2010-10-01 01:56:08 +10:00