summaryrefslogtreecommitdiff
path: root/app-text/o3read
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2020-01-22 18:41:30 +0000
committerV3n3RiX <venerix@redcorelinux.org>2020-01-22 18:41:30 +0000
commit580f05ea8f512d11e23e8da80177d27835cbdbbc (patch)
tree48f1c956bdc671653181038c8d67d35bc8569d41 /app-text/o3read
parentf29eb0598f62fc3b5f09f2de5a89c0437c6164d9 (diff)
gentoo resync : 22.02.2020
Diffstat (limited to 'app-text/o3read')
-rw-r--r--app-text/o3read/Manifest3
-rw-r--r--app-text/o3read/o3read-0.0.4.ebuild18
2 files changed, 9 insertions, 12 deletions
diff --git a/app-text/o3read/Manifest b/app-text/o3read/Manifest
index b156d3661c29..accc5319663f 100644
--- a/app-text/o3read/Manifest
+++ b/app-text/o3read/Manifest
@@ -1,3 +1,4 @@
+AUX o3read-0.0.4-fix-buildsystem.patch 703 BLAKE2B 89a61be0303ee3bee3162b9adf0f415795baf9726837ee2e3c805516a5e989a59ecb079f684660ec616fe72a62809b4f845bc1cb6380647c383b8e44dfc8a216 SHA512 0395f4af51deeb330a155e72b55a400f803d451af5e7664f147f7a8b3d1a3d971a209ae454faa9d836a8e28be09d83ca1a6cadb412befd4f16b0f45928e64da9
DIST o3read-0.0.4.tar.gz 21075 BLAKE2B 35a7cdb3b8242179372c08428691ff0d7ef6df14777b2559847df0a3b15396a8eb28746cdefa99109e6b2544d4ed7997934b50b620d847c3ad150404b8b3252e SHA512 5287a9d58a77cba47397265de9decac1d4327f0a6065cbf7303451d48126a173ad2763157355c9a41237feac6b467ddff5d7e5ad4b4d6c3870f1d09ae0035879
-EBUILD o3read-0.0.4.ebuild 631 BLAKE2B cd93bd95c82f589cb0deb26a0b1a8a6bac7e0a6d55f8617553b21725606d9a0fa2a8f380a5010fe7ff416289c07b38b6c9737b296d0578254c1cf28442046fd2 SHA512 de72f26f1d09390eb361b1f9f9071da5ba204ea2a1ce1a4ed15cd487c06f849cfa4c6363ca6b5b4a50df48a5588e35e2add166d5584a60d50a50f7f84fcc518f
+EBUILD o3read-0.0.4.ebuild 556 BLAKE2B 7ab6882de3d8c4445e1914f72babb382bfa74c9ccd030ee4f298d5d3c85ce4a03f24aa25986ada7aea76686f3ae280a58b4a65591a5ec55b45a2cc5d74841b61 SHA512 35463dfaa39df6c49e998fffc4e0fabeced79e11421c170beccd58eb4c8cef52902514c5ef7eb37947bb6c44c0931fbdb81cd40d272144fb548cb6ddf05f819d
MISC metadata.xml 166 BLAKE2B c254f1fb642881aba57637be14fb0a89b10384f91a128feaec3a8c870d76efc2cbacb92caccc0dee2dd19a5ac5eaf8643080dafa05c4e2ac96a68568927e5afd SHA512 a56648c974a1d14dd4c18237532773c72057a13ab90c58b5da04f185e3c12a8bd8d5c21fb06053507f31766291a82dc7d87b34cd65fd94cfe2af7295c813ef84
diff --git a/app-text/o3read/o3read-0.0.4.ebuild b/app-text/o3read/o3read-0.0.4.ebuild
index 9b39421c0634..4cf54987a0c9 100644
--- a/app-text/o3read/o3read-0.0.4.ebuild
+++ b/app-text/o3read/o3read-0.0.4.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=4
+EAPI=7
inherit toolchain-funcs
@@ -12,20 +12,16 @@ SRC_URI="http://siag.nu/pub/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos"
-IUSE=""
+RESTRICT="test"
-RESTRICT=test
+PATCHES=( "${FILESDIR}"/${P}-fix-buildsystem.patch )
-src_prepare() {
- sed \
- -e 's:-o:$(LDFLAGS) -o:g' \
- -e '/^CC/d' \
- -e '/^CFLAGS/g' \
- -i Makefile || die
+src_configure() {
tc-export CC
}
src_install() {
dobin o3read o3totxt o3tohtml utf8tolatin1
- doman o3read.1 o3tohtml.1 o3totxt.1 utf8tolatin1.1
+ einstalldocs
+ doman *.1
}