summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJon Ringle <jon@ringle.org>2011-05-24 00:10:51 -0400
committerMichael Olbrich <m.olbrich@pengutronix.de>2011-05-27 19:56:48 +0200
commit8a650f8883864290e2a8fb56da5b157897fab404 (patch)
tree4d250fd36a825ece777e8bdbc634da8e24172fd6
parent344a9c9079126993b6ddf549c8c6c8e1e2d23ebc (diff)
downloadptxdist-8a650f8883864290e2a8fb56da5b157897fab404.tar.gz
ptxdist-8a650f8883864290e2a8fb56da5b157897fab404.tar.xz
host-lndir: support for linking local projects using lndir
Signed-off-by: Jon Ringle <jon@ringle.org> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
-rw-r--r--rules/host-lndir.in6
-rw-r--r--rules/host-lndir.make36
2 files changed, 42 insertions, 0 deletions
diff --git a/rules/host-lndir.in b/rules/host-lndir.in
new file mode 100644
index 000000000..4a52ba31f
--- /dev/null
+++ b/rules/host-lndir.in
@@ -0,0 +1,6 @@
+## SECTION=hosttools_noprompt
+
+config HOST_LNDIR
+ bool
+ default y
+ select HOST_XORG_PROTO_X
diff --git a/rules/host-lndir.make b/rules/host-lndir.make
new file mode 100644
index 000000000..eef5ae46a
--- /dev/null
+++ b/rules/host-lndir.make
@@ -0,0 +1,36 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2011 by Jon Ringle
+#
+# 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
+#
+LAZY_PACKAGES-$(PTXCONF_HOST_LNDIR) += host-lndir
+
+#
+# Paths and names
+#
+HOST_LNDIR_VERSION := 1.0.2
+HOST_LNDIR_MD5 := 619acbb2ed766d7762f02328513b1f72
+HOST_LNDIR := lndir-$(HOST_LNDIR_VERSION)
+HOST_LNDIR_SUFFIX := tar.bz2
+HOST_LNDIR_URL := http://ftp.x.org/pub/individual/util/$(HOST_LNDIR).$(HOST_LNDIR_SUFFIX)
+HOST_LNDIR_SOURCE := $(SRCDIR)/$(HOST_LNDIR).$(HOST_LNDIR_SUFFIX)
+HOST_LNDIR_DIR := $(HOST_BUILDDIR)/$(HOST_LNDIR)
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+#
+# autoconf
+#
+HOST_LNDIR_CONF_TOOL := autoconf
+
+# vim: syntax=make