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 162091384B4 for ; Mon, 2 Nov 2015 22:46:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B7DB421C05A; Mon, 2 Nov 2015 22:46:14 +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 57D1E21C05A for ; Mon, 2 Nov 2015 22:46:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1F9AA34016B for ; Mon, 2 Nov 2015 22:46:12 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 532381ED6 for ; Mon, 2 Nov 2015 22:46:09 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1446504363.46702435a3bb706b83b67df88afd8d79ecfc4542.floppym@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-r1.ebuild sys-process/procps/procps-3.3.11.ebuild X-VCS-Directories: sys-process/procps/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 46702435a3bb706b83b67df88afd8d79ecfc4542 X-VCS-Branch: master Date: Mon, 2 Nov 2015 22:46:09 +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: b46f5c8c-3973-4061-8227-79ddc6269bb7 X-Archives-Hash: 0c918757edee83ecf49c874c56bff2ae commit: 46702435a3bb706b83b67df88afd8d79ecfc4542 Author: Mike Gilbert gentoo org> AuthorDate: Mon Nov 2 22:45:33 2015 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Mon Nov 2 22:46:03 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46702435 sys-process/procps: Move binaries back to /usr/bin Upstream dropped the userbin_execdir variable, so we need to move things around manually. See upstream commit 430b559ba2826f80dffa840622ae0fc744000b13. Package-Manager: portage-2.2.23_p18 .../procps/{procps-3.3.11.ebuild => procps-3.3.11-r1.ebuild} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys-process/procps/procps-3.3.11.ebuild b/sys-process/procps/procps-3.3.11-r1.ebuild similarity index 94% rename from sys-process/procps/procps-3.3.11.ebuild rename to sys-process/procps/procps-3.3.11-r1.ebuild index c2031d4..d3c2a5d 100644 --- a/sys-process/procps/procps-3.3.11.ebuild +++ b/sys-process/procps/procps-3.3.11-r1.ebuild @@ -43,7 +43,6 @@ src_prepare() { src_configure() { econf \ - --exec-prefix="${EPREFIX}" \ --docdir='$(datarootdir)'/doc/${PF} \ $(use_enable modern-top) \ $(use_with ncurses) \ @@ -62,8 +61,9 @@ src_install() { default #dodoc sysctl.conf - # The configure script is completely whacked in the head - mv "${ED}"/lib* "${ED}"/usr/ || die + dodir /bin + mv "${ED}"/usr/bin/{kill,pidof,ps} "${ED}"/bin/ || die + gen_usr_ldscript -a procps prune_libtool_files }