x11-apps/xman: Drop old versions
authorMatt Turner <mattst88@gentoo.org>
Sat, 21 Sep 2019 17:05:17 +0000 (10:05 -0700)
committerMatt Turner <mattst88@gentoo.org>
Sat, 21 Sep 2019 17:11:46 +0000 (10:11 -0700)
Signed-off-by: Matt Turner <mattst88@gentoo.org>
x11-apps/xman/Manifest
x11-apps/xman/files/xman-1.1.3-mandb-2.7.patch [deleted file]
x11-apps/xman/xman-1.1.4-r1.ebuild [deleted file]

index 18051faad91dfc2ced7d45c8008ec7969db7cffc..9b960eb364e0c613be8db287c82571fe23431118 100644 (file)
@@ -1,2 +1 @@
-DIST xman-1.1.4.tar.bz2 188259 BLAKE2B 3be982bfc9cad53b47dfe87e85d2fdafca4d0e9336c05eaf80665a79a1c420941226da9a3acfbdf7eb7c9d299085d78cb392d67c6859e28f07a304c6f935931b SHA512 785e973eb15b0300de08aace24f3604dfee61421c7f64ea4cde2e280480bf5d3ad797ab8208668dc023a375494f8db7534fbcaa1c1ef16e79464fdd017b5da68
 DIST xman-1.1.5.tar.bz2 193676 BLAKE2B b49e78b0127844e2ee8c0343392af940e592ee6958b4f1af217696da9ab1cd880331dec2af2f7eb5084cf44d40a041c730f571e5fb476e74924552e1316614ae SHA512 f6b2be424a79f298bf1a81edce4172572195c9efc9454e5b7b7046f344ed08154c77ccaa763ccdf3f1a30b64aa4802783bf813ee637437ccb1fba434fc5d4400
diff --git a/x11-apps/xman/files/xman-1.1.3-mandb-2.7.patch b/x11-apps/xman/files/xman-1.1.3-mandb-2.7.patch
deleted file mode 100644 (file)
index f42ce57..0000000
+++ /dev/null
@@ -1,60 +0,0 @@
-From 438763b6e231410b95b5e352feb65c63cd54de6a Mon Sep 17 00:00:00 2001
-From: Julien Cristau <jcristau@debian.org>
-Date: Fri, 7 Nov 2014 16:19:57 +0000
-Subject: [PATCH] If we have man-db, don't try and emulate man's pipeline
-
-Just let man itself do the formatting / zsoelim / ... dance.
-
-Debian bug#764792 <https://bugs.debian.org/764792>
-
-Signed-off-by: Julien Cristau <jcristau@debian.org>
----
- xman/configure.ac | 5 +++++
- xman/misc.c       | 8 ++++++++
- 2 files changed, 13 insertions(+)
-
-diff --git a/xman/configure.ac b/xman/configure.ac
-index 9a80cbb..8bb44f2 100644
---- a/xman/configure.ac
-+++ b/xman/configure.ac
-@@ -44,6 +44,11 @@ if test "x$GROFF" = "xfound" ; then
-    AC_DEFINE([HAS_GROFF], 1, [Define to 1 if you have the groff package.])
- fi
-+AC_CHECK_PROG([MANDB], [mandb], [yes], [no])
-+if test x"$MANDB" = xyes; then
-+      AC_DEFINE([HAVE_MANDB], 1, [Define if the man implementation is man-db])
-+fi
-+
- AC_CHECK_FUNCS([mkstemp])
- AC_ARG_WITH(helpdir,
-diff --git a/xman/misc.c b/xman/misc.c
-index 06891cd..da8744a 100644
---- a/xman/misc.c
-+++ b/xman/misc.c
-@@ -661,6 +661,13 @@ static Boolean
- ConstructCommand(char *cmdbuf, const char *path,
-                  const char *filename, const char *tempfile)
- {
-+#ifdef HAVE_MANDB
-+    int used = snprintf(cmdbuf, BUFSIZ, "man -l %s > %s 2>/dev/null",
-+                        filename, tempfile);
-+    if (used >= BUFSIZ - 1)
-+      return FALSE;
-+    return TRUE;
-+#else
-     /* The original code did the following to produce a command line:
-      *   sprintf(cmdbuf,"cd %s ; %s %s %s > %s %s", path, TBL,
-      *      filename, FORMAT, man_globals->tempfile, "2> /dev/null");
-@@ -783,6 +790,7 @@ ConstructCommand(char *cmdbuf, const char *path,
-         return (FALSE);
-     return (TRUE);
-+#endif /* man-db */
- }
- #endif                          /* HANDLE_ROFFSEQ */
--- 
-2.1.1
-
diff --git a/x11-apps/xman/xman-1.1.4-r1.ebuild b/x11-apps/xman/xman-1.1.4-r1.ebuild
deleted file mode 100644 (file)
index e4fd534..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-XORG_EAUTORECONF=yes
-inherit xorg-2
-
-DESCRIPTION="Manual page display program for the X Window System"
-
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86"
-IUSE=""
-
-DEPEND="x11-libs/libXaw
-       x11-libs/libXt
-       x11-libs/libXmu"
-RDEPEND="${DEPEND}"
-
-PATCHES=(
-       "${FILESDIR}"/${PN}-1.1.3-mandb-2.7.patch
-)