summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergei Trofimovich <slyfox@gentoo.org>2020-09-07 21:46:27 +0100
committerSergei Trofimovich <slyfox@gentoo.org>2020-09-07 21:46:53 +0100
commit6a46793b02a6b023e82043d307b2913dd0be4bac (patch)
tree263c08e9dc1401da1499e5b487c9acb63ca31451 /app-editors
parentdev-libs/libffi: drop old (diff)
downloadgentoo-6a46793b02a6b023e82043d307b2913dd0be4bac.tar.gz
gentoo-6a46793b02a6b023e82043d307b2913dd0be4bac.tar.bz2
gentoo-6a46793b02a6b023e82043d307b2913dd0be4bac.zip
app-editors/hteditor: drop old
Package-Manager: Portage-3.0.5, Repoman-3.0.1 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'app-editors')
-rw-r--r--app-editors/hteditor/Manifest1
-rw-r--r--app-editors/hteditor/hteditor-2.1.0-r1.ebuild64
2 files changed, 0 insertions, 65 deletions
diff --git a/app-editors/hteditor/Manifest b/app-editors/hteditor/Manifest
index 269e9e3ca85d..54779c7af5c0 100644
--- a/app-editors/hteditor/Manifest
+++ b/app-editors/hteditor/Manifest
@@ -1,2 +1 @@
-DIST ht-2.1.0.tar.bz2 884139 BLAKE2B c979563cbfc4df7e14f587b250fbf099d9f4683afddb3afc88693284c378c45466dfa3c47555fc69e83e2972cfabab63f3cdd42fd85602842854372131e4063d SHA512 6b5fc5fcbc63b9b7c85721158e044e4578ebfdc38618c760c0e6de06a276bccd3a960ab8bed172de788934515ad94d86349c4abd3228da66b1601deaaa2ce410
DIST ht-2.1.1_pre20161206.tar.gz 1082309 BLAKE2B 4fb00b0aa6115da3b561436f9f9905c48d93d6768bcf207931bb46840727c85fb5c9a1afda8ed805f71e9ce242161a2b95e26add02ff5aedc407df7f11c6ddec SHA512 33d681ee8c978568dd0d187d6846994362625d000c316baab10c237175fa6a47dc0e7b61cfd503c4dfad8a01d27af7fc87cbf20109087e1d9280048c898fa621
diff --git a/app-editors/hteditor/hteditor-2.1.0-r1.ebuild b/app-editors/hteditor/hteditor-2.1.0-r1.ebuild
deleted file mode 100644
index 1660e108bde7..000000000000
--- a/app-editors/hteditor/hteditor-2.1.0-r1.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools flag-o-matic toolchain-funcs
-
-MY_P=${P/editor}
-
-DESCRIPTION="A file viewer, editor and analyzer for text, binary, and executable files"
-HOMEPAGE="http://hte.sourceforge.net/ https://github.com/sebastianbiallas/ht/"
-SRC_URI="mirror://sourceforge/hte/${MY_P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc ppc64 x86"
-IUSE="X"
-
-RDEPEND="sys-libs/ncurses:0=
- X? ( x11-libs/libX11 )
- >=dev-libs/lzo-2"
-DEPEND="${RDEPEND}
- virtual/yacc
- sys-devel/flex"
-
-DOCS=( AUTHORS ChangeLog KNOWNBUGS README TODO )
-
-S=${WORKDIR}/${MY_P}
-
-PATCHES=(
- "${FILESDIR}"/${P}-gcc-7.patch
- "${FILESDIR}"/${P}-tinfo.patch
- "${FILESDIR}"/${P}-gcc-6-uchar.patch
- "${FILESDIR}"/${P}-format-security.patch
- "${FILESDIR}"/${P}-gcc-10.patch
- "${FILESDIR}"/${P}-AR.patch
-)
-
-src_prepare() {
- default
- eautoreconf
-
- # Many literals are concatenated with macro definitions.
- # Instead of patching them all let's pick old c++ standard
- # and port to c++11 upstream.
- # https://bugs.gentoo.org/729252
- append-cxxflags -std=c++98
-}
-
-src_configure() {
- econf \
- $(use_enable X x11-textmode) \
- --enable-maintainermode
-}
-
-src_install() {
- #For prefix
- chmod u+x "${S}/install-sh"
-
- local HTML_DOCS="doc/*.html"
- doinfo doc/*.info
-
- default
-}