# HG changeset patch # User John W. Eaton # Date 1357696430 18000 # Node ID 01a2b5484d887213a099d4d4cd5131cf898cda2e # Parent 1e4435f029c1b34c6022156eb5a28628e12ea0d5 Include texinfo as a dependency of Octave diff -r 1e4435f029c1 -r 01a2b5484d88 index.html --- a/index.html Tue Jan 08 20:38:38 2013 -0500 +++ b/index.html Tue Jan 08 20:53:50 2013 -0500 @@ -1959,6 +1959,11 @@ GNU termcap + texinfo + 4.13a + GNU Texinfo + + theora 1.1.1 Theora diff -r 1e4435f029c1 -r 01a2b5484d88 src/octave.mk --- a/src/octave.mk Tue Jan 08 20:38:38 2013 -0500 +++ b/src/octave.mk Tue Jan 08 20:53:50 2013 -0500 @@ -7,7 +7,7 @@ $(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION) $(PKG)_FILE := octave-$($(PKG)_VERSION).tar.gz $(PKG)_URL := ftp://alpha.gnu.org/gnu/octave/$($(PKG)_FILE) -$(PKG)_DEPS := arpack blas curl fftw fltk gcc glpk gnuplot graphicsmagick lapack llvm pcre qhull qrupdate qscintilla qt readline suitesparse zlib +$(PKG)_DEPS := arpack blas curl fftw fltk gcc glpk gnuplot graphicsmagick lapack llvm pcre qhull qrupdate qscintilla qt readline suitesparse texinfo zlib define $(PKG)_UPDATE echo 'Warning: Updates are temporarily disabled for package octave.' >&2; diff -r 1e4435f029c1 -r 01a2b5484d88 src/texinfo.mk --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/texinfo.mk Tue Jan 08 20:53:50 2013 -0500 @@ -0,0 +1,28 @@ +# This file is part of MXE. +# See index.html for further information. + +PKG := texinfo +$(PKG)_IGNORE := +$(PKG)_CHECKSUM := a1533cf8e03ea4fa6c443b73f4c85e4da04dead0 +$(PKG)_SUBDIR := $(PKG)-4.13 +$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz +$(PKG)_URL := ftp://ftp.gnu.org/gnu/texinfo/$($(PKG)_FILE) +$(PKG)_DEPS := libgnurx + +define $(PKG)_UPDATE + echo 'Warning: Updates are temporarily disabled for package texinfo.' >&2; + echo $(texinfo_VERSION) +endef + +define $(PKG)_BUILD + mkdir '$(1)/.build' + cd '$(1)/.build' && '$(1)/configure' \ + --host='$(TARGET)' \ + --build="`config.guess`" \ + --prefix='$(PREFIX)/$(TARGET)' + + ## All we need for Octave is makeinfo. + $(MAKE) -C '$(1)/.build/lib' -j '$(JOBS)' + $(MAKE) -C '$(1)/.build/gnulib/lib' -j '$(JOBS)' + $(MAKE) -C '$(1)/.build/makeinfo' -j '$(JOBS)' install +endef