annotate src/xvidcore.mk @ 4026:28fa86d2cf21

ffmpeg: mods for native linux build of ffmpeg * src/ffmpeg.mk: add native build rule * src/libvpx-1-fixes.patch: update patch from mxe.cc * src/libvpx.mk: update to version 1.4.0, add native build rule * src/sdl-1-xdata.patch" new patch file * src/sdl.mk: add native build rule * src/xvidcore.mk: add native build rule
author John D
date Sat, 12 Sep 2015 20:35:11 -0400
parents 8114d05101dc
children c4a341e3e014
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2333
f653602a0500 Rebrand to new project name MXE
Volker Grabsch <vog@notjusthosting.com>
parents: 2153
diff changeset
1 # This file is part of MXE.
2353
99516e73b368 Move doc/index.html -> index.html
Volker Grabsch <vog@notjusthosting.com>
parents: 2349
diff changeset
2 # See index.html for further information.
1023
7297c0adc12a new package: xvidcore
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
3
7297c0adc12a new package: xvidcore
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
4 PKG := xvidcore
7297c0adc12a new package: xvidcore
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
5 $(PKG)_IGNORE :=
3626
3959e3b1fcbf xvidcore: update version, enable shared lib
John Donoghue <john.donoghue@ieee.org>
parents: 3561
diff changeset
6 $(PKG)_VERSION := 1.3.3
3959e3b1fcbf xvidcore: update version, enable shared lib
John Donoghue <john.donoghue@ieee.org>
parents: 3561
diff changeset
7 $(PKG)_CHECKSUM := 465763c92679ca230526d4890d17dbf6d6974b08
1023
7297c0adc12a new package: xvidcore
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
8 $(PKG)_SUBDIR := xvidcore/build/generic
7297c0adc12a new package: xvidcore
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
9 $(PKG)_FILE := xvidcore-$($(PKG)_VERSION).tar.gz
7297c0adc12a new package: xvidcore
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
10 $(PKG)_URL := http://downloads.xvid.org/downloads/$($(PKG)_FILE)
3048
5ef49fb3299d treat gcc and binutils as build tools
John W. Eaton <jwe@octave.org>
parents: 3014
diff changeset
11 $(PKG)_DEPS := pthreads
1023
7297c0adc12a new package: xvidcore
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
12
7297c0adc12a new package: xvidcore
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
13 define $(PKG)_UPDATE
3561
ae4193aad5fe revise and enable more $(PKG)_UPDATE rules
John W. Eaton <jwe@octave.org>
parents: 3480
diff changeset
14 echo 'Warning: Updates are temporarily disabled for package $(PKG).' >&2;
ae4193aad5fe revise and enable more $(PKG)_UPDATE rules
John W. Eaton <jwe@octave.org>
parents: 3480
diff changeset
15 echo $($(PKG)_VERSION)
1023
7297c0adc12a new package: xvidcore
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
16 endef
7297c0adc12a new package: xvidcore
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
17
4026
28fa86d2cf21 ffmpeg: mods for native linux build of ffmpeg
John D
parents: 4024
diff changeset
18 ifeq ($(MXE_NATIVE_BUILD),no)
1023
7297c0adc12a new package: xvidcore
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
19 define $(PKG)_BUILD
1714
8aba3acd6389 don't remove the "-mno-cygwin" flag, but provide clean bugfixes instead for packages fltk and xvidcore
Mark Brand <mabrand@mabrand.nl>
parents: 1696
diff changeset
20 cd '$(1)' && autoconf
1025
d563764317d0 remove the unnecessary call to ./bootstrap.sh in package xvidcore
Volker Grabsch <vog@notjusthosting.com>
parents: 1023
diff changeset
21 cd '$(1)' && ./configure \
3013
bcc26ffe9a0f use variable for --host and --build configure arguments
John W. Eaton <jwe@octave.org>
parents: 3012
diff changeset
22 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
3012
100e618349f7 Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents: 3006
diff changeset
23 --prefix='$(HOST_PREFIX)'
3626
3959e3b1fcbf xvidcore: update version, enable shared lib
John Donoghue <john.donoghue@ieee.org>
parents: 3561
diff changeset
24 $(MAKE) -C '$(1)' -j '$(JOBS)' BUILD_DIR='build' $(if $(filter $(BUILD_STATIC), yes),SHARED,STATIC)_LIB=
3014
b6c7244a2f66 Use HOST_BINDIR, HOST_LIBDIR, and HOST_INCDIR instead of MXE_BINDIR, MXE_LIBDIR, and MXE_INCDIR. Attempt to use these variables consistently instead of using $(HOST_PREFIX)/bin, $(HOST_PREFIX)/lib, and $(HOST_PREFIX)/include
John W. Eaton <jwe@octave.org>
parents: 3013
diff changeset
25 $(INSTALL) -d '$(HOST_INCDIR)'
b6c7244a2f66 Use HOST_BINDIR, HOST_LIBDIR, and HOST_INCDIR instead of MXE_BINDIR, MXE_LIBDIR, and MXE_INCDIR. Attempt to use these variables consistently instead of using $(HOST_PREFIX)/bin, $(HOST_PREFIX)/lib, and $(HOST_PREFIX)/include
John W. Eaton <jwe@octave.org>
parents: 3013
diff changeset
26 $(INSTALL) -m644 '$(1)/../../src/xvid.h' '$(HOST_INCDIR)'
b6c7244a2f66 Use HOST_BINDIR, HOST_LIBDIR, and HOST_INCDIR instead of MXE_BINDIR, MXE_LIBDIR, and MXE_INCDIR. Attempt to use these variables consistently instead of using $(HOST_PREFIX)/bin, $(HOST_PREFIX)/lib, and $(HOST_PREFIX)/include
John W. Eaton <jwe@octave.org>
parents: 3013
diff changeset
27 $(INSTALL) -d '$(HOST_LIBDIR)'
3626
3959e3b1fcbf xvidcore: update version, enable shared lib
John Donoghue <john.donoghue@ieee.org>
parents: 3561
diff changeset
28 $(INSTALL) -d '$(HOST_BINDIR)'
3959e3b1fcbf xvidcore: update version, enable shared lib
John Donoghue <john.donoghue@ieee.org>
parents: 3561
diff changeset
29 if [ "x$(BUILD_STATIC)" == "xyes" ]; then \
3959e3b1fcbf xvidcore: update version, enable shared lib
John Donoghue <john.donoghue@ieee.org>
parents: 3561
diff changeset
30 $(INSTALL) -m644 '$(1)/build/xvidcore.a' '$(HOST_LIBDIR)/libxvidcore.a'; \
3959e3b1fcbf xvidcore: update version, enable shared lib
John Donoghue <john.donoghue@ieee.org>
parents: 3561
diff changeset
31 else \
4024
8114d05101dc ffmpeg: update to v2.7.2
John Donoghue
parents: 3626
diff changeset
32 $(INSTALL) -m644 '$(1)/build/xvidcore.dll.a' '$(HOST_LIBDIR)/libxvidcore.dll.a'; \
3626
3959e3b1fcbf xvidcore: update version, enable shared lib
John Donoghue <john.donoghue@ieee.org>
parents: 3561
diff changeset
33 $(INSTALL) -m644 '$(1)/build/xvidcore.dll' '$(HOST_BINDIR)/libxvidcore.dll'; \
3959e3b1fcbf xvidcore: update version, enable shared lib
John Donoghue <john.donoghue@ieee.org>
parents: 3561
diff changeset
34 fi
1023
7297c0adc12a new package: xvidcore
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
35 endef
4026
28fa86d2cf21 ffmpeg: mods for native linux build of ffmpeg
John D
parents: 4024
diff changeset
36 else
28fa86d2cf21 ffmpeg: mods for native linux build of ffmpeg
John D
parents: 4024
diff changeset
37 define $(PKG)_BUILD
28fa86d2cf21 ffmpeg: mods for native linux build of ffmpeg
John D
parents: 4024
diff changeset
38 cd '$(1)' && autoconf
28fa86d2cf21 ffmpeg: mods for native linux build of ffmpeg
John D
parents: 4024
diff changeset
39 cd '$(1)' && ./configure \
28fa86d2cf21 ffmpeg: mods for native linux build of ffmpeg
John D
parents: 4024
diff changeset
40 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
28fa86d2cf21 ffmpeg: mods for native linux build of ffmpeg
John D
parents: 4024
diff changeset
41 --prefix='$(HOST_PREFIX)' \
28fa86d2cf21 ffmpeg: mods for native linux build of ffmpeg
John D
parents: 4024
diff changeset
42 $(ENABLE_SHARED_OR_STATIC) \
28fa86d2cf21 ffmpeg: mods for native linux build of ffmpeg
John D
parents: 4024
diff changeset
43 --prefix='$(HOST_PREFIX)'
28fa86d2cf21 ffmpeg: mods for native linux build of ffmpeg
John D
parents: 4024
diff changeset
44 $(MAKE) -C '$(1)' -j '$(JOBS)' BUILD_DIR='build'
28fa86d2cf21 ffmpeg: mods for native linux build of ffmpeg
John D
parents: 4024
diff changeset
45 $(MAKE) -C '$(1)' -j 1 BUILD_DIR='build' install
28fa86d2cf21 ffmpeg: mods for native linux build of ffmpeg
John D
parents: 4024
diff changeset
46 endef
28fa86d2cf21 ffmpeg: mods for native linux build of ffmpeg
John D
parents: 4024
diff changeset
47 endif