annotate src/pstoedit.mk @ 3812:82bd7cd7d06d

plotutils: create dlls, use with pstoedit * src/plotutils.mk: build dlls from static libs * src/pstoedit.mk: add plotutils as a dependancy of pstoedit
author John Donoghue
date Fri, 27 Feb 2015 08:19:06 -0500
parents 7bccd055043e
children ea3cab4018c5
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2952
09a58eb274f4 Include pstoedit as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
1 # This file is part of MXE.
09a58eb274f4 Include pstoedit as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
2 # See index.html for further information.
09a58eb274f4 Include pstoedit as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
3
09a58eb274f4 Include pstoedit as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
4 PKG := pstoedit
09a58eb274f4 Include pstoedit as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
5 $(PKG)_IGNORE :=
3608
7bccd055043e pstoedit: update to pstoedit 3.62, quote ghostscript path.
John Donoghue
parents: 3480
diff changeset
6 $(PKG)_VERSION := 3.62
7bccd055043e pstoedit: update to pstoedit 3.62, quote ghostscript path.
John Donoghue
parents: 3480
diff changeset
7 $(PKG)_CHECKSUM := 50d5a4e2fe0e0ff2f73cb094cb945b221083e742
2952
09a58eb274f4 Include pstoedit as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
8 $(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
09a58eb274f4 Include pstoedit as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
9 $(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz
09a58eb274f4 Include pstoedit as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
10 $(PKG)_URL := https://sourceforge.net/projects/pstoedit/files/$(PKG)/$($(PKG)_VERSION)/$($(PKG)_FILE)/download
3812
82bd7cd7d06d plotutils: create dlls, use with pstoedit
John Donoghue
parents: 3608
diff changeset
11 $(PKG)_DEPS := plotutils
2952
09a58eb274f4 Include pstoedit as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
12
09a58eb274f4 Include pstoedit as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
13 define $(PKG)_UPDATE
09a58eb274f4 Include pstoedit as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
14 echo 'Warning: Updates are temporarily disabled for package pstoedit.' >&2;
09a58eb274f4 Include pstoedit as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
15 echo $(pstoedit_VERSION)
09a58eb274f4 Include pstoedit as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
16 endef
09a58eb274f4 Include pstoedit as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
17
09a58eb274f4 Include pstoedit as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
18 define $(PKG)_BUILD
09a58eb274f4 Include pstoedit as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
19 cd '$(1)' && autoreconf
09a58eb274f4 Include pstoedit as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
20 mkdir '$(1)/.build'
09a58eb274f4 Include pstoedit as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
21 cd '$(1)/.build' && '$(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) \
3024
15cbbf983fa0 Update graphicsmagick and pstoedit to use XME_CONFIGURE flags.
John Donoghue <john.donoghue@ieee.org>
parents: 3013
diff changeset
23 $(CONFIGURE_CPPFLAGS) $(CONFIGURE_LDFLAGS) \
3124
824f84572d1e [MSVC] enable pstoedit compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
24 --prefix='$(HOST_PREFIX)' \
824f84572d1e [MSVC] enable pstoedit compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
25 && $(CONFIGURE_POST_HOOK)
2952
09a58eb274f4 Include pstoedit as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
26
3447
690a00576e5e don't build pstoedit in parallel
John W. Eaton <jwe@octave.org>
parents: 3293
diff changeset
27 $(MAKE) -C '$(1)/.build' -j 1 install DESTDIR='$(3)'
2952
09a58eb274f4 Include pstoedit as a dependency of Octave
John W. Eaton <jwe@octave.org>
parents:
diff changeset
28 endef