summaryrefslogtreecommitdiff
path: root/app-editors/joe
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-12-02 14:56:29 +0000
committerV3n3RiX <venerix@koprulu.sector>2022-12-02 14:56:29 +0000
commitcc2c9e975285d6fb1be1b71d18ba4cca7991b921 (patch)
tree9b90516b35ff9055066e5b8f2e4a2ce3b6a71b38 /app-editors/joe
parent5a1e5a6812ca9c9555657cce48fe09d2ffa44401 (diff)
gentoo auto-resync : 02:12:2022 - 14:56:29
Diffstat (limited to 'app-editors/joe')
-rw-r--r--app-editors/joe/Manifest1
-rw-r--r--app-editors/joe/joe-4.6-r1.ebuild56
2 files changed, 0 insertions, 57 deletions
diff --git a/app-editors/joe/Manifest b/app-editors/joe/Manifest
index 6a979af85d2c..70a2270a109a 100644
--- a/app-editors/joe/Manifest
+++ b/app-editors/joe/Manifest
@@ -2,6 +2,5 @@ AUX joe-4.3-tinfo.patch 1063 BLAKE2B 574f78a31200df60dab81fea278bb238fbfe0a2b3f7
AUX joe-4.6-db.patch 392 BLAKE2B 8ca4d25a1e1be76b87e581720903064f4a54b928c6c7a91991d6ae6227df00e4b13c6c9fa3ac47563f5924c5e9aa18a86f1cb471155d8ca8fccc67e151f7bada SHA512 47eeffc203879ae7a644ef3875bda41c7bd776a51fcf7f6e9d4a30a5e5f0209d1067b516efcd5faac3ecf2fb204e0105eb9cc453df5c853413a613cfdb6e4fc6
AUX joe-4.6-prototypes.patch 10006 BLAKE2B cf9845339aa30b99223412a9e2c6407bbbd2bb6eb5ce630d3a7e93bc084ee8bffdee97e15ce17765b6a5de9fcc02453b4962126043fe021cf17e6c062b13108f SHA512 9ccd53de36e813c79dbd1c76e43c7f9b756243455e0faf7eb98e8ebeada30256393475270a9858c6f319f28b4fe56f320e81c7898e41cf8b4ade1c22000e6884
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-r2.ebuild 1479 BLAKE2B 10ac5cae3afdc72b26c3ed032ad779ca67adda50a9e09280bb18aec84a41c2c9190aaceb0f635ac30e75924865f5c3a999e29f88bd0d05a424beb6a2ff317967 SHA512 fccb98942103f2c1d16fbc3941e52c8c094612001b50500681106674f81780dee0e7e8108a42daf6a7ff8ec717aba6a62239d2e5e9d43f7686519551dc6ea423
MISC metadata.xml 915 BLAKE2B 550fe334d2253e6c3a707f75905b2af3082bea436348a48da9f55726ef5399f97a8b4efe29ae9b174576bde20cd89fbdc9ce88e13459d236a0cdc18592f9721f SHA512 b773c1fabafcf36ea1106610da0b3e9d10119352a663871f9b08dbac19f661f46c80e9a3cd5d4ab69079e8d07f4dc5e03f513b6ad82a5a879c2725ad88296d1c
diff --git a/app-editors/joe/joe-4.6-r1.ebuild b/app-editors/joe/joe-4.6-r1.ebuild
deleted file mode 100644
index 195c91a815d2..000000000000
--- a/app-editors/joe/joe-4.6-r1.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools xdg-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
- xdg_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
- xdg_icon_cache_update
-}