From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 04E411384B4 for ; Wed, 18 Nov 2015 17:30:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 859B6E07E6; Wed, 18 Nov 2015 17:30:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 23774E07E6 for ; Wed, 18 Nov 2015 17:30:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 60449340686 for ; Wed, 18 Nov 2015 17:30:08 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 26CE41A8 for ; Wed, 18 Nov 2015 17:30:02 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1447867770.7076fa1abfb1ad28304e00d5166e00e998edc7c3.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/procps/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-process/procps/procps-3.3.11-r2.ebuild sys-process/procps/procps-3.3.11-r3.ebuild X-VCS-Directories: sys-process/procps/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 7076fa1abfb1ad28304e00d5166e00e998edc7c3 X-VCS-Branch: master Date: Wed, 18 Nov 2015 17:30:02 +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: 1797e1f5-f2c2-4648-9440-798fb4592eba X-Archives-Hash: eda6f81670c98850b9dcbfa3cbeeacc0 commit: 7076fa1abfb1ad28304e00d5166e00e998edc7c3 Author: Mike Gilbert gentoo org> AuthorDate: Wed Nov 11 20:38:10 2015 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Wed Nov 18 17:29:30 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7076fa1a sys-process/procps: Move non-essential binaries back to /usr/bin Per the base-system lead, this is where they belong. Bug: https://bugs.gentoo.org/565304 Package-Manager: portage-2.2.23_p26 .../procps/{procps-3.3.11-r2.ebuild => procps-3.3.11-r3.ebuild} | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sys-process/procps/procps-3.3.11-r2.ebuild b/sys-process/procps/procps-3.3.11-r3.ebuild similarity index 97% rename from sys-process/procps/procps-3.3.11-r2.ebuild rename to sys-process/procps/procps-3.3.11-r3.ebuild index fa9d6fc..5b6a3ac 100644 --- a/sys-process/procps/procps-3.3.11-r2.ebuild +++ b/sys-process/procps/procps-3.3.11-r3.ebuild @@ -43,8 +43,6 @@ src_prepare() { src_configure() { econf \ - --bindir="${EPREFIX}"/bin \ - --sbindir="${EPREFIX}"/sbin \ --docdir='$(datarootdir)'/doc/${PF} \ $(use_enable modern-top) \ $(use_with ncurses) \ @@ -63,6 +61,9 @@ src_install() { default #dodoc sysctl.conf + dodir /bin + mv "${ED}"/usr/bin/{ps,kill} "${ED}"/bin || die + gen_usr_ldscript -a procps prune_libtool_files }