diff options
author | David Seifert <soap@gentoo.org> | 2021-05-15 00:12:04 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2021-05-15 00:12:04 +0200 |
commit | d6f5624d344f8d50aa7ca7a852fb0f935938e09a (patch) | |
tree | 1687907b0790ca655a736b5df0711852ad690255 /app-editors/hexcurse | |
parent | app-doc/linuxfromscratch: drop 8.0 (diff) | |
download | gentoo-d6f5624d344f8d50aa7ca7a852fb0f935938e09a.tar.gz gentoo-d6f5624d344f8d50aa7ca7a852fb0f935938e09a.tar.bz2 gentoo-d6f5624d344f8d50aa7ca7a852fb0f935938e09a.zip |
app-editors/hexcurse: drop 1.55
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'app-editors/hexcurse')
-rw-r--r-- | app-editors/hexcurse/Manifest | 1 | ||||
-rw-r--r-- | app-editors/hexcurse/files/1.55-gcc.patch | 11 | ||||
-rw-r--r-- | app-editors/hexcurse/files/1.55-tinfo.patch | 13 | ||||
-rw-r--r-- | app-editors/hexcurse/hexcurse-1.55.ebuild | 31 |
4 files changed, 0 insertions, 56 deletions
diff --git a/app-editors/hexcurse/Manifest b/app-editors/hexcurse/Manifest index bcf065254b45..4c705b6a3aa8 100644 --- a/app-editors/hexcurse/Manifest +++ b/app-editors/hexcurse/Manifest @@ -1,2 +1 @@ -DIST hexcurse-1.55.tar.gz 113512 BLAKE2B 68dbb21e0c8830256f51a477a968449d86da174ca3cc7d29232c6d2a2f909339a0555ff459ed373e62e35b3d1d8abfbbd32a9462006b20bfa1f4f641f4eba825 SHA512 39f9eae0bb891bdfb702fb871b75c53d15acf6e74b3272b616f00303f444bfddced6fbe3041eb3769fa90fbc226dd584f5d84f7427b659e63f3b74511938a4a7 DIST hexcurse-1.60.0.tar.gz 171904 BLAKE2B f591469a859e71e0ada99975c3632f29b293f5bcf65dece9fb047908c860e11ee5b5d5f78e636d3163497acf396de64e568e560427cf0ee7f2c752e0fc5a2b72 SHA512 2301f10e9190922fc61cbbe3a834826ebf87bc5ece9191d368181e2336af240e68cbe46e3a60dee3e0e42281b2f05ae4a7060ee1083b37f4906eacc66e58a094 diff --git a/app-editors/hexcurse/files/1.55-gcc.patch b/app-editors/hexcurse/files/1.55-gcc.patch deleted file mode 100644 index 22b996b3437d..000000000000 --- a/app-editors/hexcurse/files/1.55-gcc.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/src/getopt.c -+++ b/src/getopt.c -@@ -36,8 +36,6 @@ - * enables hexcurse to be compiled with SGI's proprietary compiler */ - #ifdef _SGIAPI - #include <alloca.h> --#else --char *alloca (); - #endif - #define __alloca alloca - /* end of modification */ diff --git a/app-editors/hexcurse/files/1.55-tinfo.patch b/app-editors/hexcurse/files/1.55-tinfo.patch deleted file mode 100644 index f258c06f1cf7..000000000000 --- a/app-editors/hexcurse/files/1.55-tinfo.patch +++ /dev/null @@ -1,13 +0,0 @@ ---- a/configure.in -+++ b/configure.in -@@ -13,7 +13,9 @@ - - dnl Checks for libraries. - dnl Replace `main' with a function in -lncurses: --AC_CHECK_LIB(ncurses, initscr,,AC_CHECK_LIB(curses, initscr)) -+AC_CHECK_LIB(ncurses, initscr) -+AC_SEARCH_LIBS(initscr,curses) -+AC_SEARCH_LIBS(LINES,tinfo) - - dnl Checks for header files. - AC_HEADER_STDC diff --git a/app-editors/hexcurse/hexcurse-1.55.ebuild b/app-editors/hexcurse/hexcurse-1.55.ebuild deleted file mode 100644 index 5b80c54dbe92..000000000000 --- a/app-editors/hexcurse/hexcurse-1.55.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit autotools epatch - -DESCRIPTION="ncurses based hex editor" -HOMEPAGE="http://www.jewfish.net/description.php?title=HexCurse" -SRC_URI="http://www.jewfish.net/downloads/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm ~hppa ppc ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos" - -RDEPEND=">=sys-libs/ncurses-5.2:0=" -DEPEND=" - ${RDEPEND} -" - -src_prepare() { - epatch \ - "${FILESDIR}"/${PV}-gcc.patch \ - "${FILESDIR}"/${PV}-tinfo.patch - - eautoreconf -} - -src_install() { - emake install DESTDIR="${D}" - dodoc AUTHORS ChangeLog NEWS README -} |