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 B76601396D9 for ; Mon, 20 Nov 2017 18:47:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F2AB4E0F3B; Mon, 20 Nov 2017 18:47:41 +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 CC599E0F3B for ; Mon, 20 Nov 2017 18:47:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 C891C33FE7D for ; Mon, 20 Nov 2017 18:47:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3CCC89AFF for ; Mon, 20 Nov 2017 18:47:39 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1511203644.f320d9c3c25d62ba35e0bba81b6b97048af0a650.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/miscfiles/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/miscfiles/miscfiles-1.5-r2.ebuild X-VCS-Directories: sys-apps/miscfiles/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: f320d9c3c25d62ba35e0bba81b6b97048af0a650 X-VCS-Branch: master Date: Mon, 20 Nov 2017 18:47:39 +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: a7c60aa6-992a-46df-974b-482e1ad6d92e X-Archives-Hash: ff47e841b8aed79db40a66f401b17a95 commit: f320d9c3c25d62ba35e0bba81b6b97048af0a650 Author: Manuel Rüger gentoo org> AuthorDate: Mon Nov 20 18:47:24 2017 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Mon Nov 20 18:47:24 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f320d9c3 sys-apps/miscfiles: Add a few more die statements Package-Manager: Portage-2.3.14, Repoman-2.3.6 sys-apps/miscfiles/miscfiles-1.5-r2.ebuild | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/sys-apps/miscfiles/miscfiles-1.5-r2.ebuild b/sys-apps/miscfiles/miscfiles-1.5-r2.ebuild index ca1d83243fd..a20e20fe1a7 100644 --- a/sys-apps/miscfiles/miscfiles-1.5-r2.ebuild +++ b/sys-apps/miscfiles/miscfiles-1.5-r2.ebuild @@ -30,27 +30,27 @@ src_configure() { } src_install() { - emake install DESTDIR="${D}" || die + emake install DESTDIR="${D}" dodoc NEWS ORIGIN README dict-README # not sure if this is still needed ... dodir /usr/share/dict - cd "${ED%/}"/usr/share/misc + cd "${ED%/}"/usr/share/misc || die mv $(awk '$1=="dictfiles"{$1="";$2="";print}' "${S}"/Makefile) ../dict/ || die - cd ../dict + cd ../dict || die ln -s web2 words || die ln -s web2a extra.words || die if use minimal ; then - cd "${ED}"/usr/share/dict - rm -f words extra.words - gzip -9 * - ln -s web2.gz words - ln -s web2a.gz extra.words - ln -s connectives{.gz,} - ln -s propernames{.gz,} - cd .. - rm -r misc rfc + pushd "${ED}"/usr/share/dict || die + rm -f words extra.words || die + gzip -9 * || die + ln -s web2.gz words || die + ln -s web2a.gz extra.words || die + ln -s connectives{.gz,} || die + ln -s propernames{.gz,} || die + popd || die + rm -r misc rfc || die fi }