summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2011-08-08 21:14:49 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2011-08-09 17:58:57 +0200
commit5c3aac3127208702561c00c5205f860e4aacde02 (patch)
tree93a66a2061e07cb1f518e1c6d426e2a408789c4e
parent4c99d6de27604494cbb844d361eea2d84c4ac558 (diff)
downloadptxdist-5c3aac3127208702561c00c5205f860e4aacde02.tar.gz
ptxdist-5c3aac3127208702561c00c5205f860e4aacde02.tar.xz
host-glade: remove
Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
-rw-r--r--rules/host-glade.in17
-rw-r--r--rules/host-glade.make41
2 files changed, 0 insertions, 58 deletions
diff --git a/rules/host-glade.in b/rules/host-glade.in
deleted file mode 100644
index a98a82bd6..000000000
--- a/rules/host-glade.in
+++ /dev/null
@@ -1,17 +0,0 @@
-## SECTION=host_gtk
-
-config HOST_GLADE
- tristate
- select HOST_LIBGLADE
- prompt "glade"
- help
- Glade is a RAD tool to enable quick and easy development of
- user interfaces for the GTK+ 2 toolkit. It also contains
- built-in support for generating the C source code needed to
- recreate the interfaces.
- The user interfaces designed in Glade are stored in the
- well-known XML format, enabling easy integration with
- external tools. Several tools are already available which
- can turn the XML files into source code in other languages
- such as C++, Perl and Python. Other tools such as libglade
- can load the XML files and create the interfaces at runtime.
diff --git a/rules/host-glade.make b/rules/host-glade.make
deleted file mode 100644
index 8fed0c7a4..000000000
--- a/rules/host-glade.make
+++ /dev/null
@@ -1,41 +0,0 @@
-# -*-makefile-*-
-#
-# Copyright (C) 2007 by Robert Schwebel <r.schwebel@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_GLADE) += host-glade
-
-ifdef PTXCONF_HOST_GLADE
-ifeq ($(shell perl -e "require XML::Parser" 2>/dev/null || echo no),no)
- $(warning *** XML::Parser perl module is required for host-glade)
- $(warning *** please install libxml-parser-perl (debian))
- $(error )
-endif
-endif
-
-#
-# Paths and names
-#
-HOST_GLADE_DIR = $(HOST_BUILDDIR)/$(GLADE)
-
-# ----------------------------------------------------------------------------
-# Prepare
-# ----------------------------------------------------------------------------
-
-HOST_GLADE_PATH := PATH=$(HOST_PATH)
-HOST_GLADE_ENV := $(HOST_ENV)
-
-#
-# autoconf
-#
-HOST_GLADE_AUTOCONF := $(HOST_AUTOCONF)
-
-# vim: syntax=make