summaryrefslogtreecommitdiff
path: root/app-editors/joe
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-07-21 14:44:25 +0100
committerV3n3RiX <venerix@koprulu.sector>2022-07-21 14:44:25 +0100
commit2480f36bfb3d39469cc44843d1fe664bd40443a3 (patch)
tree1c57ba55297055b6b0a88830282439b6c6d58d0c /app-editors/joe
parent3c54b2473c5fb6fe0fc543b15fc4678471922cb1 (diff)
gentoo auto-resync : 21:07:2022 - 14:44:25
Diffstat (limited to 'app-editors/joe')
-rw-r--r--app-editors/joe/Manifest1
-rw-r--r--app-editors/joe/joe-4.6.ebuild56
2 files changed, 0 insertions, 57 deletions
diff --git a/app-editors/joe/Manifest b/app-editors/joe/Manifest
index c7ed8302349c..dc2a70e18b01 100644
--- a/app-editors/joe/Manifest
+++ b/app-editors/joe/Manifest
@@ -2,5 +2,4 @@ AUX joe-4.3-tinfo.patch 1063 BLAKE2B 574f78a31200df60dab81fea278bb238fbfe0a2b3f7
AUX joe-4.6-db.patch 392 BLAKE2B 8ca4d25a1e1be76b87e581720903064f4a54b928c6c7a91991d6ae6227df00e4b13c6c9fa3ac47563f5924c5e9aa18a86f1cb471155d8ca8fccc67e151f7bada SHA512 47eeffc203879ae7a644ef3875bda41c7bd776a51fcf7f6e9d4a30a5e5f0209d1067b516efcd5faac3ecf2fb204e0105eb9cc453df5c853413a613cfdb6e4fc6
DIST joe-4.6.tar.gz 1895046 BLAKE2B fbf53d3b5b066cb32bb26b08d7d314a3bb89ac5ae22db498cdf3597bf8cb322bd9aa05543debd47ac7380a33982c388e13f38c60747503494c582393ae8eb13d SHA512 3dd64a994fb3d352a12bf027ef16d57d14ac2577fd63fb6b6e25cae46052befaa7c15dc029bff2f8c3275df90f0343bd46313601055d97277ea4540e109fbe82
EBUILD joe-4.6-r1.ebuild 1442 BLAKE2B 001241adc249ec3d3dde1281ccacbd3ae80af415db2ed1c53c17efecd158ac0df2dfa4a48662d0b67a241fc2b7c2693e3aa52b2d0ff9d0baa284d2c86bd235ec SHA512 ec002bc766278c2c96f1c72f69436c4254e2299ead3cd482d52e374f5981dcf1c1c1e19fd43d5bc31e14a46094739897b8596aa7498fa91864cb043280a749b2
-EBUILD joe-4.6.ebuild 1451 BLAKE2B 22ead97178fb10352f96dbd1626621d952a44de87425a9d7d3147b03c2863469209d7b320d0da3fbc2b2031e7737d78195121f3137afd30af8b60e53d933eca5 SHA512 593767e422cc2ac1c6d8e423919cd33b5b679192d2952594e3309fa7147cb2df395717bd2c34903a9aca517b764644e2518898155d7eb120d520e3fa4943e405
MISC metadata.xml 915 BLAKE2B 550fe334d2253e6c3a707f75905b2af3082bea436348a48da9f55726ef5399f97a8b4efe29ae9b174576bde20cd89fbdc9ce88e13459d236a0cdc18592f9721f SHA512 b773c1fabafcf36ea1106610da0b3e9d10119352a663871f9b08dbac19f661f46c80e9a3cd5d4ab69079e8d07f4dc5e03f513b6ad82a5a879c2725ad88296d1c
diff --git a/app-editors/joe/joe-4.6.ebuild b/app-editors/joe/joe-4.6.ebuild
deleted file mode 100644
index 0bf861b42de7..000000000000
--- a/app-editors/joe/joe-4.6.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools gnome2-utils
-
-DESCRIPTION="A free ASCII-Text Screen Editor for UNIX"
-HOMEPAGE="https://sourceforge.net/projects/joe-editor/"
-SRC_URI="mirror://sourceforge/joe-editor/${P}.tar.gz"
-
-LICENSE="GPL-1+ CC-BY-3.0"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris"
-IUSE="xterm"
-
-DEPEND=">=sys-libs/ncurses-5.2-r2:0="
-RDEPEND="${DEPEND}
- xterm? ( >=x11-terms/xterm-239 )"
-
-PATCHES=(
- "${FILESDIR}/${PN}-4.3-tinfo.patch"
- "${FILESDIR}/${P}-db.patch"
-)
-
-DOCS=( README.md NEWS.md docs/hacking.md docs/man.md )
-
-src_prepare() {
- default
- # Enable xterm mouse support in the rc files
- if use xterm; then
- pushd "${S}"/rc &>/dev/null || die
- local i
- for i in *rc*.in; do
- sed -e 's/^ -\(mouse\|joexterm\)/-\1/' -i "${i}" || die
- done
- popd &>/dev/null
- fi
- eautoreconf
-}
-
-pkg_postinst() {
- xdg_desktop_database_update
- gnome2_icon_cache_update
- if use xterm; then
- elog "To enable full xterm clipboard you need to set the allowWindowOps"
- elog "resources to true. This is usually found in /etc/X11/app-defaults/XTerm"
- elog "This is false by default due to potential security problems on some"
- elog "architectures (see bug #91453)."
- fi
-}
-
-pkg_postrm() {
- xdg_desktop_database_update
- gnome2_icon_cache_update
-}