annotate src/agg.mk @ 2855:47558e958113

Allow static/shared libraries to be configured in top-level Makefile.
author John W. Eaton <jwe@octave.org>
date Thu, 15 Nov 2012 16:11:45 -0500
parents 4d0f3a9da57e
children 100e618349f7
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: 2153
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.
2149
bf5687570f1d new package agg
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
3
bf5687570f1d new package agg
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
4 PKG := agg
bf5687570f1d new package agg
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
5 $(PKG)_IGNORE :=
bf5687570f1d new package agg
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
6 $(PKG)_CHECKSUM := 08f23da64da40b90184a0414369f450115cdb328
bf5687570f1d new package agg
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
7 $(PKG)_SUBDIR := agg-$($(PKG)_VERSION)
bf5687570f1d new package agg
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
8 $(PKG)_FILE := agg-$($(PKG)_VERSION).tar.gz
bf5687570f1d new package agg
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
9 $(PKG)_URL := http://www.antigrain.com/$($(PKG)_FILE)
2152
63eeef8e03e9 package agg: portability fix and extra dependencies
Tony Theodore <tonyt@logyst.com>
parents: 2150
diff changeset
10 $(PKG)_DEPS := gcc freetype sdl
2149
bf5687570f1d new package agg
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
11
bf5687570f1d new package agg
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
12 define $(PKG)_UPDATE
2525
4d0f3a9da57e all packages: use $(WGET) portability variable
Tony Theodore <tonyt@logyst.com>
parents: 2365
diff changeset
13 $(WGET) -q -O- 'http://www.antigrain.com/download/index.html' | \
2149
bf5687570f1d new package agg
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
14 $(SED) -n 's,.*<A href="http://www.antigrain.com/agg-\([0-9.]*\).tar.gz".*,\1,p' | \
bf5687570f1d new package agg
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
15 head -1
bf5687570f1d new package agg
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
16 endef
bf5687570f1d new package agg
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
17
bf5687570f1d new package agg
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
18 define $(PKG)_BUILD
2152
63eeef8e03e9 package agg: portability fix and extra dependencies
Tony Theodore <tonyt@logyst.com>
parents: 2150
diff changeset
19 $(SED) -i 's,aclocal,aclocal -I $(PREFIX)/$(TARGET)/share/aclocal,' '$(1)/autogen.sh'
63eeef8e03e9 package agg: portability fix and extra dependencies
Tony Theodore <tonyt@logyst.com>
parents: 2150
diff changeset
20 $(SED) -i 's,libtoolize,$(LIBTOOLIZE),' '$(1)/autogen.sh'
2150
128b0f98fc89 touch up package agg
Mark Brand <mabrand@mabrand.nl>
parents: 2149
diff changeset
21 cd '$(1)' && $(SHELL) ./autogen.sh \
2149
bf5687570f1d new package agg
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
22 --host='$(TARGET)' \
2153
e4c83fa61a5b replaced $(BUILD) with a more direct and less brittle construct
Volker Grabsch <vog@notjusthosting.com>
parents: 2152
diff changeset
23 --build="`config.guess`" \
2855
47558e958113 Allow static/shared libraries to be configured in top-level Makefile.
John W. Eaton <jwe@octave.org>
parents: 2525
diff changeset
24 $(ENABLE_SHARED_OR_STATIC) \
2149
bf5687570f1d new package agg
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
25 --prefix='$(PREFIX)/$(TARGET)' \
bf5687570f1d new package agg
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
26 --without-x
bf5687570f1d new package agg
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
27 $(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
bf5687570f1d new package agg
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
28 endef