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 91C4A138239 for ; Sat, 9 Jan 2021 03:59:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 949BEE0844; Sat, 9 Jan 2021 03:59:31 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 260E4E0844 for ; Sat, 9 Jan 2021 03:59:30 +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 79414340D49 for ; Sat, 9 Jan 2021 03:59:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D121647 for ; Sat, 9 Jan 2021 03:59:27 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1610164758.9632a58f3b2dc17aaad34657ffcdc62e34f7f6f8.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/9libs/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/9libs/9libs-1.0-r4.ebuild X-VCS-Directories: dev-libs/9libs/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 9632a58f3b2dc17aaad34657ffcdc62e34f7f6f8 X-VCS-Branch: master Date: Sat, 9 Jan 2021 03:59:27 +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: fe0d2df7-2027-4352-a6bc-a23abc422acd X-Archives-Hash: 387f399ea633a75e71cdd704f1b1c753 commit: 9632a58f3b2dc17aaad34657ffcdc62e34f7f6f8 Author: Matt Turner gentoo org> AuthorDate: Sat Jan 9 03:42:30 2021 +0000 Commit: Matt Turner gentoo org> CommitDate: Sat Jan 9 03:59:18 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9632a58f dev-libs/9libs: Drop IUSE=static-libs Signed-off-by: Matt Turner gentoo.org> dev-libs/9libs/9libs-1.0-r4.ebuild | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/dev-libs/9libs/9libs-1.0-r4.ebuild b/dev-libs/9libs/9libs-1.0-r4.ebuild index cc510097ffa..b8a794c0c29 100644 --- a/dev-libs/9libs/9libs-1.0-r4.ebuild +++ b/dev-libs/9libs/9libs-1.0-r4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -11,11 +11,10 @@ SRC_URI="https://www.netlib.org/research/9libs/${P}.tar.bz2" LICENSE="PLAN9" SLOT="0" KEYWORDS="amd64 x86" -IUSE="static-libs" DEPEND=" - >=x11-libs/libX11-1.0.0[static-libs?] - >=x11-libs/libXt-1.0.0[static-libs?] + >=x11-libs/libX11-1.0.0 + >=x11-libs/libXt-1.0.0 " RDEPEND=" ${DEPEND} @@ -36,8 +35,8 @@ src_configure() { tc-export CC econf \ - $(use_enable static-libs static) \ --enable-shared \ + --disable-static \ --includedir=/usr/include/9libs \ --with-x } @@ -51,7 +50,5 @@ src_install() { mv "${D}"/usr/share/man/man3/${f}.{3,3g} || die done - if ! use static-libs; then - find "${ED}" -name '*.la' -delete || die - fi + find "${ED}" -name '*.la' -delete || die }