From 4e7fa1ff23ea14c4e275ff7c96ec61b3014e46ae Mon Sep 17 00:00:00 2001 From: Michael Olbrich Date: Fri, 22 Jul 2016 19:26:25 +0200 Subject: cross-insight: remove old package It was in staging for a year and nobody cared. Signed-off-by: Michael Olbrich --- patches/insight-6.8-1/fix-destdir-handling.diff | 375 --------------------- .../insight-6.8-1/gdb-6.8-fix-compile-karmic.patch | 27 -- patches/insight-6.8-1/series | 2 - rules/cross-insight.in | 15 - rules/cross-insight.make | 44 --- 5 files changed, 463 deletions(-) delete mode 100644 patches/insight-6.8-1/fix-destdir-handling.diff delete mode 100644 patches/insight-6.8-1/gdb-6.8-fix-compile-karmic.patch delete mode 100644 patches/insight-6.8-1/series delete mode 100644 rules/cross-insight.in delete mode 100644 rules/cross-insight.make diff --git a/patches/insight-6.8-1/fix-destdir-handling.diff b/patches/insight-6.8-1/fix-destdir-handling.diff deleted file mode 100644 index 2682557e2..000000000 --- a/patches/insight-6.8-1/fix-destdir-handling.diff +++ /dev/null @@ -1,375 +0,0 @@ -From: Michael Olbrich -Subject: fix DESTDIR and INSTALL_ROOT - -* don't clean DESTDIR / INSTALL_ROOT -* use DESTDIR / INSTALL_ROOT for everything - -Signed-off-by: Michael Olbrich - ---- - etc/Makefile.in | 2 +- - gdb/Makefile.in | 2 +- - itcl/itcl/Makefile.in | 20 ++++++++++---------- - itcl/itk/Makefile.in | 22 +++++++++++----------- - itcl/iwidgets/Makefile.in | 4 ++-- - libgui/Makefile.in | 2 +- - libgui/library/Makefile.in | 2 +- - libgui/src/Makefile.in | 2 +- - readline/Makefile.in | 2 +- - readline/doc/Makefile.in | 2 +- - readline/examples/Makefile.in | 2 +- - readline/examples/rlfe/Makefile.in | 2 +- - readline/shlib/Makefile.in | 2 +- - tcl/cygwin/Makefile.in | 2 +- - tcl/unix/Makefile.in | 2 +- - tcl/win/Makefile.in | 2 +- - tk/unix/Makefile.in | 2 +- - tk/win/Makefile.in | 2 +- - 18 files changed, 38 insertions(+), 38 deletions(-) - -Index: b/itcl/itcl/Makefile.in -=================================================================== ---- a/itcl/itcl/Makefile.in -+++ b/itcl/itcl/Makefile.in -@@ -116,7 +116,7 @@ GENERIC_HDRS= \ - SAMPLE_NEW_VAR=@SAMPLE_NEW_VAR@ - - # CYGNUS LOCAL --ITCL_LIBRARY = @datadir@/itcl$(VERSION) -+ITCL_LIBRARY = $(DESTDIR)/@datadir@/itcl$(VERSION) - # END CYGNUS LOCAL - - ITCL_GENERIC_DIR_NATIVE = @ITCL_GENERIC_DIR_NATIVE@ -@@ -149,7 +149,7 @@ mandir = @mandir@ - includedir = @includedir@ - oldincludedir = /usr/include - --DESTDIR = -+#DESTDIR = - - pkgdatadir = $(datadir)/@PACKAGE@@VERSION@ - pkglibdir = $(libdir)/@PACKAGE@@VERSION@ -@@ -272,11 +272,11 @@ install-binaries: binaries install-lib-b - #======================================================================== - - install-libraries: libraries -- $(mkinstalldirs) $(includedir) -- @echo "Installing header files in $(includedir)" -+ $(mkinstalldirs) $(DESTDIR)$(includedir) -+ @echo "Installing header files in $(DESTDIR)$(includedir)" - @for i in $(GENERIC_HDRS) ; do \ - echo "Installing $$i" ; \ -- $(INSTALL_DATA) $$i $(includedir) ; \ -+ $(INSTALL_DATA) $$i $(DESTDIR)$(includedir) ; \ - done; - @echo "Installing library files in $(ITCL_LIBRARY)" - @for i in $(srcdir)/library/*.tcl ; do \ -@@ -290,14 +290,14 @@ install-libraries: libraries - #======================================================================== - - install-doc: doc -- $(mkinstalldirs) $(mandir)/mann -- @echo "Installing man pages in $(mandir)" -+ $(mkinstalldirs) $(DESTDIR)$(mandir)/mann -+ @echo "Installing man pages in $(DESTDIR)$(mandir)" - @cd $(srcdir)/doc; for i in *.n; \ - do \ - echo "Installing $$i"; \ - sed -e '/man\.macros/r man.macros' -e '/man\.macros/d' \ -- $$i > $(mandir)/mann/$$i; \ -- chmod 444 $(mandir)/mann/$$i; \ -+ $$i > $(DESTDIR)$(mandir)/mann/$$i; \ -+ chmod 444 $(DESTDIR)$(mandir)/mann/$$i; \ - done - - test: $(TCLSH_PROG) -@@ -447,7 +447,7 @@ install-lib-binaries: installdirs - $(RANLIB) $(DESTDIR)$(libdir)/$$p; \ - else :; fi; \ - done -- $(INSTALL_DATA) pkgIndex.tcl $(pkglibdir) -+ $(INSTALL_DATA) pkgIndex.tcl $(DESTDIR)$(pkglibdir) - - #======================================================================== - # Install binary executables (e.g. .exe files) -Index: b/etc/Makefile.in -=================================================================== ---- a/etc/Makefile.in -+++ b/etc/Makefile.in -@@ -2,7 +2,7 @@ - # Makefile.in for etc - # - --DESTDIR = -+#DESTDIR = - - prefix = @prefix@ - exec_prefix = @exec_prefix@ -Index: b/gdb/Makefile.in -=================================================================== ---- a/gdb/Makefile.in -+++ b/gdb/Makefile.in -@@ -60,7 +60,7 @@ INSTALL = @INSTALL@ - INSTALL_PROGRAM = @INSTALL_PROGRAM@ - INSTALL_DATA = @INSTALL_DATA@ - --DESTDIR = -+#DESTDIR = - - AR = @AR@ - AR_FLAGS = qv -Index: b/itcl/itk/Makefile.in -=================================================================== ---- a/itcl/itk/Makefile.in -+++ b/itcl/itk/Makefile.in -@@ -104,7 +104,7 @@ GENERIC_HDRS= \ - SAMPLE_NEW_VAR=@SAMPLE_NEW_VAR@ - - # CYGNUS LOCAL --ITK_LIBRARY = @datadir@/itk$(VERSION) -+ITK_LIBRARY = $(DESTDIR)@datadir@/itk$(VERSION) - # END CYGNUS LOCAL - - ITK_GENERIC_DIR_NATIVE = @ITK_GENERIC_DIR_NATIVE@ -@@ -137,7 +137,7 @@ mandir = @mandir@ - includedir = @includedir@ - oldincludedir = /usr/include - --DESTDIR = -+#DESTDIR = - - pkgdatadir = $(datadir)/@PACKAGE@@VERSION@ - pkglibdir = $(libdir)/@PACKAGE@@VERSION@ -@@ -267,11 +267,11 @@ install-binaries: binaries install-lib-b - #======================================================================== - - install-libraries: libraries -- $(mkinstalldirs) $(includedir) -- @echo "Installing header files in $(includedir)" -+ $(mkinstalldirs) $(DESTDIR)$(includedir) -+ @echo "Installing header files in $(DESTDIR)$(includedir)" - @for i in $(GENERIC_HDRS) ; do \ - echo "Installing $$i" ; \ -- $(INSTALL_DATA) $$i $(includedir) ; \ -+ $(INSTALL_DATA) $$i $(DESTDIR)$(includedir) ; \ - done; - @echo "Installing library files in $(ITK_LIBRARY)" - @for i in $(srcdir)/library/*.* $(srcdir)/library/tclIndex ; do \ -@@ -285,14 +285,14 @@ install-libraries: libraries - #======================================================================== - - install-doc: doc -- $(mkinstalldirs) $(mandir)/mann -- @echo "Installing man pages in $(mandir)" -+ $(mkinstalldirs) $(DESTDIR)$(mandir)/mann -+ @echo "Installing man pages in $(DESTDIR)$(mandir)" - @cd $(srcdir)/doc; for i in *.n; \ - do \ -- echo "Installing $$i info $(mandir)/mann"; \ -+ echo "Installing $$i info $(DESTDIR)$(mandir)/mann"; \ - sed -e '/man\.macros/r man.macros' -e '/man\.macros/d' \ -- $$i > $(mandir)/mann/$$i; \ -- chmod 444 $(mandir)/mann/$$i; \ -+ $$i > $(DESTDIR)$(mandir)/mann/$$i; \ -+ chmod 444 $(DESTDIR)$(mandir)/mann/$$i; \ - done - - test: $(TCLSH_PROG) -@@ -421,7 +421,7 @@ install-lib-binaries: installdirs - $(RANLIB) $(DESTDIR)$(libdir)/$$p; \ - else :; fi; \ - done -- $(INSTALL_DATA) pkgIndex.tcl $(pkglibdir) -+ $(INSTALL_DATA) pkgIndex.tcl $(DESTDIR)$(pkglibdir) - - #======================================================================== - # Install binary executables (e.g. .exe files) -Index: b/itcl/iwidgets/Makefile.in -=================================================================== ---- a/itcl/iwidgets/Makefile.in -+++ b/itcl/iwidgets/Makefile.in -@@ -36,13 +36,13 @@ bindir = @bindir@ - # to be different than those used for actually reference files at - # run-time. INSTALL_ROOT is prepended to $prefix and $exec_prefix - # when installing files. --INSTALL_ROOT = -+#INSTALL_ROOT = - - # Path name to use when installing library scripts: - - # REDHAT LOCAL - #SCRIPT_INSTALL_DIR = $(INSTALL_ROOT)$(prefix)/lib/iwidgets$(IWIDGETS_VERSION) --SCRIPT_INSTALL_DIR = @datadir@/iwidgets$(IWIDGETS_VERSION) -+SCRIPT_INSTALL_DIR = $(INSTALL_ROOT)@datadir@/iwidgets$(IWIDGETS_VERSION) - # END REDHAT LOCAL - - # Directory in which to install the archive libtcl.a: -Index: b/libgui/Makefile.in -=================================================================== ---- a/libgui/Makefile.in -+++ b/libgui/Makefile.in -@@ -32,7 +32,7 @@ mandir = @mandir@ - includedir = @includedir@ - oldincludedir = /usr/include - --DESTDIR = -+#DESTDIR = - - pkgdatadir = $(datadir)/@PACKAGE@ - pkglibdir = $(libdir)/@PACKAGE@ -Index: b/libgui/library/Makefile.in -=================================================================== ---- a/libgui/library/Makefile.in -+++ b/libgui/library/Makefile.in -@@ -32,7 +32,7 @@ mandir = @mandir@ - includedir = @includedir@ - oldincludedir = /usr/include - --DESTDIR = -+#DESTDIR = - - pkgdatadir = $(datadir)/@PACKAGE@ - pkglibdir = $(libdir)/@PACKAGE@ -Index: b/libgui/src/Makefile.in -=================================================================== ---- a/libgui/src/Makefile.in -+++ b/libgui/src/Makefile.in -@@ -34,7 +34,7 @@ mandir = @mandir@ - includedir = @includedir@ - oldincludedir = /usr/include - --DESTDIR = -+#DESTDIR = - - pkgdatadir = $(datadir)/@PACKAGE@ - pkglibdir = $(libdir)/@PACKAGE@ -Index: b/readline/Makefile.in -=================================================================== ---- a/readline/Makefile.in -+++ b/readline/Makefile.in -@@ -63,7 +63,7 @@ infodir = @infodir@ - man3dir = $(mandir)/man3 - - # Support an alternate destination root directory for package building --DESTDIR = -+#DESTDIR = - - # Programs to make tags files. - ETAGS = etags -tw -Index: b/readline/doc/Makefile.in -=================================================================== ---- a/readline/doc/Makefile.in -+++ b/readline/doc/Makefile.in -@@ -36,7 +36,7 @@ man3dir = $(mandir)/$(manpfx)3 - htmldir = - - # Support an alternate destination root directory for package building --DESTDIR = -+#DESTDIR = - - SHELL = @MAKE_SHELL@ - RM = rm -f -Index: b/readline/examples/Makefile.in -=================================================================== ---- a/readline/examples/Makefile.in -+++ b/readline/examples/Makefile.in -@@ -27,7 +27,7 @@ top_srcdir = @top_srcdir@ - BUILD_DIR = . - - # Support an alternate destination root directory for package building --DESTDIR = -+#DESTDIR = - - DEFS = @DEFS@ - CC = @CC@ -Index: b/readline/examples/rlfe/Makefile.in -=================================================================== ---- a/readline/examples/rlfe/Makefile.in -+++ b/readline/examples/rlfe/Makefile.in -@@ -7,7 +7,7 @@ - srcdir = @srcdir@ - VPATH = @srcdir@ - --DESTDIR = -+#DESTDIR = - - # Where to install screen. - -Index: b/readline/shlib/Makefile.in -=================================================================== ---- a/readline/shlib/Makefile.in -+++ b/readline/shlib/Makefile.in -@@ -59,7 +59,7 @@ datadir = @datadir@ - localedir = $(datadir)/locale - - # Support an alternate destination root directory for package building --DESTDIR = -+#DESTDIR = - - CFLAGS = @CFLAGS@ - LOCAL_CFLAGS = @LOCAL_CFLAGS@ -DRL_LIBRARY_VERSION='"$(RL_LIBRARY_VERSION)"' -Index: b/tcl/cygwin/Makefile.in -=================================================================== ---- a/tcl/cygwin/Makefile.in -+++ b/tcl/cygwin/Makefile.in -@@ -32,7 +32,7 @@ mandir = @mandir@ - includedir = @includedir@ - oldincludedir = /usr/include - --DESTDIR = -+#DESTDIR = - - pkgdatadir = $(datadir)/@PACKAGE@ - pkglibdir = $(libdir)/@PACKAGE@ -Index: b/tcl/unix/Makefile.in -=================================================================== ---- a/tcl/unix/Makefile.in -+++ b/tcl/unix/Makefile.in -@@ -38,7 +38,7 @@ mandir = @mandir@ - # to be different than those used for actually reference files at - # run-time. INSTALL_ROOT is prepended to $prefix and $exec_prefix - # when installing files. --INSTALL_ROOT = -+#INSTALL_ROOT = - - # Path for the platform independent Tcl scripting libraries: - # REDHAT LOCAL -Index: b/tcl/win/Makefile.in -=================================================================== ---- a/tcl/win/Makefile.in -+++ b/tcl/win/Makefile.in -@@ -34,7 +34,7 @@ mandir = @mandir@ - # to be different than those used for actually reference files at - # run-time. INSTALL_ROOT is prepended to $prefix and $exec_prefix - # when installing files. --INSTALL_ROOT = -+#INSTALL_ROOT = - - # Directory from which applications will reference the library of Tcl - # scripts (note: you can set the TCL_LIBRARY environment variable at -Index: b/tk/unix/Makefile.in -=================================================================== ---- a/tk/unix/Makefile.in -+++ b/tk/unix/Makefile.in -@@ -41,7 +41,7 @@ mandir = @mandir@ - # to be different than those used for actually reference files at - # run-time. INSTALL_ROOT is prepended to $prefix and $exec_prefix - # when installing files. --INSTALL_ROOT = -+#INSTALL_ROOT = - - # Directory from which applications will reference the library of Tcl - # scripts (note: you can set the TK_LIBRARY environment variable at -Index: b/tk/win/Makefile.in -=================================================================== ---- a/tk/win/Makefile.in -+++ b/tk/win/Makefile.in -@@ -34,7 +34,7 @@ mandir = @mandir@ - # to be different than those used for actually reference files at - # run-time. INSTALL_ROOT is prepended to $prefix and $exec_prefix - # when installing files. --INSTALL_ROOT = -+#INSTALL_ROOT = - - # Directory from which applications will reference the library of Tk - # scripts (note: you can set the TK_LIBRARY environment variable at diff --git a/patches/insight-6.8-1/gdb-6.8-fix-compile-karmic.patch b/patches/insight-6.8-1/gdb-6.8-fix-compile-karmic.patch deleted file mode 100644 index 1f4353f8f..000000000 --- a/patches/insight-6.8-1/gdb-6.8-fix-compile-karmic.patch +++ /dev/null @@ -1,27 +0,0 @@ -From d7931d9affb51de54069b75ae0ae9648ffdd64fc Mon Sep 17 00:00:00 2001 -From: Holger Hans Peter Freyther -Date: Sun, 2 Aug 2009 04:09:03 +0200 -Subject: [PATCH] gdb: Add a patch to fix compilation of gdb 6.8 - -gcc warns about the subscript_array being uninitialized, -just memset this area... luckily I can not break much as -this is for fortran code. - -Signed-off-by: Alexander Stein - -Index: gdb-6.8/gdb/eval.c -=================================================================== ---- gdb-6.8.orig/gdb/eval.c 2009-08-02 03:25:20.000000000 +0200 -+++ gdb-6.8/gdb/eval.c 2009-08-02 03:53:39.000000000 +0200 -@@ -1656,6 +1656,8 @@ - if (nargs != ndimensions) - error (_("Wrong number of subscripts")); - -+ memset(&subscript_array, 0, sizeof(subscript_array)); -+ - /* Now that we know we have a legal array subscript expression - let us actually find out where this element exists in the array. */ - --- -1.6.1 - diff --git a/patches/insight-6.8-1/series b/patches/insight-6.8-1/series deleted file mode 100644 index fcea17653..000000000 --- a/patches/insight-6.8-1/series +++ /dev/null @@ -1,2 +0,0 @@ -gdb-6.8-fix-compile-karmic.patch -fix-destdir-handling.diff diff --git a/rules/cross-insight.in b/rules/cross-insight.in deleted file mode 100644 index c64bb4bbb..000000000 --- a/rules/cross-insight.in +++ /dev/null @@ -1,15 +0,0 @@ -## SECTION=staging -## old section: -### SECTION=debug_tools - -config CROSS_INSIGHT - bool - prompt "insight" - help - Insight is a graphical user interface to GDB, - the GNU Debugger written in Tcl/Tk. - Note: You will need a working TCL/TK installation on your host to - run this tool. - - STAGING: remove in ptxdist-2016.07.0 - This is ancient unmaintained in PTXdist and upstream is dead. diff --git a/rules/cross-insight.make b/rules/cross-insight.make deleted file mode 100644 index 9f38fede2..000000000 --- a/rules/cross-insight.make +++ /dev/null @@ -1,44 +0,0 @@ -# -*-makefile-*- -# -# Copyright (C) 2007 by Sascha Hauer -# 2010 by Marc Kleine-Budde -# -# 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 -# -CROSS_PACKAGES-$(PTXCONF_CROSS_INSIGHT) += cross-insight - -# -# Paths and names -# -CROSS_INSIGHT_VERSION := 6.8-1 -CROSS_INSIGHT_MD5 := 4ee9824c1e8d6108d886c6c09b24f0ac -CROSS_INSIGHT := insight-$(CROSS_INSIGHT_VERSION) -CROSS_INSIGHT_SUFFIX := tar.bz2 -CROSS_INSIGHT_URL := ftp://sourceware.org/pub/insight/releases/$(CROSS_INSIGHT).$(CROSS_INSIGHT_SUFFIX) -CROSS_INSIGHT_SOURCE := $(SRCDIR)/$(CROSS_INSIGHT).$(CROSS_INSIGHT_SUFFIX) -CROSS_INSIGHT_DIR := $(CROSS_BUILDDIR)/$(CROSS_INSIGHT) - -# ---------------------------------------------------------------------------- -# Prepare -# ---------------------------------------------------------------------------- - -CROSS_INSIGHT_CONF_ENV := \ - $(HOST_CROSS_ENV) \ - MAKEINFO=: - -# -# autoconf -# -CROSS_INSIGHT_CONF_TOOL := autoconf -CROSS_INSIGHT_CONF_OPT := \ - $(HOST_CROSS_AUTOCONF) \ - --disable-werror - -# vim: syntax=make -- cgit v1.2.3