Commit Graph

36 Commits

Author SHA1 Message Date
Viktor Szakats b9a47e838a Secure URLs 2018-07-27 12:18:03 +10:00
Tony Theodore 01e2a64d00 cross packages: replace dependency gcc with cc 2017-12-23 08:19:00 +11:00
Viktor Szakats 5d93c47715 xvid.org -> xvid.com 2017-03-04 19:39:50 +01:00
Viktor Szakats e961e447fb URL updates 2017-03-04 10:33:47 +00: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
Boris Nagaev 5d90187908 xvidcore: _SUBDIR is top-level directory
See https://github.com/mxe/mxe/pull/1454#issuecomment-235508913
2016-08-12 09:07:31 +03:00
Tony Theodore 3b8063e52c xvidcore: update 1.3.3 --> 1.3.4 2015-12-02 13:13:31 +11:00
Tony Theodore fc0ed34fb9 all packages: really use sha256 checksums 2015-09-23 18:32:58 +10:00
Tony Theodore a228c0488f all packages: switch to sha256 checksums
closes #871
2015-09-23 17:27:16 +10:00
Timothy Gu f4de8cfc99 Update xvidcore
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
2014-05-09 23:47:58 -04:00
Timothy Gu ca67cde2e5 Fix xvidcore update macro
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
2014-05-08 20:55:44 -07:00
Tony Theodore 0dbf9f8f15 package xvidcore: fix static install 2014-03-31 13:57:34 +11:00
Timothy Gu 83dfecd42e Fix libxvidcore shared DLL location
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
2014-03-20 19:59:40 -07:00
Tony Theodore c950f3635c various packages: enable shared builds 2014-02-10 16:33:26 +11:00
Tony Theodore c5169b3d3d package xvidcore: fix x86_64-w64-mingw32 build 2013-08-01 00:31:20 +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
Tony Theodore 127e0a4fee package xvidcore: disable parallel build 2013-01-08 13:06:30 +11:00
Tony Theodore 4ed13a9f30 all packages: use $(WGET) portability variable 2012-05-16 17:49:40 +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
Volker Grabsch 98a2ee286d improved coding style regarding creation of symlinks 2011-08-15 12:40:35 +02: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 dbed610cc7 don't remove the "-mno-cygwin" flag, but provide clean bugfixes instead for packages fltk and xvidcore 2011-03-28 00:13:53 +02:00
Mark Brand f2bfaea572 package xvidcore: workaround for gcc 4.6 2011-03-26 00:57:34 +01:00
Mark Brand b8b317f413 update package xvidcore 2011-03-25 18:55:39 +01:00
Tony Theodore 3bb2b8fcae update packages glew, gtkmm, imagemagick, pangomm, suitesparse, x264, xvidcore 2011-03-01 23:09:17 +11:00
Tony Theodore e384ed1af2 package xvidcore: enable assembly since yasm is now present 2010-10-03 22:24:49 +11:00
Tony Theodore 8caecd3e69 improve ffmpeg: move link creation to respective packages 2010-09-20 22:20:00 +10:00
Volker Grabsch 5001854415 wine fix for package xvidcore (by Tony Theodore) 2010-06-06 00:17:24 +02:00
Volker Grabsch f09230f491 remove the unnecessary call to ./bootstrap.sh in package xvidcore 2010-06-01 01:28:41 +02:00
Volker Grabsch e6cf0850fd new package: xvidcore 2010-05-31 16:26:25 +02:00