commit: 41a1bf2ca3c32fdc4f164b35327ff72aca9992a5
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 3 08:15:01 2020 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Wed Jun 3 09:10:28 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41a1bf2c
app-text/yodl: DEPEND => BDEPEND
- Do not strip yodlverbinsert
- Add build dependencies for USE=doc
- Reorganise src_compile()
Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org>
.../{yodl-4.02.02.ebuild => yodl-4.02.02-r1.ebuild} | 21 +++++++++++++++------
1 file changed, 15 insertions(+), 6 deletions(-)
diff --git a/app-text/yodl/yodl-4.02.02.ebuild
b/app-text/yodl/yodl-4.02.02-r1.ebuild
similarity index 80%
rename from app-text/yodl/yodl-4.02.02.ebuild
rename to app-text/yodl/yodl-4.02.02-r1.ebuild
index 25f75b90993..b54d4d14d58 100644
--- a/app-text/yodl/yodl-4.02.02.ebuild
+++ b/app-text/yodl/yodl-4.02.02-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -14,7 +14,13 @@ SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"
-DEPEND=">=dev-util/icmake-8.00.00"
+BDEPEND="
+ >=dev-util/icmake-8.00.00
+ doc? (
+ dev-texlive/texlive-latexextra
+ dev-texlive/texlive-plaingeneric
+ )
+"
S=${WORKDIR}/${P}/${PN}
@@ -42,6 +48,9 @@ src_prepare() {
-e "s/ranlib/$(tc-getRANLIB)/" \
-i icmake/stdcompile || die
+ sed -e '/strip/s|"-s"|""|g' \
+ -i icmake/program || die
+
# required for std::filesystem usage
append-cxxflags -std=c++17
@@ -49,10 +58,10 @@ src_prepare() {
}
src_compile() {
- ./build programs || die
- ./build macros || die
- ./build man || die
- use doc && { ./build manual || die ; }
+ local target
+ for target in programs macros man $(usex doc manual ''); do
+ ./build ${target} || die "${target} failed"
+ done
}
src_install() {