summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gentoo.org>2022-12-03 20:24:43 -0500
committerMatt Turner <mattst88@gentoo.org>2022-12-03 21:36:49 -0500
commitfc1f49675342e95ba18a5212f300351c1a2385d8 (patch)
tree037d396622dd98b0080c32c862a009f1e2f72aa6 /x11-misc/imake
parentx11-libs/xcb-util-wm: Drop old versions (diff)
downloadgentoo-fc1f49675342e95ba18a5212f300351c1a2385d8.tar.gz
gentoo-fc1f49675342e95ba18a5212f300351c1a2385d8.tar.bz2
gentoo-fc1f49675342e95ba18a5212f300351c1a2385d8.zip
x11-misc/imake: Drop old versions
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'x11-misc/imake')
-rw-r--r--x11-misc/imake/Manifest1
-rw-r--r--x11-misc/imake/files/imake-1.0.8-no-get-gcc.patch37
-rw-r--r--x11-misc/imake/imake-1.0.8-r1.ebuild23
3 files changed, 0 insertions, 61 deletions
diff --git a/x11-misc/imake/Manifest b/x11-misc/imake/Manifest
index 2973c18a9f1d..bb0f43c35a82 100644
--- a/x11-misc/imake/Manifest
+++ b/x11-misc/imake/Manifest
@@ -1,2 +1 @@
-DIST imake-1.0.8.tar.bz2 159398 BLAKE2B 2ea03a06daab883a35ac4ef5c5598db89c84b2bbc41105902f64ffaf66a2e5cebaa28bef0ee7d258eb7279eaa95671b8798701423cafffe87d8feced5bc1b63d SHA512 5352b0148664506c8eb7ba80f95fced146d150398673547ba0b2c7c966a382bc21de43dfb8e0d74e38a0a563f16ddbec48bf8c8e6daa1a0899a95403579d7728
DIST imake-1.0.9.tar.xz 153332 BLAKE2B d9de997016112833e50d1151448366c538b9796622630724552cc0476deed165621edc1a01318a83b577a85fcfc78b753e6fa9fbdf4c71413319abe542f1beca SHA512 e7587cf80369c8f4fcc1207c13bcb74a53d838b504ac8a7f3b98fb8f5f595cc7b8e5e9fad50cadcf40cf27bd02ef4eae7fe458854bbed7bea27d474d66520644
diff --git a/x11-misc/imake/files/imake-1.0.8-no-get-gcc.patch b/x11-misc/imake/files/imake-1.0.8-no-get-gcc.patch
deleted file mode 100644
index 155200461157..000000000000
--- a/x11-misc/imake/files/imake-1.0.8-no-get-gcc.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-If /usr/bin/cc exists then get_gcc() is always true on Linux (and many
-others), but will fail in the event it's missing (-native-symlinks).
-
-get_gcc_version does not execute gcc and merely sets defines, so
-call it without using get_gcc(). Validity of using NULL should be
-verified if there's ever a new version.
---- a/imake.c
-+++ b/imake.c
-@@ -1341,4 +1341,5 @@
- #endif
-
-+#if defined CROSSCOMPILE
- static boolean
- get_gcc(char *cmd)
-@@ -1394,5 +1395,4 @@
- }
-
--#ifdef CROSSCOMPILE
- static void
- get_gcc_incdir(FILE *inFile, char* name)
-@@ -1640,12 +1640,14 @@
- # endif
- {
-+# if defined CROSSCOMPILE
- char name[PATH_MAX];
- if (get_gcc(name)) {
- get_gcc_version (inFile,name);
--# if defined CROSSCOMPILE
- if (sys != emx)
- get_gcc_incdir(inFile,name);
--# endif
- }
-+# else
-+ get_gcc_version(inFile,NULL);
-+# endif
- }
- # endif
diff --git a/x11-misc/imake/imake-1.0.8-r1.ebuild b/x11-misc/imake/imake-1.0.8-r1.ebuild
deleted file mode 100644
index b121c1a2505f..000000000000
--- a/x11-misc/imake/imake-1.0.8-r1.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs xorg-3
-
-DESCRIPTION="C preprocessor interface to the make utility"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
-
-RDEPEND="x11-misc/xorg-cf-files"
-BDEPEND="x11-base/xorg-proto"
-
-PATCHES=(
- "${FILESDIR}"/${P}-cpp-args.patch
- "${FILESDIR}"/${P}-no-get-gcc.patch
- "${FILESDIR}"/${P}-respect-LD.patch
- "${FILESDIR}"/${P}-xmkmf-pass-cc-ld.patch
-)
-
-src_configure() {
- econf CPP="$(tc-getPROG CPP cpp)" #722046
-}