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 8FD6313832E for ; Mon, 8 Aug 2016 17:46:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1C9EC21C039; Mon, 8 Aug 2016 17:46:50 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A9EDB21C039 for ; Mon, 8 Aug 2016 17:46:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C30FE340955 for ; Mon, 8 Aug 2016 17:46:47 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4A2828DE for ; Mon, 8 Aug 2016 17:46:45 +0000 (UTC) From: "Austin English" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Austin English" Message-ID: <1470678334.851a3392bfa7c0d49dfab0263cbd38380de05f23.wizardedit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-mud/tf/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-mud/tf/tf-50_beta8-r2.ebuild X-VCS-Directories: games-mud/tf/ X-VCS-Committer: wizardedit X-VCS-Committer-Name: Austin English X-VCS-Revision: 851a3392bfa7c0d49dfab0263cbd38380de05f23 X-VCS-Branch: master Date: Mon, 8 Aug 2016 17:46:45 +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: 848fb9ad-5256-4e76-ae21-89747659790a X-Archives-Hash: a038f312282e72d880e9104faf1ba795 commit: 851a3392bfa7c0d49dfab0263cbd38380de05f23 Author: Austin English gentoo org> AuthorDate: Mon Aug 8 17:45:34 2016 +0000 Commit: Austin English gentoo org> CommitDate: Mon Aug 8 17:45:34 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=851a3392 games-mud/tf: fix installation path An unremoved $GAMES_DATADIR entry caused some files to be installed to / by mistake Gentoo-Bug: https://bugs.gentoo.org/590662 Package-Manager: portage-2.3.0 games-mud/tf/tf-50_beta8-r2.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/games-mud/tf/tf-50_beta8-r2.ebuild b/games-mud/tf/tf-50_beta8-r2.ebuild index 7b3d1c9..3cc5dc9 100644 --- a/games-mud/tf/tf-50_beta8-r2.ebuild +++ b/games-mud/tf/tf-50_beta8-r2.ebuild @@ -48,16 +48,16 @@ src_install() { newman src/tf.1.nroffman tf.1 dodoc CHANGES CREDITS README - insinto "${GAMES_DATADIR}"/${PN}-lib + insinto /usr/share/${PN}-lib # the application looks for this file here if /changes is called. # see comments on bug #23274 doins CHANGES insopts -m0755 doins tf-lib/* if use doc ; then - cd ../${MY_P}-help + cd ../${MY_P}-help || die dodoc -r *.html commands topics - cd ../${MY_P} + cd ../${MY_P} || die fi }