summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2011-08-08 21:16:03 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2011-08-09 17:58:57 +0200
commit25b6cb7d8ae5c0c59c6677ca63d0d8294b4588ea (patch)
tree1bdf935a9db2fa344beef1714ebe2ab2893b3979
parent7167442d8324d4cc82f9099495fdfc42f62fafe8 (diff)
downloadptxdist-25b6cb7d8ae5c0c59c6677ca63d0d8294b4588ea.tar.gz
ptxdist-25b6cb7d8ae5c0c59c6677ca63d0d8294b4588ea.tar.xz
host-gtk: remove
Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
-rw-r--r--rules/host-gtk.in152
-rw-r--r--rules/host-gtk.make123
2 files changed, 0 insertions, 275 deletions
diff --git a/rules/host-gtk.in b/rules/host-gtk.in
deleted file mode 100644
index 4b053f489..000000000
--- a/rules/host-gtk.in
+++ /dev/null
@@ -1,152 +0,0 @@
-## SECTION=host_gtk
-
-menuconfig HOST_GTK
- tristate
- prompt "gtk+ "
- select HOST_GLIB
- select HOST_ATK
- select HOST_PANGO
-
- select HOST_CAIRO
- select HOST_CAIRO_PDF
-
-# select HOST_LIBTIFF if HOST_GTK_LOADER_TIFF
-# select HOST_LIBPNG if HOST_GTK_LOADER_PNG
-# select HOST_LIBJPEG if HOST_GTK_LOADER_JPEG
-
-# select XORG_LIB_XEXT if GTK_TARGET_X11
-# select XORG_LIB_XINERAMA if GTK_TARGET_X11_XINERAMA
-# select XORG_LIB_XRANDR if GTK_TARGET_X11_XRANDR
-
- help
- The GTK+ is a multi-platform toolkit for creating graphical
- user interfaces. Offering a complete set of widgets, the GTK+
- is suitable for projects ranging from small one-off tools to complete
- application suites.
-
-#all_loaders="png,bmp,wbmp,gif,ico,ani,jpeg,pnm,ras,tiff,xpm,tga,pcx"
-
-if HOST_GTK
-
-menu "graphic loaders"
- depends on HOST_GTK
-
-config HOST_GTK_LOADER_PNG
- bool
- prompt "png"
- default y
-
-config HOST_GTK_LOADER_BMP
- bool
- prompt "bmp"
-
-config HOST_GTK_LOADER_WBMP
- bool
- prompt "wbmp"
-
-config HOST_GTK_LOADER_GIF
- bool
- prompt "gif"
-
-config HOST_GTK_LOADER_ICO
- bool
- prompt "ico"
-
-config HOST_GTK_LOADER_ANI
- bool
- prompt "ani"
-
-config HOST_GTK_LOADER_JPEG
- bool
- prompt "jpeg"
-
-config HOST_GTK_LOADER_PNM
- bool
- prompt "pnm"
-
-config HOST_GTK_LOADER_RAS
- bool
- prompt "ras"
-
-#config HOST_GTK_LOADER_TIFF
-# bool
-# prompt "tiff"
-# depends on HOST_GTK
-
-config HOST_GTK_LOADER_XPM
- bool
- prompt "xpm"
-
-config HOST_GTK_LOADER_TGA
- bool
- prompt "tga"
-
-config HOST_GTK_LOADER_PCX
- bool
- prompt "pcx"
-
-endmenu
-
-config HOST_GTK_TARGET_X11
- bool
- default y
- select HOST_CAIRO_XLIB
- select HOST_CAIRO_PS
-
-#choice
-# prompt "gdk-target"
-#
-# config HOST_GTK_TARGET_X11
-# bool "X11"
-# depends on GTK
-# select CAIRO_XLIB
-# select CAIRO_PS
-#
-# config GTK_TARGET_DIRECTFB
-# bool "directfb"
-# depends on GTK
-# select CAIRO_DIRECTFB
-# select CAIRO_PS
-#
-# config GTK_TARGET_WIN32
-# bool "Win32"
-# depends on GTK
-# depends on ARCH_MINGW
-# select CAIRO_WIN32
-#endchoice
-#
-#config GTK_TARGET_X11_XINERAMA
-# bool
-# prompt "Xinerama support"
-# depends on GTK
-# depends on GTK_TARGET_X11
-#
-#config GTK_TARGET_X11_XRANDR
-# bool
-# prompt "Xrandr support"
-# depends on GTK
-# depends on GTK_TARGET_X11
-#
-menuconfig HOST_GTK_ENGINES
- bool
- prompt "gtk engines "
-
-endif
-
-choice
- prompt "default theme"
- depends on HOST_GTK
-
- config HOST_GTK_DEFAULT_THEME_EXPERIENCE_PLAIN
- bool "eXperience (plain)"
- depends on GTK_THEME_EXPERIENCE_PLAIN
-
- config HOST_GTK_DEFAULT_THEME_EXPERIENCE_ICE
- bool "eXperience (ice)"
- depends on GTK_THEME_EXPERIENCE_ICE
-
- config HOST_GTK_DEFAULT_THEME_EXPERIENCE_OLIVE
- bool "eXperience (olive)"
- depends on GTK_THEME_EXPERIENCE_OLIVE
-endchoice
-
diff --git a/rules/host-gtk.make b/rules/host-gtk.make
deleted file mode 100644
index 600fa2dcf..000000000
--- a/rules/host-gtk.make
+++ /dev/null
@@ -1,123 +0,0 @@
-# -*-makefile-*-
-#
-# Copyright (C) 2007 by Robert Schwebel <r.schwebel@pengutronix.de>
-# (C) 2010 by Michael Olbrich <m.olbrich@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_GTK) += host-gtk
-
-#
-# Paths and names
-#
-HOST_GTK_DIR = $(HOST_BUILDDIR)/$(GTK)
-
-# ----------------------------------------------------------------------------
-# Prepare
-# ----------------------------------------------------------------------------
-
-HOST_GTK_PATH := PATH=$(HOST_PATH)
-HOST_GTK_ENV := \
- $(HOST_ENV) \
- ac_cv_path_CUPS_CONFIG=no
-
-#
-# autoconf
-#
-
-ifdef PTXCONF_HOST_GTK_LOADER_PNG
-HOST_GTK_LOADERS += png
-endif
-
-ifdef PTXCONF_HOST_GTK_LOADER_BMP
-HOST_GTK_LOADERS += bmp
-endif
-
-ifdef PTXCONF_HOST_GTK_LOADER_WBMP
-HOST_GTK_LOADERS += wbmp
-endif
-
-ifdef PTXCONF_HOST_GTK_LOADER_GIF
-HOST_GTK_LOADERS += gif
-endif
-
-ifdef PTXCONF_HOST_GTK_LOADER_ICO
-HOST_GTK_LOADERS += ico
-endif
-
-ifdef PTXCONF_HOST_GTK_LOADER_ANI
-HOST_GTK_LOADERS += ani
-endif
-
-ifdef PTXCONF_HOST_GTK_LOADER_JPEG
-HOST_GTK_LOADERS += jpeg
-endif
-
-ifdef PTXCONF_HOST_GTK_LOADER_PNM
-HOST_GTK_LOADERS += pnm
-endif
-
-ifdef PTXCONF_HOST_GTK_LOADER_RAS
-HOST_GTK_LOADERS += ras
-endif
-
-ifdef PTXCONF_HOST_GTK_LOADER_TIFF
-HOST_GTK_LOADERS += tiff
-endif
-
-ifdef PTXCONF_HOST_GTK_LOADER_XPM
-HOST_GTK_LOADERS += xpm
-endif
-
-ifdef PTXCONF_HOST_GTK_LOADER_TGA
-HOST_GTK_LOADERS += tga
-endif
-
-ifdef PTXCONF_HOST_GTK_LOADER_PCX
-HOST_GTK_LOADERS += pcx
-endif
-
-HOST_GTK_AUTOCONF := \
- $(HOST_AUTOCONF)
- --enable-explicit-deps=yes \
- --disable-glibtest \
- --disable-modules \
- --with-included-loaders=$(subst $(space),$(comma),$(GTK_LOADERS))
-
-ifndef PTXCONF_HOST_GTK_LOADER_PNG
-HOST_GTK_AUTOCONF += --without-libpng
-endif
-
-ifndef PTXCONF_HOST_GTK_LOADER_TIFF
-HOST_GTK_AUTOCONF += --without-libtiff
-endif
-
-ifndef PTXCONF_HOST_GTK_LOADER_JPEG
-HOST_GTK_AUTOCONF += --without-libjpeg
-endif
-
-ifndef PTXCONF_GTK_LOADER_JPEG2000
-HOST_GTK_AUTOCONF += --without-libjasper
-endif
-
-ifdef PTXCONF_HOST_GTK_TARGET_X11
-HOST_GTK_AUTOCONF += --with-gdktarget=x11
-endif
-
-ifdef PTXCONF_HOST_GTK_TARGET_DIRECTFB
-HOST_GTK_AUTOCONF += --with-gdktarget=directfb
-endif
-
-ifdef PTXCONF_HOST_GTK_TARGET_WIN32
-HOST_GTK_AUTOCONF += --with-gdktarget=win32
-endif
-
-
-# vim: syntax=make