From: Andreas Sturmlechner Date: Sun, 14 Oct 2018 18:45:05 +0000 (+0200) Subject: sci-physics/hepmc: Add several missing || die X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=6aa7338ed80e5c917c230094dda7bab631b2778a;p=gentoo.git sci-physics/hepmc: Add several missing || die Signed-off-by: Andreas Sturmlechner Package-Manager: Portage-2.3.51, Repoman-2.3.11 --- diff --git a/sci-physics/hepmc/hepmc-2.06.09-r1.ebuild b/sci-physics/hepmc/hepmc-2.06.09-r1.ebuild index fd54fa2fd8ab..85f83c7019a4 100644 --- a/sci-physics/hepmc/hepmc-2.06.09-r1.ebuild +++ b/sci-physics/hepmc/hepmc-2.06.09-r1.ebuild @@ -33,7 +33,7 @@ DOCS=( ChangeLog AUTHORS ) src_prepare() { cmake-utils_src_prepare - sed -i -e '/add_subdirectory(doc)/d' CMakeLists.txt + sed -i -e '/add_subdirectory(doc)/d' CMakeLists.txt || die # CMake doc building broken # gentoo doc directory #sed -i \ @@ -56,8 +56,12 @@ src_prepare() { {src,fio}/CMakeLists.txt || die # remove targets if use flags not set - use examples || sed -i -e '/add_subdirectory(examples)/d' CMakeLists.txt - use test || sed -i -e '/add_subdirectory(test)/d' CMakeLists.txt + if ! use examples; then + sed -i -e '/add_subdirectory(examples)/d' CMakeLists.txt || die + fi + if ! use test; then + sed -i -e '/add_subdirectory(test)/d' CMakeLists.txt || die + fi if ! use static-libs; then sed -i \ -e '/(HepMC\(fio\|\)S/d' \