annotate src/agg.mk @ 2365:b5321bdec505

Move full package names from src/*.mk into package list (index.html)
author Volker Grabsch <vog@notjusthosting.com>
date Thu, 29 Mar 2012 21:41:44 +0200
parents 8765dd817dca
children 4d0f3a9da57e
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
bf5687570f1d new package agg
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
13 wget -q -O- 'http://www.antigrain.com/download/index.html' | \
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`" \
2149
bf5687570f1d new package agg
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
24 --disable-shared \
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