annotate src/texinfo.mk @ 3579:63798d0032c2

texinfo: revert back to 4.13a * src/texinfo-1-fixes.patch: old patch * src/texinfo.mk: change version to 4.13a.
author John Donoghue
date Wed, 23 Apr 2014 14:32:50 -0400
parents 583d3bf548e6
children 4e90544559a3
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2951
01a2b5484d88 Include texinfo as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
1 # This file is part of MXE.
01a2b5484d88 Include texinfo as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
2 # See index.html for further information.
01a2b5484d88 Include texinfo as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
3
01a2b5484d88 Include texinfo as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
4 PKG := texinfo
01a2b5484d88 Include texinfo as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
5 $(PKG)_IGNORE :=
3579
63798d0032c2 texinfo: revert back to 4.13a
John Donoghue
parents: 3578
diff changeset
6 $(PKG)_VERSION := 4.13a
63798d0032c2 texinfo: revert back to 4.13a
John Donoghue
parents: 3578
diff changeset
7 $(PKG)_CHECKSUM := a1533cf8e03ea4fa6c443b73f4c85e4da04dead0
63798d0032c2 texinfo: revert back to 4.13a
John Donoghue
parents: 3578
diff changeset
8 $(PKG)_SUBDIR := $(PKG)-4.13
63798d0032c2 texinfo: revert back to 4.13a
John Donoghue
parents: 3578
diff changeset
9 $(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz
2951
01a2b5484d88 Include texinfo as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
10 $(PKG)_URL := ftp://ftp.gnu.org/gnu/texinfo/$($(PKG)_FILE)
2997
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2951
diff changeset
11 $(PKG)_DEPS := # libgnurx
2951
01a2b5484d88 Include texinfo as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
12
01a2b5484d88 Include texinfo as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
13 define $(PKG)_UPDATE
01a2b5484d88 Include texinfo as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
14 echo 'Warning: Updates are temporarily disabled for package texinfo.' >&2;
01a2b5484d88 Include texinfo as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
15 echo $(texinfo_VERSION)
01a2b5484d88 Include texinfo as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
16 endef
01a2b5484d88 Include texinfo as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
17
01a2b5484d88 Include texinfo as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
18 define $(PKG)_BUILD
3475
81544b3fe0ca update to texinfo 5.2
John W. Eaton <jwe@octave.org>
parents: 3293
diff changeset
19 mkdir '$(1).build'
81544b3fe0ca update to texinfo 5.2
John W. Eaton <jwe@octave.org>
parents: 3293
diff changeset
20 cd '$(1).build' && '$(1)/configure' \
2997
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2951
diff changeset
21 $(CONFIGURE_CPPFLAGS) $(CONFIGURE_LDFLAGS) \
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) \
3579
63798d0032c2 texinfo: revert back to 4.13a
John Donoghue
parents: 3578
diff changeset
23 --prefix='$(HOST_PREFIX)'
2951
01a2b5484d88 Include texinfo as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
24
3579
63798d0032c2 texinfo: revert back to 4.13a
John Donoghue
parents: 3578
diff changeset
25 ## All we need for Octave is makeinfo.
63798d0032c2 texinfo: revert back to 4.13a
John Donoghue
parents: 3578
diff changeset
26 $(MAKE) -C '$(1).build/lib' -j '$(JOBS)'
63798d0032c2 texinfo: revert back to 4.13a
John Donoghue
parents: 3578
diff changeset
27 $(MAKE) -C '$(1).build/gnulib/lib' -j '$(JOBS)'
63798d0032c2 texinfo: revert back to 4.13a
John Donoghue
parents: 3578
diff changeset
28 $(MAKE) -C '$(1).build/makeinfo' -j '$(JOBS)'
63798d0032c2 texinfo: revert back to 4.13a
John Donoghue
parents: 3578
diff changeset
29
63798d0032c2 texinfo: revert back to 4.13a
John Donoghue
parents: 3578
diff changeset
30 $(MAKE) -C '$(1).build/makeinfo' -j 1 install DESTDIR='$(3)'
2951
01a2b5484d88 Include texinfo as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
31 endef