annotate src/gnuplot.mk @ 4177:16b2ee1a1b5d

gnuplot: update for 5.0.4 * src/gnuplot.mk: update version, checksum * src/gnuplot-1-fixes.patch: updated patch
author "lostbard" <john.donoghue@ieee.org>
date Fri, 15 Jul 2016 10:24:05 -0400
parents 717e989767e3
children 8f864b4ea93b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2891
848118c648ae Include gnuplot as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
1 # This file is part of MXE.
848118c648ae Include gnuplot as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
2 # See index.html for further information.
848118c648ae Include gnuplot as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
3
848118c648ae Include gnuplot as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
4 PKG := gnuplot
848118c648ae Include gnuplot as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
5 $(PKG)_IGNORE :=
4177
16b2ee1a1b5d gnuplot: update for 5.0.4
"lostbard" <john.donoghue@ieee.org>
parents: 4151
diff changeset
6 $(PKG)_VERSION := 5.0.4
16b2ee1a1b5d gnuplot: update for 5.0.4
"lostbard" <john.donoghue@ieee.org>
parents: 4151
diff changeset
7 $(PKG)_CHECKSUM := 3a616a1beca8e86662afcc9d368aad6847ed4e0f
2891
848118c648ae Include gnuplot as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
8 $(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
848118c648ae Include gnuplot as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
9 $(PKG)_FILE := gnuplot-$($(PKG)_VERSION).tar.gz
3281
53c8b9c843c6 Update gnuplot to 4.6.4
John Donoghue <john.donoghue@ieee.org>
parents: 3221
diff changeset
10 $(PKG)_URL := http://sourceforge.net/projects/gnuplot/files/gnuplot/$($(PKG)_VERSION)/$($(PKG)_FILE)
3048
5ef49fb3299d treat gcc and binutils as build tools
John W. Eaton <jwe@octave.org>
parents: 3022
diff changeset
11 $(PKG)_DEPS :=
2891
848118c648ae Include gnuplot as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
12
3668
ceeb3ec75690 gnuplot: provide way to specify where iconv is
John Donoghue
parents: 3577
diff changeset
13 ifeq ($(MXE_NATIVE_MINGW_BUILD),yes)
ceeb3ec75690 gnuplot: provide way to specify where iconv is
John Donoghue
parents: 3577
diff changeset
14 $(PKG)_EXTRAFLAGS := ICONV_CFLAGS='-I$(HOST_INCDIR)' ICONV_LDFLAGS='-L$(HOST_LIBDIR)'
ceeb3ec75690 gnuplot: provide way to specify where iconv is
John Donoghue
parents: 3577
diff changeset
15 endif
ceeb3ec75690 gnuplot: provide way to specify where iconv is
John Donoghue
parents: 3577
diff changeset
16
2891
848118c648ae Include gnuplot as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
17 define $(PKG)_UPDATE
848118c648ae Include gnuplot as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
18 echo 'Warning: Updates are temporarily disabled for package gnuplot.' >&2;
848118c648ae Include gnuplot as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
19 echo $(gnuplot_VERSION)
848118c648ae Include gnuplot as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
20 endef
848118c648ae Include gnuplot as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
21
2997
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2990
diff changeset
22 ifeq ($(MXE_SYSTEM),mingw)
2891
848118c648ae Include gnuplot as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
23 define $(PKG)_BUILD
3668
ceeb3ec75690 gnuplot: provide way to specify where iconv is
John Donoghue
parents: 3577
diff changeset
24 make -C '$(1)/config/mingw' $($(PKG)_EXTRAFLAGS) CC='$(MXE_CC)' CXX='$(MXE_CXX)' RC='$(MXE_WINDRES)' -j '$(JOBS)' TARGET=gnuplot.exe gnuplot.exe
ceeb3ec75690 gnuplot: provide way to specify where iconv is
John Donoghue
parents: 3577
diff changeset
25 make -C '$(1)/config/mingw' $($(PKG)_EXTRAFLAGS) CC='$(MXE_CC)' CXX='$(MXE_CXX)' RC='$(MXE_WINDRES)' -j '$(JOBS)' TARGET=wgnuplot.exe wgnuplot.exe
2891
848118c648ae Include gnuplot as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
26
3293
cf6f40cededb Support file list generation in packages.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3281
diff changeset
27 $(INSTALL) -d '$(3)$(HOST_BINDIR)'
cf6f40cededb Support file list generation in packages.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3281
diff changeset
28 $(INSTALL) -m755 '$(1)/config/mingw/gnuplot.exe' '$(3)$(HOST_BINDIR)'
cf6f40cededb Support file list generation in packages.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3281
diff changeset
29 $(INSTALL) -m755 '$(1)/config/mingw/wgnuplot.exe' '$(3)$(HOST_BINDIR)'
cf6f40cededb Support file list generation in packages.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3281
diff changeset
30 $(INSTALL) -m644 '$(1)/src/win/wgnuplot.mnu' '$(3)$(HOST_BINDIR)'
2891
848118c648ae Include gnuplot as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
31
3577
1ab2022ff6c7 gnuplot: In mingw, install required auxillary files
John Donoghue <john.donoghue@ieee.org>
parents: 3480
diff changeset
32 # config files
1ab2022ff6c7 gnuplot: In mingw, install required auxillary files
John Donoghue <john.donoghue@ieee.org>
parents: 3480
diff changeset
33 $(INSTALL) -d '$(3)$(HOST_PREFIX)/share'
1ab2022ff6c7 gnuplot: In mingw, install required auxillary files
John Donoghue <john.donoghue@ieee.org>
parents: 3480
diff changeset
34 $(INSTALL) -m644 '$(1)/share/gnuplotrc' '$(3)$(HOST_PREFIX)/share/'
1ab2022ff6c7 gnuplot: In mingw, install required auxillary files
John Donoghue <john.donoghue@ieee.org>
parents: 3480
diff changeset
35
1ab2022ff6c7 gnuplot: In mingw, install required auxillary files
John Donoghue <john.donoghue@ieee.org>
parents: 3480
diff changeset
36 for f in $(1)/share/*.gp; do \
1ab2022ff6c7 gnuplot: In mingw, install required auxillary files
John Donoghue <john.donoghue@ieee.org>
parents: 3480
diff changeset
37 $(INSTALL) -m644 "$$f" '$(3)$(HOST_PREFIX)/share/'; \
1ab2022ff6c7 gnuplot: In mingw, install required auxillary files
John Donoghue <john.donoghue@ieee.org>
parents: 3480
diff changeset
38 done
1ab2022ff6c7 gnuplot: In mingw, install required auxillary files
John Donoghue <john.donoghue@ieee.org>
parents: 3480
diff changeset
39
1ab2022ff6c7 gnuplot: In mingw, install required auxillary files
John Donoghue <john.donoghue@ieee.org>
parents: 3480
diff changeset
40 # terminal support
1ab2022ff6c7 gnuplot: In mingw, install required auxillary files
John Donoghue <john.donoghue@ieee.org>
parents: 3480
diff changeset
41 $(INSTALL) -d '$(3)$(HOST_PREFIX)/share/PostScript'
1ab2022ff6c7 gnuplot: In mingw, install required auxillary files
John Donoghue <john.donoghue@ieee.org>
parents: 3480
diff changeset
42 for f in $(1)/term/PostScript/*.ps; do \
1ab2022ff6c7 gnuplot: In mingw, install required auxillary files
John Donoghue <john.donoghue@ieee.org>
parents: 3480
diff changeset
43 $(INSTALL) -m644 "$$f" '$(3)$(HOST_PREFIX)/share/PostScript/'; \
1ab2022ff6c7 gnuplot: In mingw, install required auxillary files
John Donoghue <john.donoghue@ieee.org>
parents: 3480
diff changeset
44 done
1ab2022ff6c7 gnuplot: In mingw, install required auxillary files
John Donoghue <john.donoghue@ieee.org>
parents: 3480
diff changeset
45 for f in $(1)/term/PostScript/*.txt; do \
1ab2022ff6c7 gnuplot: In mingw, install required auxillary files
John Donoghue <john.donoghue@ieee.org>
parents: 3480
diff changeset
46 $(INSTALL) -m644 "$$f" '$(3)$(HOST_PREFIX)/share/PostScript/'; \
1ab2022ff6c7 gnuplot: In mingw, install required auxillary files
John Donoghue <john.donoghue@ieee.org>
parents: 3480
diff changeset
47 done
1ab2022ff6c7 gnuplot: In mingw, install required auxillary files
John Donoghue <john.donoghue@ieee.org>
parents: 3480
diff changeset
48
3293
cf6f40cededb Support file list generation in packages.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3281
diff changeset
49 ## MG: not sure what to do with these and how to integrate with DESTDIR
3012
100e618349f7 Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents: 2997
diff changeset
50 $(INSTALL) -d '$(TOP_DIR)/gnuplot/bin'
100e618349f7 Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents: 2997
diff changeset
51 $(INSTALL) -m755 '$(1)/config/mingw/gnuplot.exe' '$(TOP_DIR)/gnuplot/bin/'
100e618349f7 Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents: 2997
diff changeset
52 $(INSTALL) -m755 '$(1)/config/mingw/wgnuplot.exe' '$(TOP_DIR)/gnuplot/bin/'
3281
53c8b9c843c6 Update gnuplot to 4.6.4
John Donoghue <john.donoghue@ieee.org>
parents: 3221
diff changeset
53 $(INSTALL) -m644 '$(1)/src/win/wgnuplot.mnu' '$(TOP_DIR)/gnuplot/bin/'
2990
5329f4891fb7 build our own bison and flex
John W. Eaton <jwe@octave.org>
parents: 2891
diff changeset
54
2891
848118c648ae Include gnuplot as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
55 endef
2997
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2990
diff changeset
56 else
3115
0e869df2f0ff [MSVC] enable gnuplot compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
57 ifeq ($(MXE_SYSTEM),msvc)
0e869df2f0ff [MSVC] enable gnuplot compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
58 define $(PKG)_BUILD
3293
cf6f40cededb Support file list generation in packages.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3281
diff changeset
59 $(INSTALL) -d '$(3)$(HOST_PREFIX)'
3115
0e869df2f0ff [MSVC] enable gnuplot compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
60 cd '$(1)/config/msvc' && \
0e869df2f0ff [MSVC] enable gnuplot compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
61 env -u MAKE -u MAKEFLAGS nmake DESTDIR=$(shell (cd '$(HOST_PREFIX)' && pwd -W) | sed -e 's#/#\\\\#g') && \
3293
cf6f40cededb Support file list generation in packages.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3281
diff changeset
62 env -u MAKE -u MAKEFLAGS nmake DESTDIR=$(shell (cd '$(3)$(HOST_PREFIX)' && pwd -W) | sed -e 's#/#\\\\#g') install
3115
0e869df2f0ff [MSVC] enable gnuplot compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
63 endef
0e869df2f0ff [MSVC] enable gnuplot compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
64 else
2997
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2990
diff changeset
65 define $(PKG)_BUILD
3221
c05da3e2f652 gnuplot.mk: find locally built libiconv for native builds
John W. Eaton <jwe@octave.org>
parents: 3115
diff changeset
66 cd '$(1)' && ./configure \
c05da3e2f652 gnuplot.mk: find locally built libiconv for native builds
John W. Eaton <jwe@octave.org>
parents: 3115
diff changeset
67 $(CONFIGURE_CPPFLAGS) $(CONFIGURE_LDFLAGS) LIBS=-liconv \
4149
aa31b3163501 workaround for gnuplot build on native build
Tatsuro Matsuoka <tmacchant@yahoo.co.jp>
parents: 3945
diff changeset
68 --without-lua --prefix='$(HOST_PREFIX)'
3293
cf6f40cededb Support file list generation in packages.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3281
diff changeset
69 make -C '$(1)' -j '$(JOBS)' install DESTDIR='$(3)'
2997
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2990
diff changeset
70 endef
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2990
diff changeset
71 endif
3115
0e869df2f0ff [MSVC] enable gnuplot compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
72 endif