summaryrefslogtreecommitdiffstats
path: root/src/gst-plugins-good.mk
Commit message (Collapse)AuthorAgeFilesLines
* install gstreamer dll plugins to separate directoryPavel Vatagin2017-07-241-1/+2
|
* liboil libshout gstreamer and plugins: remove options now in ↵Tony Theodore2017-07-201-4/+1
| | | | MXE_DISABLE_DOC_OPTS
* update gstreamerPavel Vatagin2017-07-151-11/+9
|
* add missing gstreamer dependenciesPavel Vatagin2017-03-121-2/+2
|
* more URL updatesViktor Szakats2017-03-101-4/+4
|
* fix moving gstreamer dlls (#1288)Pavel Vatagin2017-01-021-2/+3
|
* add _WEBSITE and _DESCR fields to core packagesBoris Nagaev2016-12-221-0/+1
| | | | | | See https://github.com/mxe/mxe/issues/1422 Automation (Python 2 code): https://gist.github.com/9f5c315e5d0cf113d41dc454b7a0eb41
* Copyright headers: point to LICENSE.md and shortenBoris Nagaev2016-08-271-2/+1
| | | | | | | | | | | | | | | | | | | 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
* add package libsoupPavel Vatagin2016-04-091-1/+1
|
* gstreamer and plugins: update 1.4.5 --> 1.6.2 and enable sharedTony Theodore2016-01-121-10/+10
|
* all packages: really use sha256 checksumsTony Theodore2015-09-231-1/+1
|
* many packages: cleanup deps orderingTony Theodore2015-09-231-1/+2
|
* all packages: switch to sha256 checksumsTony Theodore2015-09-231-1/+1
| | | | closes #871
* gstreamer and plugins: update 1.4.4 --> 1.4.5Tony Theodore2015-08-251-2/+2
|
* gstreamer and plugins: updateTony Theodore2014-12-011-2/+2
|
* gstreamer and plugins: downgrade to stable series and adjust update macroTony Theodore2014-05-111-7/+3
|
* Revert "update package gstreamer and plugins"Tony Theodore2014-05-111-2/+2
| | | | This reverts commit 3d7cce8ce78d42c493d9de5e5e8c630d7db1c875.
* update package gstreamer and pluginsTony Theodore2014-05-091-2/+2
|
* many packages: explicitly disable shared buildsTony Theodore2014-04-061-0/+2
| | | | closes #369
* update package gstreamer and pluginsNiels Kristian Bech Jensen2014-01-281-2/+2
|
* update package gstreamer and pluginsTony Theodore2013-11-111-2/+2
|
* update package gstreamer and pluginsNiels Kristian Bech Jensen2013-09-071-2/+2
|
* 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)
* update package gstreamer and pluginsTony Theodore2013-06-231-1/+1
|
* update package gstreamer and pluginsNiels Kristian Bech Jensen2013-04-281-1/+1
|
* update package gstreamer and pluginsTony Theodore2013-03-291-1/+1
|
* package gst-plugins-good: add wavpack dependencyTony Theodore2013-03-041-1/+1
|
* update package gstreamer and pluginsTony Theodore2013-02-141-1/+1
|
* update package gstreamer and pluginsTony Theodore2013-01-051-1/+1
|
* update package gstreamer and pluginsTony Theodore2012-12-081-1/+1
|
* packages gstreamer gst-plugins-base gst-plugins-good: revert to stable versionsMark Brand2012-06-181-1/+1
|
* update packages gstreamer gst-plugins-base gst-plugins-goodMark Brand2012-06-181-3/+3
|
* 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 packags: atk glibmm gnutls gst-plugins-base gst-plugins-good ↵Mark Brand2011-06-201-2/+2
| | | | gstreamer gtk2 imagemagick x264
* update packages: cairomm glibmm gst* x264Mark Brand2011-05-101-2/+2
|
* update packages: glib gst-plugins-good libsigc++ libvpxMark Brand2011-03-091-2/+2
|
* rename gtk-->gtk2 in preparation for gtk3Tony Theodore2011-02-211-1/+1
|
* packages gstreamer gst-plugins-base gst-plugins-good: tidy upMark Brand2011-01-221-2/+0
|
* upgrade packages gstreamer gst-plugins-base gst-plugins-goodMark Brand2011-01-221-2/+2
|
* portability fix for package gstreamer and plugins using upstream patchesTony Theodore2010-12-051-0/+2
|
* revert previous portability hackTony Theodore2010-12-051-1/+0
|
* portability fix for package gstreamer and pluginsTony Theodore2010-12-031-0/+1
| | | | | | | | | Recent autotools macro (or gstreamer specific?) AG_GST_SET_PACKAGE_RELEASE_DATETIME_WITH_NANO introduces an extraneous dot that fails on FreeBSD. Use $(SED) replacement to fix ./configure as a proper fix requires too much knowledge of autotools/gstreamer internals.
* upgrade packages: freetype gst-plugins-base gst-plugins-good gstreamer ↵Volker Grabsch2010-12-021-2/+2
| | | | imagemagick lcms libusb openssl x264
* remove $(PKG)_IGNORE entries that are no longer neededVolker Grabsch2010-10-041-1/+1
|
* explicitly disable X for package gst-plugins-goodMark Brand2010-09-071-0/+1
| | | | | Apparently native X libs are detected on Mac and this leads to natve include directory being used. This should fix it.
* update packages: gst-plugins-good libpano13 pixmanMark Brand2010-09-031-2/+2
|