commit: b45ead1b0d9985fd6a6a9d8b2edb4eb45add95e0 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org> AuthorDate: Tue Mar 11 17:16:00 2025 +0000 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org> CommitDate: Tue Mar 11 17:16:00 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b45ead1b
app-editors/zile: add 2.6.3 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org> app-editors/zile/Manifest | 1 + app-editors/zile/zile-2.6.3.ebuild | 51 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 52 insertions(+) diff --git a/app-editors/zile/Manifest b/app-editors/zile/Manifest index ba1561a3565d..ad03f740f9fb 100644 --- a/app-editors/zile/Manifest +++ b/app-editors/zile/Manifest @@ -1 +1,2 @@ DIST zile-2.6.2.tar.gz 1152751 BLAKE2B db51b534c8d76e1def91bbfe49cab501ff1bccd6fbeddd5622d8fca3695305c53e480eed1978e880621e09955e2b98519cfa02cf259006a08d1a8722122148ea SHA512 16d5cece403fc215d53b35c31fe6f743d53d7a01cdc7d101cabe6760173539c9c31e092b29c374f28a723708027f6de626fcfee302962848091f85078fa81761 +DIST zile-2.6.3.tar.gz 1329853 BLAKE2B 258a0251b3462e10d84d267ebcb1523696f2c2e79c776d9f4a35487c4266cf526389f38bdc39d52cbbd40be5d17664ed81dd0ebdd1aec5201696d500a3fed33e SHA512 7efdabcee8193a873ae79903b19c582abb8d7470384afe93f8764b4a9422ecb980b3fc961795e760ea4d0816d1af6773f6f58f8ff7f36550a4418c236dcbd529 diff --git a/app-editors/zile/zile-2.6.3.ebuild b/app-editors/zile/zile-2.6.3.ebuild new file mode 100644 index 000000000000..50c08396bf7d --- /dev/null +++ b/app-editors/zile/zile-2.6.3.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs vala + +DESCRIPTION="Zile is a small Emacs clone" +HOMEPAGE="https://www.gnu.org/software/zile/" +SRC_URI="mirror://gnu/zile/${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" + +RDEPEND="dev-libs/glib:2 + dev-libs/libgee:0.8= + sys-libs/ncurses:0=" + +DEPEND="${RDEPEND}" + +BDEPEND="dev-lang/perl + sys-apps/help2man + virtual/pkgconfig + $(vala_depend)" + +# AUTHORS, FAQ, and NEWS are installed by the build system +DOCS="README THANKS" + +QA_AM_MAINTAINER_MODE=".*help2man.*" #450278 + +src_prepare() { + default + vala_setup + rm *_vala.stamp || die +} + +src_configure() { + econf CURSES_LIB="$("$(tc-getPKG_CONFIG)" --libs ncurses)" +} + +src_test() { + if tput cup 0 0 >/dev/null || tput cuu1 >/dev/null; then + # We have a sane terminal that can move the cursor + emake check + else + ewarn "Terminal type \"${TERM}\" is too stupid to run zile" + ewarn "Running the tests with unset TERM instead" + ( unset TERM; emake check ) + fi +}
