annotate src/of-dicom.mk @ 5893:53a6c7df43f8

Mesa 3D: Update to version 21.1.8. * src/mesa.mk: Update version and checksum. * src/mesa-2-uninitialized.patch: Remove file. * dist-files.mk: Remove file from list.
author Markus Mützel <markus.muetzel@gmx.de>
date Thu, 16 Sep 2021 22:37:45 +0200
parents b19fb3ed330c
children b1e81eceee1d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3424
da62528d53fb Add octave forge dicom package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
1 # This file is part of MXE.
da62528d53fb Add octave forge dicom package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
2 # See index.html for further information.
da62528d53fb Add octave forge dicom package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
3
da62528d53fb Add octave forge dicom package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
4 PKG := of-dicom
da62528d53fb Add octave forge dicom package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
5 $(PKG)_IGNORE :=
5535
9b92b671cbdc * src/of-dicom.mk: update to v0.4.0
John Donoghue <john.donoghue@ieee.org>
parents: 5345
diff changeset
6 $(PKG)_VERSION := 0.4.0
9b92b671cbdc * src/of-dicom.mk: update to v0.4.0
John Donoghue <john.donoghue@ieee.org>
parents: 5345
diff changeset
7 $(PKG)_CHECKSUM := 23c207e1fbb8afaf5c9c6519faaa5be7aa973830
5541
d862fd40cc42 Use ccache for packages built with cmake.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5535
diff changeset
8 $(PKG)_REMOTE_SUBDIR :=
4356
2dbbba3cfa86 of-dicom: update to 0.2.0
John D
parents: 4289
diff changeset
9 $(PKG)_SUBDIR := dicom-$($(PKG)_VERSION)
3424
da62528d53fb Add octave forge dicom package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
10 $(PKG)_FILE := dicom-$($(PKG)_VERSION).tar.gz
da62528d53fb Add octave forge dicom package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
11 $(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/octave/$($(PKG)_FILE)?download
4828
6dd354a8787b of-dicom: don't depend on cmake
John W. Eaton <jwe@octave.org>
parents: 4684
diff changeset
12 $(PKG)_DEPS := gdcm
3424
da62528d53fb Add octave forge dicom package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
13
4449
1933a9113e65 of-*: add octave as a dependancy to the of packages is binary enable is set (Bug #46235)
John D
parents: 4386
diff changeset
14 ifeq ($(ENABLE_BINARY_PACKAGES),yes)
1933a9113e65 of-*: add octave as a dependancy to the of packages is binary enable is set (Bug #46235)
John D
parents: 4386
diff changeset
15 $(PKG)_DEPS += $(OCTAVE_TARGET)
1933a9113e65 of-*: add octave as a dependancy to the of packages is binary enable is set (Bug #46235)
John D
parents: 4386
diff changeset
16 endif
1933a9113e65 of-*: add octave as a dependancy to the of packages is binary enable is set (Bug #46235)
John D
parents: 4386
diff changeset
17
4356
2dbbba3cfa86 of-dicom: update to 0.2.0
John D
parents: 4289
diff changeset
18 ifeq ($(MXE_NATIVE_BUILD),no)
5571
b19fb3ed330c use cmake command line to set build shared/static options (bug #59373)
John W. Eaton <jwe@octave.org>
parents: 5541
diff changeset
19 $(PKG)_OPTIONS := CMAKE_BINARY="cmake $(CMAKE_CCACHE_FLAGS) $(CMAKE_BUILD_SHARED_OR_STATIC) -DCMAKE_TOOLCHAIN_FILE='$(CMAKE_TOOLCHAIN_FILE)'"
4356
2dbbba3cfa86 of-dicom: update to 0.2.0
John D
parents: 4289
diff changeset
20 else
5541
d862fd40cc42 Use ccache for packages built with cmake.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5535
diff changeset
21 $(PKG)_OPTIONS :=
4356
2dbbba3cfa86 of-dicom: update to 0.2.0
John D
parents: 4289
diff changeset
22 endif
2dbbba3cfa86 of-dicom: update to 0.2.0
John D
parents: 4289
diff changeset
23
3424
da62528d53fb Add octave forge dicom package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
24 define $(PKG)_UPDATE
4543
7d1e45c2f175 update: more PKG_UPDATE updates, added update-octaveforge target
John D
parents: 4449
diff changeset
25 $(OCTAVE_FORGE_PKG_UPDATE)
3424
da62528d53fb Add octave forge dicom package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
26 endef
da62528d53fb Add octave forge dicom package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
27
da62528d53fb Add octave forge dicom package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
28 define $(PKG)_BUILD
4684
0a5da48ccaaf of-dicom: fix gdcm cross detect issues, reenable dicom
John Donoghue
parents: 4661
diff changeset
29 $(call OCTAVE_FORGE_PKG_BUILD,$(1),$(2),$(3),$($(PKG)_OPTIONS))
3424
da62528d53fb Add octave forge dicom package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
30 endef