summaryrefslogtreecommitdiffstats
path: root/src/xine-lib.mk
Commit message (Collapse)AuthorAgeFilesLines
* Move package versions from index.html back into the src/*.mk filesVolker Grabsch2013-07-211-0/+1
| | | | | | | | | | | | | | | | | | | | | | | 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)
* package xine-lib: fix update macroTony Theodore2013-06-041-4/+5
|
* various packages: enable/disable mingw-w64 buildsTony Theodore2013-06-011-0/+3
|
* Build xine-lib with wavpack supportUlrich Klauer2013-03-031-2/+2
| | | | | Activate wavpack support in xine-lib. This reveals a latent bug (missing include) in xine-lib, for which a patch is provided.
* update package xine-libMark Brand2012-06-131-2/+2
|
* all packages: use $(WGET) portability variableTony Theodore2012-05-161-1/+1
|
* Move full package names from src/*.mk into package list (index.html)Volker Grabsch2012-03-291-1/+0
|
* Move doc/index.html -> index.htmlVolker Grabsch2012-03-291-1/+1
|
* Move $(PKG)_VERSION and $(PKG)_WEBSITE from src/*.mk into doc/index.htmlVolker Grabsch2012-03-291-2/+0
|
* Rebrand to new project name MXEVolker Grabsch2012-03-281-1/+1
|
* update packages file xine-libMark Brand2012-01-021-2/+2
|
* package xine-lib: enable graphicsmagickMark Brand2011-11-131-2/+1
|
* update package xine-libMark Brand2011-11-131-2/+2
|
* package xine-lib: fix mng supportMark Brand2011-11-031-1/+2
|
* don't call autopoint in package xine-libVolker Grabsch2011-05-201-1/+4
|
* don't remove the "-no-undefined" flag, but provide clean bugfixes instead ↵Volker Grabsch2011-03-271-1/+2
| | | | for packages exiv2 and xine-lib
* package xine-lib: gcc 4.6 workaroundMark Brand2011-03-261-0/+1
|
* remove $($PKG)_SUBDIR) from FILE and URL defintionsMark Brand2010-12-121-1/+1
| | | | | | 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.
* improved coding styleVolker Grabsch2010-12-021-1/+1
|
* package xine-lib: correct package name of faad2Tony Theodore2010-10-031-1/+1
|
* package xine-lib: enable new faad and ffmpeg build optionsTony Theodore2010-10-031-3/+3
|
* upgrade version of package xine-lib, removing a patch that is no longer neededVolker Grabsch2010-09-231-2/+2
|
* disable aalib explicitly in package xine-lib (by Mark de Wever)Volker Grabsch2010-05-121-0/+1
|
* detangle package pthreads from package gccVolker Grabsch2010-05-031-1/+1
| | | | | Originally, the builds of gcc and pthreads were interlaced as a work-around to get OpenMPI support. However, that never worked.
* new package: xine-libVolker Grabsch2010-04-261-0/+57