annotate src/transfig.mk @ 3725:2acaa9943159

qscintilla: update 2.8.4 * src/qscintilla.mk: update to version and checksum for 2.8.4
author John Donoghue
date Mon, 20 Oct 2014 11:01:00 -0400
parents 13be64f9f16d
children a7e6025bcb39
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3374
7b62537d0f8a Add transfig package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
1 # This file is part of MXE.
7b62537d0f8a Add transfig package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
2 # See index.html for further information.
7b62537d0f8a Add transfig package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
3
7b62537d0f8a Add transfig package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
4 PKG := transfig
7b62537d0f8a Add transfig package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
5 $(PKG)_IGNORE :=
3480
13be64f9f16d move version info from index.html to src/*.mk files
John W. Eaton <jwe@octave.org>
parents: 3374
diff changeset
6 $(PKG)_VERSION := 3.2.5e
3374
7b62537d0f8a Add transfig package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
7 $(PKG)_CHECKSUM := 27aa9691bf84f8775db9be39c453a8132148bad1
7b62537d0f8a Add transfig package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
8 $(PKG)_SUBDIR := $(PKG).$($(PKG)_VERSION)
7b62537d0f8a Add transfig package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
9 $(PKG)_FILE := $(PKG).$($(PKG)_VERSION).tar.gz
7b62537d0f8a Add transfig package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
10 $(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/mcj/mcj-source/$($(PKG)_FILE)
7b62537d0f8a Add transfig package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
11 $(PKG)_DEPS := jpeg libpng
7b62537d0f8a Add transfig package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
12
7b62537d0f8a Add transfig package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
13 define $(PKG)_UPDATE
7b62537d0f8a Add transfig package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
14 echo 'Warning: Updates are temporarily disabled for package $(PKG).' >&2;
7b62537d0f8a Add transfig package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
15 echo $($(PKG)_VERSION)
7b62537d0f8a Add transfig package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
16 endef
7b62537d0f8a Add transfig package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
17
7b62537d0f8a Add transfig package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
18 define $(PKG)_BUILD
7b62537d0f8a Add transfig package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
19 cd '$(1)' && chmod 755 configure && aclocal && automake --add-missing && autoconf \
7b62537d0f8a Add transfig package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
20 && $($(PKG)_CONFIGURE_ENV) '$(1)/configure' \
7b62537d0f8a Add transfig package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
21 BITMAPDIR="/share/$(PKG)/bitmaps" \
7b62537d0f8a Add transfig package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
22 RGB_FILE="/share/$(PKG)/rgb.txt" \
7b62537d0f8a Add transfig package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
23 $(CONFIGURE_CPPFLAGS) $(CONFIGURE_LDFLAGS) \
7b62537d0f8a Add transfig package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
24 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
7b62537d0f8a Add transfig package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
25 --prefix='$(HOST_PREFIX)'
7b62537d0f8a Add transfig package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
26
7b62537d0f8a Add transfig package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
27 $(MAKE) -C '$(1)' -j '$(JOBS)'
7b62537d0f8a Add transfig package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
28 $(MAKE) -C '$(1)' -j 1 install DESTDIR='$(3)'
7b62537d0f8a Add transfig package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
29 endef