summaryrefslogtreecommitdiffstats
path: root/rules/host-autotools-autoconf.make
diff options
context:
space:
mode:
authorRobert Schwebel <r.schwebel@pengutronix.de>2009-10-23 12:48:15 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2009-10-26 12:43:41 +0100
commit4e148b52d8561658484582c8b68a71fde88ff744 (patch)
treede4aa64270bf095afff4af2e2158441cd1e18a35 /rules/host-autotools-autoconf.make
parentec01c44d5fdae7deab79e46033c777c511c06f31 (diff)
downloadptxdist-4e148b52d8561658484582c8b68a71fde88ff744.tar.gz
ptxdist-4e148b52d8561658484582c8b68a71fde88ff744.tar.xz
[host-autotools-autoconf] new packet
In order to get rid of the autogen patches, we need a set of autotools. This patch adds autoconf. Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de> [mkl: recreated .make file with recent templates] Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'rules/host-autotools-autoconf.make')
-rw-r--r--rules/host-autotools-autoconf.make54
1 files changed, 54 insertions, 0 deletions
diff --git a/rules/host-autotools-autoconf.make b/rules/host-autotools-autoconf.make
new file mode 100644
index 000000000..b95b49f65
--- /dev/null
+++ b/rules/host-autotools-autoconf.make
@@ -0,0 +1,54 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2009 by Marc Kleine-Budde <mkl@pengutronix.de>
+#
+# See CREDITS for details about who has contributed to this project.
+#
+# For further information about the PTXdist project and license conditions
+# see the README file.
+#
+
+#
+# We provide this package
+#
+HOST_PACKAGES-$(PTXCONF_HOST_AUTOTOOLS_AUTOCONF) += host-autotools-autoconf
+
+#
+# Paths and names
+#
+HOST_AUTOTOOLS_AUTOCONF_VERSION := 2.64
+HOST_AUTOTOOLS_AUTOCONF := autoconf-$(HOST_AUTOTOOLS_AUTOCONF_VERSION)
+HOST_AUTOTOOLS_AUTOCONF_SUFFIX := tar.bz2
+HOST_AUTOTOOLS_AUTOCONF_URL := $(PTXCONF_SETUP_GNUMIRROR)/autoconf/$(HOST_AUTOTOOLS_AUTOCONF).$(HOST_AUTOTOOLS_AUTOCONF_SUFFIX)
+HOST_AUTOTOOLS_AUTOCONF_SOURCE := $(SRCDIR)/$(HOST_AUTOTOOLS_AUTOCONF).$(HOST_AUTOTOOLS_AUTOCONF_SUFFIX)
+HOST_AUTOTOOLS_AUTOCONF_DIR := $(HOST_BUILDDIR)/$(HOST_AUTOTOOLS_AUTOCONF)
+
+# ----------------------------------------------------------------------------
+# Get
+# ----------------------------------------------------------------------------
+
+$(HOST_AUTOTOOLS_AUTOCONF_SOURCE):
+ @$(call targetinfo)
+ @$(call get, HOST_AUTOTOOLS_AUTOCONF)
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+HOST_AUTOTOOLS_AUTOCONF_PATH := PATH=$(HOST_PATH)
+HOST_AUTOTOOLS_AUTOCONF_ENV := $(HOST_ENV)
+
+#
+# autoconf
+#
+HOST_AUTOTOOLS_AUTOCONF_AUTOCONF := $(HOST_AUTOCONF)
+
+# ----------------------------------------------------------------------------
+# Clean
+# ----------------------------------------------------------------------------
+
+host-autotools-autoconf_clean:
+ rm -rf $(STATEDIR)/host-autotools-autoconf.*
+ rm -rf $(HOST_AUTOTOOLS_AUTOCONF_DIR)
+
+# vim: syntax=make