From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 944C7138334 for ; Sun, 26 Aug 2018 18:24:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 832D2E0900; Sun, 26 Aug 2018 18:24:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4EF68E0900 for ; Sun, 26 Aug 2018 18:24:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 262B7335CCA for ; Sun, 26 Aug 2018 18:24:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4852F37C for ; Sun, 26 Aug 2018 18:24:13 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1535307829.3e34941e0fb1110f3aabefd994630b7702c35f2e.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/dcmtk/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/dcmtk/dcmtk-3.6.0.ebuild X-VCS-Directories: sci-libs/dcmtk/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 3e34941e0fb1110f3aabefd994630b7702c35f2e X-VCS-Branch: master Date: Sun, 26 Aug 2018 18:24:13 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 22f93ad1-bc54-4c42-8f2b-e0c251f5d3bc X-Archives-Hash: 541eb749ab13b94791306e5c2b3f6671 commit: 3e34941e0fb1110f3aabefd994630b7702c35f2e Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Aug 26 15:59:42 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Aug 26 18:23:49 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e34941e sci-libs/dcmtk: Put || die where || die belongs Package-Manager: Portage-2.3.48, Repoman-2.3.10 sci-libs/dcmtk/dcmtk-3.6.0.ebuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/sci-libs/dcmtk/dcmtk-3.6.0.ebuild b/sci-libs/dcmtk/dcmtk-3.6.0.ebuild index 414724b2e23..1a94d20b506 100644 --- a/sci-libs/dcmtk/dcmtk-3.6.0.ebuild +++ b/sci-libs/dcmtk/dcmtk-3.6.0.ebuild @@ -55,7 +55,7 @@ src_prepare() { # fix -D deprecation warnings sed -i -e "s|_BSD_SOURCE|_DEFAULT_SOURCE|g" \ "${S}"/config/configure.in \ - "${S}"/CMakeLists.txt + "${S}"/CMakeLists.txt || die } src_configure() { @@ -74,7 +74,7 @@ src_configure() { cmake-utils_src_configure if use doc; then - cd "${S}"/doxygen + cd "${S}"/doxygen || die econf fi } @@ -83,16 +83,16 @@ src_compile() { cmake-utils_src_compile if use doc; then - emake -C "${S}"/doxygen || die + emake -C "${S}"/doxygen fi } src_install() { cmake-utils_src_install - doman doxygen/manpages/man1/* || die + doman doxygen/manpages/man1/* if use doc; then - dohtml -r "${S}"/doxygen/htmldocs/* || die + dohtml -r "${S}"/doxygen/htmldocs/* fi }