summaryrefslogtreecommitdiff
path: root/app-vim/fluxbox-syntax
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2019-02-16 12:59:29 +0000
committerV3n3RiX <venerix@redcorelinux.org>2019-02-16 12:59:29 +0000
commit79599515788b85b18aa655e7b7f8cc05c1bbddd8 (patch)
treeade7cb031f363fad64c77139dea7aa3d81908537 /app-vim/fluxbox-syntax
parent6bc2e4d7c5906e46a8f275a876ead6ec41aca5bb (diff)
gentoo resync : 16.02.1018
Diffstat (limited to 'app-vim/fluxbox-syntax')
-rw-r--r--app-vim/fluxbox-syntax/Manifest2
-rw-r--r--app-vim/fluxbox-syntax/fluxbox-syntax-1.5-r1.ebuild (renamed from app-vim/fluxbox-syntax/fluxbox-syntax-1.5.ebuild)17
2 files changed, 8 insertions, 11 deletions
diff --git a/app-vim/fluxbox-syntax/Manifest b/app-vim/fluxbox-syntax/Manifest
index ddaa153c465c..b88dfaf2397e 100644
--- a/app-vim/fluxbox-syntax/Manifest
+++ b/app-vim/fluxbox-syntax/Manifest
@@ -1,3 +1,3 @@
DIST fluxbox-syntax-1.5.tar.bz2 1376 BLAKE2B 2006668a89077febb4ec919354359cae1170156950abb553695d6424cb277bca69a5e8ffa93a9e4b09b990e96f9ee34654d34dc15320140dad589808ef9960dc SHA512 0567af6fe0994ea228ac56c3a26485ba5cce7762e3d70d6dced978e56017f6769072c83ae68125de3e03190562a7a10102bef038c02ae148cf70cc0c5951b8df
-EBUILD fluxbox-syntax-1.5.ebuild 963 BLAKE2B 4356481080d14e8f82ecdd54e39106206a9d17fd512d9c974a85f8928bd5ba12088203b785c70dc56b2e357a712d01a0003d80f6323adfe7eccc917649d946dd SHA512 9c806b238d67c86cd0349861dc857be3be14c235435eac188cf9ee70ff5851f3d67764a129f6724f4778d3e9bfba13e1d6aa657d779e206cd17fd7202d1f1552
+EBUILD fluxbox-syntax-1.5-r1.ebuild 897 BLAKE2B ea7e6b5dc33b1a6ad8ad5c77688d9602461c11b69fd3e4f72b9ac9f619ed5e3fbf5485e2805a03c647d2045b452b57205d2207d138f156a25928b4959eb6d78b SHA512 b45cc6079fa5637af6789f7f614488074125fec3413dd31697fde305408fa406a1bb950cbafe071f48ad6f8404348915224af11127ab7e0b52fe2e7b65b9afbd
MISC metadata.xml 249 BLAKE2B 7ae6eac3ca23edbcbaa6aee682bb4aec155e3166f169eef8e4400e59fa56113ecc3593680d55cc57f08a4a718963dd3d0bb804bd1e8771ed60a4bebaae9db281 SHA512 4051dd059d975d2e1799125f7defbf5a62a168241d8b83d83710592efd60808800951c4fd6da1294044d7e7ec6b757b8d50593fd076696f826dec761e99645c7
diff --git a/app-vim/fluxbox-syntax/fluxbox-syntax-1.5.ebuild b/app-vim/fluxbox-syntax/fluxbox-syntax-1.5-r1.ebuild
index 082606e60e31..1165be5cb0ab 100644
--- a/app-vim/fluxbox-syntax/fluxbox-syntax-1.5.ebuild
+++ b/app-vim/fluxbox-syntax/fluxbox-syntax-1.5-r1.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=0
+EAPI=6
inherit vim-plugin
@@ -9,9 +9,8 @@ DESCRIPTION="vim plugin: fluxbox files syntax and indent"
HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=679"
LICENSE="vim"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
-IUSE=""
-RDEPEND="${RDEPEND} >=app-vim/genindent-1.0"
+RDEPEND="app-vim/genindent"
VIM_PLUGIN_HELPTEXT=\
"This plugin provides syntax highlighting and indent settings for fluxbox
@@ -21,11 +20,9 @@ set the filetype using :set filetype=fluxbox if necessary."
VIM_PLUGIN_MESSAGES="filetype"
-src_unpack() {
- unpack ${A}
- cd "${S}"
- # no ftdetect file provided. lame...
- mkdir ftdetect
+src_prepare() {
+ default
+ mkdir ftdetect || die
echo "au BufNewFile,BufRead /*/*fluxbox/*menu set filetype=fluxbox" \
- > ftdetect/fluxbox.vim
+ > ftdetect/fluxbox.vim || die
}