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 5707B1395E2 for ; Mon, 12 Dec 2016 06:58:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 859D2E0E9B; Mon, 12 Dec 2016 06:58:51 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 66BD5E0E9B for ; Mon, 12 Dec 2016 06:58:51 +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 64517340F1A for ; Mon, 12 Dec 2016 06:58:50 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6AD02C78 for ; Mon, 12 Dec 2016 06:58:48 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1481525535.7917658378068a59d9c1ed9abf1c1e4a87a0a77f.blueness@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/eudev/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/eudev/eudev-9999.ebuild X-VCS-Directories: sys-fs/eudev/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 7917658378068a59d9c1ed9abf1c1e4a87a0a77f X-VCS-Branch: master Date: Mon, 12 Dec 2016 06:58:48 +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: b0c0b62a-a2a7-4076-9e0e-51c5354bfe0c X-Archives-Hash: bb7ba6570f86122226128313da06965a commit: 7917658378068a59d9c1ed9abf1c1e4a87a0a77f Author: Anthony G. Basile gentoo org> AuthorDate: Mon Dec 12 06:52:15 2016 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Mon Dec 12 06:52:15 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79176583 sys-fs/eudev: extend prefix support to 9999 Package-Manager: portage-2.3.0 sys-fs/eudev/eudev-9999.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sys-fs/eudev/eudev-9999.ebuild b/sys-fs/eudev/eudev-9999.ebuild index e70d954..7e2730d 100644 --- a/sys-fs/eudev/eudev-9999.ebuild +++ b/sys-fs/eudev/eudev-9999.ebuild @@ -108,19 +108,19 @@ multilib_src_configure() { DBUS_LIBS=' ' --with-rootprefix= --with-rootrundir=/run - --libdir=/usr/$(get_libdir) - --with-rootlibexecdir=/lib/udev + --libdir="${EPREFIX}"/usr/$(get_libdir) + --with-rootlibexecdir="${EPREFIX}"/lib/udev --enable-split-usr --enable-manpages --disable-hwdb - --exec-prefix=/ + --exec-prefix="${EPREFIX}" ) # Only build libudev for non-native_abi, and only install it to libdir, # that means all options only apply to native_abi if multilib_is_native_abi; then econf_args+=( - --with-rootlibdir=/$(get_libdir) + --with-rootlibdir="${EPREFIX}"/$(get_libdir) $(use_enable introspection) $(use_enable kmod) $(use_enable static-libs static)