diff options
author | Sam James <sam@gentoo.org> | 2021-10-09 04:49:57 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-10-09 04:57:07 +0100 |
commit | bebd23328169e114c2c4c650de47a1f361ed6d6d (patch) | |
tree | 0845e97662d38cac532a19c4c9625db7b861229a /app-editors/gvim/gvim-9999.ebuild | |
parent | app-editors/vim: fix automagic libsodium dependency (diff) | |
download | gentoo-bebd23328169e114c2c4c650de47a1f361ed6d6d.tar.gz gentoo-bebd23328169e114c2c4c650de47a1f361ed6d6d.tar.bz2 gentoo-bebd23328169e114c2c4c650de47a1f361ed6d6d.zip |
app-editors/gvim: fix automagic libsodium dependency
Bug: https://bugs.gentoo.org/816966
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-editors/gvim/gvim-9999.ebuild')
-rw-r--r-- | app-editors/gvim/gvim-9999.ebuild | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/app-editors/gvim/gvim-9999.ebuild b/app-editors/gvim/gvim-9999.ebuild index ecd0b5e0dd0f..0a202597784e 100644 --- a/app-editors/gvim/gvim-9999.ebuild +++ b/app-editors/gvim/gvim-9999.ebuild @@ -17,7 +17,7 @@ if [[ ${PV} == 9999* ]]; then else SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> vim-${PV}.tar.gz https://dev.gentoo.org/~zlogene/distfiles/app-editors/vim/vim-8.2.0360-gentoo-patches.tar.xz" - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris" fi DESCRIPTION="GUI version of the Vim text editor" @@ -25,7 +25,7 @@ HOMEPAGE="https://vim.sourceforge.io/ https://github.com/vim/vim" SLOT="0" LICENSE="vim" -IUSE="acl aqua cscope debug gtk gtk2 lua motif neXt netbeans nls perl python racket ruby selinux session sound tcl" +IUSE="acl aqua crypt cscope debug gtk gtk2 lua motif neXt netbeans nls perl python racket ruby selinux session sound tcl" REQUIRED_USE=" lua? ( ${LUA_REQUIRED_USE} ) python? ( ${PYTHON_REQUIRED_USE} ) @@ -59,6 +59,7 @@ RDEPEND=" ) ) ) + crypt? ( dev-libs/libsodium:= ) cscope? ( dev-util/cscope ) lua? ( ${LUA_DEPS} @@ -198,6 +199,7 @@ src_configure() { --with-gnome=no $(use_enable sound canberra) $(use_enable acl) + $(use_enable crypt libsodium) $(use_enable cscope) $(use_enable netbeans) $(use_enable nls) |