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 1BA1D138359 for ; Fri, 14 Aug 2020 12:27:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D7252E0841; Fri, 14 Aug 2020 12:27:27 +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 BD9F4E0841 for ; Fri, 14 Aug 2020 12:27:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 6560C34EE0F for ; Fri, 14 Aug 2020 12:27:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D2E1522B for ; Fri, 14 Aug 2020 12:27:24 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1597408023.9b4764edf92363879e74f1dc346fc68542db9546.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/sablotron/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/sablotron/sablotron-1.0.3-r2.ebuild X-VCS-Directories: app-text/sablotron/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 9b4764edf92363879e74f1dc346fc68542db9546 X-VCS-Branch: master Date: Fri, 14 Aug 2020 12:27:24 +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: bbf49b0e-0c9f-41c7-afe3-b8e42c3b5690 X-Archives-Hash: 3dd3ee9462d21ea55c818eb672820916 commit: 9b4764edf92363879e74f1dc346fc68542db9546 Author: David Seifert gentoo org> AuthorDate: Fri Aug 14 12:27:03 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Fri Aug 14 12:27:03 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b4764ed app-text/sablotron: [QA] Remove 'static-libs' from IUSE Closes: https://bugs.gentoo.org/726732 Package-Manager: Portage-3.0.2, Repoman-2.3.23 Signed-off-by: David Seifert gentoo.org> app-text/sablotron/sablotron-1.0.3-r2.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/app-text/sablotron/sablotron-1.0.3-r2.ebuild b/app-text/sablotron/sablotron-1.0.3-r2.ebuild index 3d8288a19d6..9910b99b55b 100644 --- a/app-text/sablotron/sablotron-1.0.3-r2.ebuild +++ b/app-text/sablotron/sablotron-1.0.3-r2.ebuild @@ -2,6 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 + inherit autotools MY_PN="Sablot" @@ -16,7 +17,7 @@ SRC_URI="mirror://sourceforge/sablotron/${MY_P}.tar.gz" LICENSE="MPL-1.1" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" -IUSE="perl static-libs" +IUSE="perl" RDEPEND=" >=dev-libs/expat-1.95.6-r1 @@ -38,14 +39,14 @@ PATCHES=( src_prepare() { default sed -i configure.in -e 's|AM_CONFIG_HEADER|AC_CONFIG_HEADERS|g' || die + mv configure.{in,ac} || die eautoreconf - elibtoolize } src_configure() { econf \ + --disable-static \ $(use_enable perl perlconnect) \ - $(use_enable static-libs static) \ --with-html-dir="${EPREFIX}"/usr/share/doc/${PF}/html }