public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-tcltk/itk/files/
@ 2016-10-14 17:48 Amy Winston
  0 siblings, 0 replies; 3+ messages in thread
From: Amy Winston @ 2016-10-14 17:48 UTC (permalink / raw
  To: gentoo-commits

commit:     0839dedf4fee4bfb03fe13daf793dc2b52e1e476
Author:     Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Thu Sep 29 16:50:01 2016 +0000
Commit:     Amy Winston <amynka <AT> gentoo <DOT> org>
CommitDate: Fri Oct 14 17:34:14 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0839dedf

dev-tcltk/itk: remove unused patch

 .../itk/files/itk-3.4_pre20090417-install.patch    | 103 ---------------------
 1 file changed, 103 deletions(-)

diff --git a/dev-tcltk/itk/files/itk-3.4_pre20090417-install.patch b/dev-tcltk/itk/files/itk-3.4_pre20090417-install.patch
deleted file mode 100644
index 721bf91..00000000
--- a/dev-tcltk/itk/files/itk-3.4_pre20090417-install.patch
+++ /dev/null
@@ -1,103 +0,0 @@
- itk/Makefile.in     |    2 +-
- itk/configure.in    |   23 +++++++++++++++++++++++
- itk/itkConfig.sh.in |   28 +++++++++++-----------------
- 3 files changed, 35 insertions(+), 18 deletions(-)
---- a/itk/Makefile.in	
-+++ a/itk/Makefile.in	
-@@ -395,7 +395,7 @@ install-lib-binaries:
- 	  fi; \
- 	done
- 	$(INSTALL_DATA) pkgIndex.tcl $(DESTDIR)$(pkglibdir)
--	: $(INSTALL_DATA) itkConfig.sh $(DESTDIR)$(libdir)
-+	$(INSTALL_DATA) itkConfig.sh $(DESTDIR)$(libdir)
- 
- #========================================================================
- # Install binary executables (e.g. .exe files)
---- a/itk/configure.in	
-+++ a/itk/configure.in	
-@@ -219,6 +219,7 @@ fi
- # library.
- #--------------------------------------------------------------------
- 
-+itk_LIB_FILE=${PKG_LIB_FILE}
- AC_SUBST(itkstub_LIB_FILE)
- AC_SUBST(itk_LIB_FILE)
- 
-@@ -234,6 +235,28 @@ TEA_PROG_TCLSH
- TEA_PROG_WISH
- 
- #--------------------------------------------------------------------
-+# These are for itkConfig.sh
-+#--------------------------------------------------------------------
-+
-+# pkglibdir must be a fully qualified path and (not ${exec_prefix}/lib)
-+eval pkglibdir="${libdir}/${PACKAGE_NAME}${PACKAGE_VERSION}"
-+if test "${TCL_LIB_VERSIONS_OK}" = "ok"; then
-+    eval itk_LIB_FLAG="-litk${PACKAGE_VERSION}${DBGX}"
-+else
-+    eval itk_LIB_FLAG="-litk`echo ${PACKAGE_VERSION} | tr -d .`${DBGX}"
-+fi
-+itk_BUILD_LIB_SPEC="-L`pwd` ${itk_LIB_FLAG}"
-+itk_LIB_SPEC="-L${pkglibdir} ${itk_LIB_FLAG}"
-+
-+AC_SUBST(itk_BUILD_LIB_SPEC)
-+AC_SUBST(itk_LIB_SPEC)
-+
-+# itk_SRC_DIR must be a fully qualified path
-+eval itk_SRC_DIR="$srcdir"
-+itk_SRC_DIR=`cd "${itk_SRC_DIR}"; pwd`
-+AC_SUBST(itk_SRC_DIR)
-+
-+#--------------------------------------------------------------------
- # Finally, substitute all of the various values into the Makefile.
- #--------------------------------------------------------------------
- 
---- a/itk/itkConfig.sh.in	
-+++ a/itk/itkConfig.sh.in	
-@@ -11,30 +11,23 @@ 
- #
- # The information in this file is specific to a single platform.
- 
--# Itcl's version number.
--ITCL_VERSION='@ITCL_VERSION@'
-+# Itk's version number.
-+itk_VERSION='@PACKAGE_VERSION@'
-+ITK_VERSION='@PACKAGE_VERSION@'
- 
- # The name of the Itk library (may be either a .a file or a shared library):
--ITK_LIB_FILE=@ITK_LIB_FILE@
-+itk_LIB_FILE=@itk_LIB_FILE@
-+ITK_LIB_FILE=@itk_LIB_FILE@
- 
- # String to pass to linker to pick up the Itk library from its
- # build directory.
--ITK_BUILD_LIB_SPEC='@ITK_BUILD_LIB_SPEC@'
-+itk_BUILD_LIB_SPEC='@itk_BUILD_LIB_SPEC@'
-+ITK_BUILD_LIB_SPEC='@itk_BUILD_LIB_SPEC@'
- 
- # String to pass to linker to pick up the Itk library from its
- # installed directory.
--ITK_LIB_SPEC='@ITK_LIB_SPEC@'
--
--# The name of the Itk stub library (a .a file):
--ITK_STUB_LIB_FILE=@ITK_STUB_LIB_FILE@
--
--# String to pass to linker to pick up the Itk stub library from its
--# build directory.
--ITK_BUILD_STUB_LIB_SPEC='@ITK_BUILD_STUB_LIB_SPEC@'
--
--# String to pass to linker to pick up the Itk stub library from its
--# installed directory.
--ITK_STUB_LIB_SPEC='@ITK_STUB_LIB_SPEC@'
-+itk_LIB_SPEC='@itk_LIB_SPEC@'
-+ITK_LIB_SPEC='@itk_LIB_SPEC@'
- 
- # Location of the top-level source directories from which [incr Tk]
- # was built.  This is the directory that contains a README file as well
-@@ -42,4 +35,5 @@ ITK_STUB_LIB_SPEC='@ITK_STUB_LIB_SPEC@'
- # compiled in a different place than the directory containing the source
- # files, this points to the location of the sources, not the location
- # where [incr Tk] was compiled.
--ITK_SRC_DIR='@ITK_SRC_DIR@'
-+itk_SRC_DIR='@itk_SRC_DIR@'
-+ITK_SRC_DIR='@itk_SRC_DIR@'


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-tcltk/itk/files/
@ 2016-10-14 17:48 Amy Winston
  0 siblings, 0 replies; 3+ messages in thread
From: Amy Winston @ 2016-10-14 17:48 UTC (permalink / raw
  To: gentoo-commits

commit:     94a97c736d1bdc9a94aec08fdac527702fffa332
Author:     Amy Winston <amynka <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 14 17:37:35 2016 +0000
Commit:     Amy Winston <amynka <AT> gentoo <DOT> org>
CommitDate: Fri Oct 14 17:37:35 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94a97c73

dev-tcltk/itk: remove unused patch

Package-Manager: portage-2.2.28

 dev-tcltk/itk/files/itk-4.0.0-install_data.patch | 20 --------------------
 1 file changed, 20 deletions(-)

diff --git a/dev-tcltk/itk/files/itk-4.0.0-install_data.patch b/dev-tcltk/itk/files/itk-4.0.0-install_data.patch
deleted file mode 100644
index caea5ba..00000000
--- a/dev-tcltk/itk/files/itk-4.0.0-install_data.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- Makefile.in.ori	2013-01-10 19:43:56.349623406 +0100
-+++ Makefile.in	2013-01-10 19:46:08.634960354 +0100
-@@ -100,10 +100,13 @@
- 
- top_builddir	= .
- 
--INSTALL		= @INSTALL@
--INSTALL_PROGRAM	= @INSTALL_PROGRAM@
--INSTALL_DATA	= @INSTALL_DATA@
--INSTALL_SCRIPT	= @INSTALL_SCRIPT@
-+INSTALL_OPTIONS	=
-+INSTALL		= $(SHELL) $(srcdir)/tclconfig/install-sh -c ${INSTALL_OPTIONS}
-+INSTALL_DATA_DIR = ${INSTALL} -d -m 755
-+INSTALL_PROGRAM	= ${INSTALL} -m 755
-+INSTALL_DATA	= ${INSTALL} -m 444
-+INSTALL_SCRIPT	= ${INSTALL_PROGRAM}
-+INSTALL_LIBRARY	= ${INSTALL_DATA}
- 
- PACKAGE_NAME	= @PACKAGE_NAME@
- PACKAGE_VERSION	= @PACKAGE_VERSION@


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-tcltk/itk/files/
@ 2024-03-18 20:00 Conrad Kostecki
  0 siblings, 0 replies; 3+ messages in thread
From: Conrad Kostecki @ 2024-03-18 20:00 UTC (permalink / raw
  To: gentoo-commits

commit:     79d5060c131050923f5ce54a10ef212bc78bbf4c
Author:     Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Sun Mar 17 12:22:48 2024 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Mon Mar 18 20:00:22 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79d5060c

dev-tcltk/itk: remove unused patch(es)

Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 dev-tcltk/itk/files/itk-4.2.3-install.patch | 11 -----------
 1 file changed, 11 deletions(-)

diff --git a/dev-tcltk/itk/files/itk-4.2.3-install.patch b/dev-tcltk/itk/files/itk-4.2.3-install.patch
deleted file mode 100644
index 63e673bf1c30..000000000000
--- a/dev-tcltk/itk/files/itk-4.2.3-install.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/configure	2024-02-29 19:28:27.192049469 +0100
-+++ b/configure	2024-02-29 19:28:41.507876154 +0100
-@@ -2627,7 +2627,7 @@
- 
-     # Configure the installer.
- 
--    INSTALL='$(SHELL) $(srcdir)/tclconfig/install-sh -c'
-+    INSTALL='install -c'
-     INSTALL_DATA_DIR='${INSTALL} -d -m 755'
-     INSTALL_DATA='${INSTALL} -m 644'
-     INSTALL_PROGRAM='${INSTALL} -m 755'


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-03-18 20:00 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-10-14 17:48 [gentoo-commits] repo/gentoo:master commit in: dev-tcltk/itk/files/ Amy Winston
  -- strict thread matches above, loose matches on Subject: below --
2016-10-14 17:48 Amy Winston
2024-03-18 20:00 Conrad Kostecki

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox