summaryrefslogtreecommitdiff
path: root/app-editors/yudit
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2024-09-03 18:05:10 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2024-09-03 18:05:10 +0000
commit76d2ce1ce8fe2f4056d456f8fc069302fa55397c (patch)
tree9bf0f31b4a312f837cfcbdd981806c3ca77b9052 /app-editors/yudit
parent56e1af7c13f996507355f4fef0c690002d633f07 (diff)
downloadbaldeagleos-repo-76d2ce1ce8fe2f4056d456f8fc069302fa55397c.tar.gz
baldeagleos-repo-76d2ce1ce8fe2f4056d456f8fc069302fa55397c.tar.xz
baldeagleos-repo-76d2ce1ce8fe2f4056d456f8fc069302fa55397c.zip
Adding metadata
Diffstat (limited to 'app-editors/yudit')
-rw-r--r--app-editors/yudit/Manifest1
-rw-r--r--app-editors/yudit/yudit-2.9.6.ebuild27
-rw-r--r--app-editors/yudit/yudit-3.1.0-r1.ebuild31
3 files changed, 0 insertions, 59 deletions
diff --git a/app-editors/yudit/Manifest b/app-editors/yudit/Manifest
index 93e80c06ad1c..992a158155bf 100644
--- a/app-editors/yudit/Manifest
+++ b/app-editors/yudit/Manifest
@@ -1,2 +1 @@
-DIST yudit-2.9.6.tar.gz 2797142 BLAKE2B 76fb8e0ade65c84389db71b4100e458f5b70aebba27eea4b604bfcee08974060dcd2bab2d86586b5ba729d8d5090c943e825dfe58d71c609f0ca2f2e0c3900c9 SHA512 a9a0b6f6c44451cf2fefc4fc0bb1bbd9ffccd17c4c622dc35b08113245b3bb9f3ca949f3e7b9d2aa919ebf3840295c5e63c0297576e74a5f2d1fb99cfc97c46b
DIST yudit-3.1.0.tar.gz 4317815 BLAKE2B fdcec8402bd87f800b0e2712f74d5d546d7ba0733b36fec720e46ef0c5efc0be340ec8db7ffe101c5596d054cc10e1364bf2d5a70f25b234e57165b5116edd80 SHA512 07b89cdea29971fe49a7e61e2919261d6a39a6420c2587fad160a78885513460cb210b63dbfc1320f993d38e56e4104f77911530b9b7da210bfb7390e37ed352
diff --git a/app-editors/yudit/yudit-2.9.6.ebuild b/app-editors/yudit/yudit-2.9.6.ebuild
deleted file mode 100644
index e9bbd2b8ef67..000000000000
--- a/app-editors/yudit/yudit-2.9.6.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DESCRIPTION="Free (Y)unicode text editor for all unices"
-HOMEPAGE="http://www.yudit.org/"
-SRC_URI="http://yudit.org/download/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND="x11-libs/libX11"
-DEPEND="${RDEPEND}"
-BDEPEND="sys-devel/gettext"
-
-src_prepare() {
- default
- #Don't strip binaries, let portage do that.
- sed -i "/^INSTALL_PROGRAM/s: -s::" Makefile.conf.in || die "sed failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install
- dodoc {BUGS,CHANGELOG,NEWS,TODO,XBUGS}.TXT
-}
diff --git a/app-editors/yudit/yudit-3.1.0-r1.ebuild b/app-editors/yudit/yudit-3.1.0-r1.ebuild
deleted file mode 100644
index faaae1391bc4..000000000000
--- a/app-editors/yudit/yudit-3.1.0-r1.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit toolchain-funcs
-
-DESCRIPTION="Free (Y)unicode text editor for all unices"
-HOMEPAGE="https://www.yudit.org/"
-SRC_URI="https://yudit.org/download/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND="x11-libs/libX11"
-DEPEND="${RDEPEND}"
-BDEPEND="sys-devel/gettext"
-
-DOCS=( {BUGS,CHANGELOG,NEWS,TODO}.TXT )
-
-src_prepare() {
- default
- # Don't strip binaries, let portage do that.
- # Don't call ar / ranlib directly
- sed -i \
- -e "/^INSTALL_PROGRAM/s| -s||" \
- -e "s|ar cr|$(tc-getAR) cr|g" \
- -e "s|ranlib|$(tc-getRANLIB)|g" \
- Makefile.conf.in || die "sed failed"
-}