summaryrefslogtreecommitdiff
path: root/app-doc/vilearn
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 21:03:06 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 21:03:06 +0100
commit8376ef56580626e9c0f796d5b85b53a0a1c7d5f5 (patch)
tree7681bbd4e8b05407772df40a4bf04cbbc8afc3fa /app-doc/vilearn
parent30a9caf154332f12ca60756e1b75d2f0e3e1822d (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'app-doc/vilearn')
-rw-r--r--app-doc/vilearn/Manifest3
-rw-r--r--app-doc/vilearn/metadata.xml7
-rw-r--r--app-doc/vilearn/vilearn-1.0.ebuild28
3 files changed, 38 insertions, 0 deletions
diff --git a/app-doc/vilearn/Manifest b/app-doc/vilearn/Manifest
new file mode 100644
index 000000000000..f02688212d4f
--- /dev/null
+++ b/app-doc/vilearn/Manifest
@@ -0,0 +1,3 @@
+DIST vilearn-1.0.tar.gz 15687 BLAKE2B af683e8e6e560f53ebad6b7764d3a57d5722d5eb77f8e7cd582e81a3421c3fa8d52770b8ef665bab4989a549c2637d9649d7d31178235e02b36e65af761f7e04 SHA512 5bb53d6eece6025eb0c3dfb90badba12ba3996658af63cac09773c1db455dd7211014a3b3c5f8bd4bb6a709303ee1d6d370805401ca5807ac3c171f774ec91ee
+EBUILD vilearn-1.0.ebuild 581 BLAKE2B eda91093f65ec2051f8f2bcfce5fc8d7b983531e0b60fa2f9aeadacc3062bd472a2c6d685594ef89b45ddab5b45b051995602201893cdc319fedc20a0d0e53a8 SHA512 322840b7e631f04a58b23e484b1ed30d8658d29a41370a06764be2864b9e292ee6b6667d916d91db5764d6f5f801ae157f737905ac6c2145f4032445b71d8867
+MISC metadata.xml 221 BLAKE2B 6fb71e3c82061054a0c2d88c1ce8e591d5742628fe53032c9efd2c371ce1e8b0135b00ac91fa1905df39a507d5faa5871fb3a30d167dd46cec581682ba17c8ff SHA512 a11e9bbbabc9ac96985c5dc247e601b065fa762f12bce74224896c27aee34eb908187622bfc849c39c6c722a8ef8ee72b248afc84da1b0eb72f1ff5eeb13bbf0
diff --git a/app-doc/vilearn/metadata.xml b/app-doc/vilearn/metadata.xml
new file mode 100644
index 000000000000..21dc8fdf43ff
--- /dev/null
+++ b/app-doc/vilearn/metadata.xml
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>hattya@gentoo.org</email>
+ </maintainer>
+</pkgmetadata>
diff --git a/app-doc/vilearn/vilearn-1.0.ebuild b/app-doc/vilearn/vilearn-1.0.ebuild
new file mode 100644
index 000000000000..9c429b0f3570
--- /dev/null
+++ b/app-doc/vilearn/vilearn-1.0.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="5"
+
+DESCRIPTION="An interactive vi tutorial comprised of 5 tutorials for the vi-impaired"
+HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
+SRC_URI="mirror://gentoo/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="amd64 ppc x86 ~ppc-macos ~x86-macos"
+IUSE=""
+
+RDEPEND="app-editors/vim"
+
+src_prepare() {
+ sed -i "s:/usr/local:${EPREFIX}/usr:" Makefile
+}
+
+src_install() {
+ dobin vilearn
+ doman vilearn.1
+ dodoc README outline
+
+ insinto /usr/lib/vilearn
+ doins [0-9]*
+}