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 40CAF138206 for ; Mon, 1 Aug 2016 05:50:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0D002E0B44; Mon, 1 Aug 2016 05:50:31 +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 9F8F8E0B44 for ; Mon, 1 Aug 2016 05:50:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 593D2340BB9 for ; Mon, 1 Aug 2016 05:50:29 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AD4507DA for ; Mon, 1 Aug 2016 05:50:25 +0000 (UTC) From: "Benda XU" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Benda XU" Message-ID: <1470030404.c42c9b0ad61f53caa4f13789fde90f3b7ee2bef2.heroxbd@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/eudev/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/eudev/eudev-3.2.ebuild X-VCS-Directories: sys-fs/eudev/ X-VCS-Committer: heroxbd X-VCS-Committer-Name: Benda XU X-VCS-Revision: c42c9b0ad61f53caa4f13789fde90f3b7ee2bef2 X-VCS-Branch: master Date: Mon, 1 Aug 2016 05:50:25 +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: e518e4b8-912e-48b1-9ec8-f9d8ddec4126 X-Archives-Hash: d07ef9e7a6a45d38b442e0ba16b25ccb commit: c42c9b0ad61f53caa4f13789fde90f3b7ee2bef2 Author: Benda Xu gentoo org> AuthorDate: Mon Aug 1 05:44:00 2016 +0000 Commit: Benda XU gentoo org> CommitDate: Mon Aug 1 05:46:44 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c42c9b0a sys-fs/eudev: Prefix support. Bug: 589796 sys-fs/eudev/eudev-3.2.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sys-fs/eudev/eudev-3.2.ebuild b/sys-fs/eudev/eudev-3.2.ebuild index e70d954..7e2730d 100644 --- a/sys-fs/eudev/eudev-3.2.ebuild +++ b/sys-fs/eudev/eudev-3.2.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)