diff options
author | Haelwenn (lanodan) Monnier <contact@hacktivis.me> | 2017-10-26 00:57:28 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2018-02-09 17:36:10 +0100 |
commit | e081e240b3e713c8512f38d125c50fbbe250b6d2 (patch) | |
tree | 6546c62853b77cab0020ce76ff10d26665e5b952 /app-editors | |
parent | sys-devel/clang-runtime: Bump to 6.0.0rc2 (diff) | |
download | gentoo-e081e240b3e713c8512f38d125c50fbbe250b6d2.tar.gz gentoo-e081e240b3e713c8512f38d125c50fbbe250b6d2.tar.bz2 gentoo-e081e240b3e713c8512f38d125c50fbbe250b6d2.zip |
app-editors/vis: add FEATURES=test
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/vis/Manifest | 1 | ||||
-rw-r--r-- | app-editors/vis/vis-0.3.ebuild | 17 | ||||
-rw-r--r-- | app-editors/vis/vis-9999.ebuild | 8 |
3 files changed, 23 insertions, 3 deletions
diff --git a/app-editors/vis/Manifest b/app-editors/vis/Manifest index b4b954cd9cf1..a7f843902fef 100644 --- a/app-editors/vis/Manifest +++ b/app-editors/vis/Manifest @@ -1 +1,2 @@ DIST vis-0.3.tar.gz 334216 BLAKE2B 8cf89f1e3292beb5bf7bc9495e75b795225a4a29f4d949f212daf5dd42958f347b1400a0fd1bf00014b28cfbd424bb04152c35ef9025384a746e59143fc872bb SHA512 e1ca009bd7569f22dacf7464791f9f4499695d15d6e38e1be491d39e7ebe0530de643be5c1e7647e9beb7969a17efab6545d3e719fe8cf311562e89d636bba62 +DIST vis-test-0.1.tar.gz 95274 BLAKE2B e268abda50e11809d349778bb517f9be884d6d4ef8b940b5027adf9d37d091eda7fc6e274945998a9c35df372a0fd2ad499c2b686f1fe6761b54aec397b2b9aa SHA512 433a67892f27eb01f3ea6224e1ded393cd949b4d60f7c14656fdd526c02d2b309f63d39887d8d7ba11cbad3e183ab3cd1a913ac40aa29eadb7fa700eb76424b6 diff --git a/app-editors/vis/vis-0.3.ebuild b/app-editors/vis/vis-0.3.ebuild index e6ef1b663060..4f5eded38a78 100644 --- a/app-editors/vis/vis-0.3.ebuild +++ b/app-editors/vis/vis-0.3.ebuild @@ -3,13 +3,16 @@ EAPI=5 +MY_PTV=0.1 + DESCRIPTION="modern, legacy free, simple yet efficient vim-like editor" HOMEPAGE="https://github.com/martanne/vis" -SRC_URI="https://github.com/martanne/vis/archive/v${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI="https://github.com/martanne/vis/archive/v${PV}.tar.gz -> ${P}.tar.gz + test? ( https://github.com/martanne/vis-test/archive/v${MY_PTV}.tar.gz -> vis-test-${MY_PTV}.tar.gz )" LICENSE="ISC" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="+ncurses selinux tre" +IUSE="+ncurses selinux test tre" #Note: vis is reported to also work with NetBSD curses #TODO: >=dev-lang/lua-5.2 (needed for syntax highlighting and settings) @@ -18,6 +21,16 @@ DEPEND=" dev-libs/libtermkey tre? ( dev-libs/tre:= )" RDEPEND="${DEPEND}" +src_prepare() { + if use test; then + rm -r test || die + mv "${WORKDIR}/vis-test-${MY_PTV}" test || die + if ! type -P vim &>/dev/null; then + sed -i 's/.*vim.*//' test/Makefile || die + fi + fi +} + src_configure() { econf \ $(use_enable ncurses curses) \ diff --git a/app-editors/vis/vis-9999.ebuild b/app-editors/vis/vis-9999.ebuild index 55adf2006010..1826f178662a 100644 --- a/app-editors/vis/vis-9999.ebuild +++ b/app-editors/vis/vis-9999.ebuild @@ -10,7 +10,7 @@ EGIT_REPO_URI="https://github.com/martanne/vis.git" LICENSE="ISC" SLOT="0" KEYWORDS="" -IUSE="+ncurses selinux tre" +IUSE="+ncurses selinux test tre" #Note: vis is reported to also work with NetBSD curses #TODO: >=dev-lang/lua-5.2 (needed for syntax highlighting and settings) @@ -19,6 +19,12 @@ DEPEND=" dev-libs/libtermkey tre? ( dev-libs/tre:= )" RDEPEND="${DEPEND}" +src_prepare() { + if use test && ! type -P vim &>/dev/null; then + sed -i 's/.*vim.*//' "${S}/test/Makefile" || die + fi +} + src_configure() { econf \ $(use_enable ncurses curses) \ |