annotate src/pdflib_lite.mk @ 6215:d18a5545df0d release

build-gettext: Don't build emacs bindings. * src/build-gettext.mk: The `emacs` installed on the build system might be incompatible with the STL built by build-gcc. We probably don't need the emacs bindings for the `gettext` build tool anyway. So skip building those bindings.
author Markus Mützel <markus.muetzel@gmx.de>
date Sat, 07 May 2022 12:01:10 +0200
parents 4f1c4b172915
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2333
f653602a0500 Rebrand to new project name MXE
Volker Grabsch <vog@notjusthosting.com>
parents: 965
diff changeset
1 # This file is part of MXE.
2353
99516e73b368 Move doc/index.html -> index.html
Volker Grabsch <vog@notjusthosting.com>
parents: 2349
diff changeset
2 # See index.html for further information.
414
d2a6561bcb6d add a copyright notice and license to each source file
Volker Grabsch <vog@notjusthosting.com>
parents: 382
diff changeset
3
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 302
diff changeset
4 PKG := pdflib_lite
448
e9afec55fd6b improved version recognition, enable the notation of ignored (bad) package versions
Volker Grabsch <vog@notjusthosting.com>
parents: 417
diff changeset
5 $(PKG)_IGNORE :=
3480
13be64f9f16d move version info from index.html to src/*.mk files
John W. Eaton <jwe@octave.org>
parents: 3048
diff changeset
6 $(PKG)_VERSION := 7.0.5p3
2577
d1569d04b337 update package pdflib_lite
Mark Brand <mabrand@mabrand.nl>
parents: 2525
diff changeset
7 $(PKG)_CHECKSUM := 42e0605ae21f4b6d25fa2d20e78fed6df36fbaa9
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 302
diff changeset
8 $(PKG)_SUBDIR := PDFlib-Lite-$($(PKG)_VERSION)
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 302
diff changeset
9 $(PKG)_FILE := PDFlib-Lite-$($(PKG)_VERSION).tar.gz
377
61e5dba7175b update version of packages atk, curl, gcc, gdal, glib, gnutls, gtk, libevent, libidn, libntlm, libpng, nsis, pango, pdflib_lite, pixman, sqlite, tre and xmlwrapp
Volker Grabsch <vog@notjusthosting.com>
parents: 320
diff changeset
10 $(PKG)_URL := http://www.pdflib.com/binaries/PDFlib/$(subst .,,$(word 1,$(subst p, ,$($(PKG)_VERSION))))/$($(PKG)_FILE)
3048
5ef49fb3299d treat gcc and binutils as build tools
John W. Eaton <jwe@octave.org>
parents: 3013
diff changeset
11 $(PKG)_DEPS :=
170
194ae633dc3b translated package: pdflib_lite
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
12
194ae633dc3b translated package: pdflib_lite
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
13 define $(PKG)_UPDATE
4833
4f1c4b172915 * src/pdflib_lite.mk: disable package update rule
John Donoghue
parents: 3480
diff changeset
14 echo 'Warning: Updates are temporarily disabled for package $(PKG).' >&2;
4f1c4b172915 * src/pdflib_lite.mk: disable package update rule
John Donoghue
parents: 3480
diff changeset
15 echo $($(PKG)_VERSION)
170
194ae633dc3b translated package: pdflib_lite
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
16 endef
194ae633dc3b translated package: pdflib_lite
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
17
194ae633dc3b translated package: pdflib_lite
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
18 define $(PKG)_BUILD
2577
d1569d04b337 update package pdflib_lite
Mark Brand <mabrand@mabrand.nl>
parents: 2525
diff changeset
19 cd '$(1)' && aclocal -I config --install
d1569d04b337 update package pdflib_lite
Mark Brand <mabrand@mabrand.nl>
parents: 2525
diff changeset
20 cd '$(1)' && autoconf
170
194ae633dc3b translated package: pdflib_lite
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
21 cd '$(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) \
2855
47558e958113 Allow static/shared libraries to be configured in top-level Makefile.
John W. Eaton <jwe@octave.org>
parents: 2686
diff changeset
23 $(ENABLE_SHARED_OR_STATIC) \
3012
100e618349f7 Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents: 2855
diff changeset
24 --prefix='$(HOST_PREFIX)' \
170
194ae633dc3b translated package: pdflib_lite
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
25 --without-openssl \
194ae633dc3b translated package: pdflib_lite
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
26 --without-java \
194ae633dc3b translated package: pdflib_lite
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
27 --without-py \
194ae633dc3b translated package: pdflib_lite
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
28 --without-perl \
194ae633dc3b translated package: pdflib_lite
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
29 --without-ruby \
194ae633dc3b translated package: pdflib_lite
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
30 --without-tcl \
194ae633dc3b translated package: pdflib_lite
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
31 --enable-cxx \
194ae633dc3b translated package: pdflib_lite
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
32 --enable-large-files \
194ae633dc3b translated package: pdflib_lite
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
33 CFLAGS='-D_IOB_ENTRIES=20'
759
bf4bcb3370fa changed coding style: make "-i" always the first argument of $(SED) (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents: 714
diff changeset
34 $(SED) -i 's,-DPDF_PLATFORM=[^ ]* ,,' '$(1)/config/mkcommon.inc'
173
b279dbda0f54 improved parallel builds of packages 'binutils', 'pdflib_lite' and 'sdl'
Volker Grabsch <vog@notjusthosting.com>
parents: 170
diff changeset
35 $(MAKE) -C '$(1)/libs' -j '$(JOBS)'
b279dbda0f54 improved parallel builds of packages 'binutils', 'pdflib_lite' and 'sdl'
Volker Grabsch <vog@notjusthosting.com>
parents: 170
diff changeset
36 $(MAKE) -C '$(1)/libs' -j 1 install
170
194ae633dc3b translated package: pdflib_lite
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
37 endef