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 B4004138334 for ; Sat, 17 Aug 2019 20:44:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 500EBE094A; Sat, 17 Aug 2019 20:44:02 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1C3DDE094B for ; Sat, 17 Aug 2019 20:44:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 19CEB349CE8 for ; Sat, 17 Aug 2019 20:44:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A088A765 for ; Sat, 17 Aug 2019 20:43:59 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1566074594.7d9504e58ffc04ce3d25892a39b2c414d31a0e3a.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/zfs/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/zfs/zfs-9999.ebuild X-VCS-Directories: sys-fs/zfs/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: 7d9504e58ffc04ce3d25892a39b2c414d31a0e3a X-VCS-Branch: master Date: Sat, 17 Aug 2019 20:43:59 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 51b5edd7-7f2f-4313-9a32-a5d18b9f1c7e X-Archives-Hash: 7da907ec0f8b3de4e9da07b4f6a231c9 commit: 7d9504e58ffc04ce3d25892a39b2c414d31a0e3a Author: Georgy Yakovlev gentoo org> AuthorDate: Sat Aug 17 20:28:59 2019 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Sat Aug 17 20:43:14 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d9504e5 sys-fs/zfs: update live ebuild, fix static-libs static-libs useflag was a no-op since migration to EAPI=7, fix it Bug: https://bugs.gentoo.org/692196 Package-Manager: Portage-2.3.71, Repoman-2.3.17 Signed-off-by: Georgy Yakovlev gentoo.org> sys-fs/zfs/zfs-9999.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sys-fs/zfs/zfs-9999.ebuild b/sys-fs/zfs/zfs-9999.ebuild index fdb0ed3deb3..33c2826938c 100644 --- a/sys-fs/zfs/zfs-9999.ebuild +++ b/sys-fs/zfs/zfs-9999.ebuild @@ -25,10 +25,11 @@ IUSE="custom-cflags debug kernel-builtin python +rootfs test-suite static-libs" COMMON_DEPEND=" ${PYTHON_DEPS} - net-libs/libtirpc + net-libs/libtirpc[static-libs?] sys-apps/util-linux[static-libs?] sys-libs/zlib[static-libs(+)?] virtual/awk + virtual/libudev[static-libs?] python? ( virtual/python-cffi[${PYTHON_USEDEP}] ) @@ -123,6 +124,7 @@ src_configure() { local myconf=( --bindir="${EPREFIX}/bin" + --enable-shared --enable-systemd --enable-sysvinit --localstatedir="${EPREFIX}/var" @@ -136,6 +138,7 @@ src_configure() { --with-systemdpresetdir="${EPREFIX}/lib/systemd/system-preset" $(use_enable debug) $(use_enable python pyzfs) + $(use_enable static-libs static) ) econf "${myconf[@]}"