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 99E56139355 for ; Mon, 2 Aug 2021 20:21:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CB80AE0919; Mon, 2 Aug 2021 20:21:15 +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 AF06AE0919 for ; Mon, 2 Aug 2021 20:21:15 +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 7DA6C34324E for ; Mon, 2 Aug 2021 20:21:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 844B07A7 for ; Mon, 2 Aug 2021 20:21:12 +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: <1627935660.50eaa52a364a952e8bb59e293fb8e6ad91477149.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/ptexenc/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/ptexenc/ptexenc-1.3.9_p20210325.ebuild X-VCS-Directories: dev-libs/ptexenc/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 50eaa52a364a952e8bb59e293fb8e6ad91477149 X-VCS-Branch: master Date: Mon, 2 Aug 2021 20:21:12 +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: f36cbe89-be44-4688-ae16-6d79b65b5053 X-Archives-Hash: 4be782ee2957aa7b2bdfe4cfa75e64e2 commit: 50eaa52a364a952e8bb59e293fb8e6ad91477149 Author: David Seifert gentoo org> AuthorDate: Mon Aug 2 20:21:00 2021 +0000 Commit: David Seifert gentoo org> CommitDate: Mon Aug 2 20:21:00 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50eaa52a dev-libs/ptexenc: remove USE=static-libs Signed-off-by: David Seifert gentoo.org> dev-libs/ptexenc/ptexenc-1.3.9_p20210325.ebuild | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/dev-libs/ptexenc/ptexenc-1.3.9_p20210325.ebuild b/dev-libs/ptexenc/ptexenc-1.3.9_p20210325.ebuild index b14b9944d1e..4226eb4c86a 100644 --- a/dev-libs/ptexenc/ptexenc-1.3.9_p20210325.ebuild +++ b/dev-libs/ptexenc/ptexenc-1.3.9_p20210325.ebuild @@ -8,42 +8,41 @@ inherit libtool DESCRIPTION="Library for Japanese pTeX providing a better way of handling character encodings" HOMEPAGE="http://tutimura.ath.cx/ptexlive/?ptexenc" SRC_URI="https://dev.gentoo.org/~zlogene/distfiles/texlive/texlive-${PV#*_p}-source.tar.xz" +S="${WORKDIR}/texlive-${PV#*_p}-source/texk/${PN}" LICENSE="BSD" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~ppc-macos ~x64-macos" -IUSE="iconv static-libs" +IUSE="iconv" -DEPEND="iconv? ( virtual/libiconv ) - dev-libs/kpathsea" +DEPEND=" + dev-libs/kpathsea + iconv? ( virtual/libiconv )" RDEPEND="${DEPEND}" -S=${WORKDIR}/texlive-${PV#*_p}-source/texk/${PN} - src_prepare() { default # https://bugs.gentoo.org/show_bug.cgi?id=377141 - sed -i '/^LIBS/s:@LIBS@:@LIBS@ @KPATHSEA_LIBS@:' "${S}"/Makefile.in || die + sed -i '/^LIBS/s:@LIBS@:@LIBS@ @KPATHSEA_LIBS@:' Makefile.in || die - cd "${WORKDIR}/texlive-${PV#*_p}-source" + cd "${WORKDIR}/texlive-${PV#*_p}-source" || die S="${WORKDIR}/texlive-${PV#*_p}-source" elibtoolize #sane .so versionning on gfbsd } src_configure() { econf \ + --disable-static \ --with-system-kpathsea \ - $(use_enable static-libs static) \ $(use_enable iconv kanji-iconv) } src_install() { default - find "${D}" -name '*.la' -delete || die insinto /usr/include/ptexenc doins ptexenc/unicode-jp.h use iconv && doins ptexenc/kanjicnv.h - dodoc ChangeLog README + find "${ED}" -name '*.la' -delete || die }