comparison src/texinfo.mk @ 3578:583d3bf548e6

texinfo: update to 5.2 and install all tools * src/texinfo.mk: update to 5.2 and make/make install all. * src/texinfo-1-fixes.patch: updated patch for 5.2.
author John Donoghue <john.donoghue@ieee.org>
date Tue, 15 Apr 2014 21:32:17 -0400
parents 8d5ea2642115
children 63798d0032c2
comparison
equal deleted inserted replaced
3577:1ab2022ff6c7 3578:583d3bf548e6
1 # This file is part of MXE. 1 # This file is part of MXE.
2 # See index.html for further information. 2 # See index.html for further information.
3 3
4 PKG := texinfo 4 PKG := texinfo
5 $(PKG)_IGNORE := 5 $(PKG)_IGNORE :=
6 $(PKG)_VERSION := 4.13a 6 $(PKG)_VERSION := 5.2
7 $(PKG)_CHECKSUM := a1533cf8e03ea4fa6c443b73f4c85e4da04dead0 7 $(PKG)_CHECKSUM := dc54edfbb623d46fb400576b3da181f987e63516
8 $(PKG)_SUBDIR := $(PKG)-4.13 8 $(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
9 $(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz 9 $(PKG)_FILE := $($(PKG)_SUBDIR).tar.gz
10 $(PKG)_URL := ftp://ftp.gnu.org/gnu/texinfo/$($(PKG)_FILE) 10 $(PKG)_URL := ftp://ftp.gnu.org/gnu/texinfo/$($(PKG)_FILE)
11 $(PKG)_DEPS := # libgnurx 11 $(PKG)_DEPS := # libgnurx
12 12
13 define $(PKG)_UPDATE 13 define $(PKG)_UPDATE
14 echo 'Warning: Updates are temporarily disabled for package texinfo.' >&2; 14 echo 'Warning: Updates are temporarily disabled for package texinfo.' >&2;
18 define $(PKG)_BUILD 18 define $(PKG)_BUILD
19 mkdir '$(1).build' 19 mkdir '$(1).build'
20 cd '$(1).build' && '$(1)/configure' \ 20 cd '$(1).build' && '$(1)/configure' \
21 $(CONFIGURE_CPPFLAGS) $(CONFIGURE_LDFLAGS) \ 21 $(CONFIGURE_CPPFLAGS) $(CONFIGURE_LDFLAGS) \
22 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \ 22 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
23 --prefix='$(HOST_PREFIX)' 23 --prefix='$(HOST_PREFIX)' LIBS='-lpthread -lws2_32'
24 24
25 ## All we need for Octave is makeinfo. 25 $(MAKE) -C '$(1).build' -j '$(JOBS)'
26 $(MAKE) -C '$(1).build/lib' -j '$(JOBS)'
27 $(MAKE) -C '$(1).build/gnulib/lib' -j '$(JOBS)'
28 $(MAKE) -C '$(1).build/makeinfo' -j '$(JOBS)'
29 26
30 $(MAKE) -C '$(1).build/makeinfo' -j '$(JOBS)' install DESTDIR='$(3)' 27 $(MAKE) -C '$(1).build' -j '1' install DESTDIR='$(3)'
31 endef 28 endef