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 A199B13835B for ; Wed, 19 May 2021 03:23:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 52AE0E0729; Wed, 19 May 2021 03:23:38 +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 B80B9E070D for ; Wed, 19 May 2021 03:23:37 +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 3B3E8340D90 for ; Wed, 19 May 2021 03:23:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9A09C5D2 for ; Wed, 19 May 2021 03:23:34 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1621394276.2fec2a9762b893d6e497445c4f79df26e438735e.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/cdk/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/cdk/cdk-5.0.20210324-r1.ebuild dev-libs/cdk/cdk-5.0.20210324.ebuild X-VCS-Directories: dev-libs/cdk/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 2fec2a9762b893d6e497445c4f79df26e438735e X-VCS-Branch: master Date: Wed, 19 May 2021 03:23:34 +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: d114a141-c729-4343-b567-a52357fbb168 X-Archives-Hash: a8e29a0cf275cc14df294c34370af88e commit: 2fec2a9762b893d6e497445c4f79df26e438735e Author: Sam James gentoo org> AuthorDate: Wed May 19 03:17:56 2021 +0000 Commit: Sam James gentoo org> CommitDate: Wed May 19 03:17:56 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2fec2a97 dev-libs/cdk: drop libtool In some cases, configure seems to be producing a Makefile with a broken install target (which lacks the needed libtool install finalisation). Let's just disable libtool for now, we don't need it. Closes: https://bugs.gentoo.org/790773 Signed-off-by: Sam James gentoo.org> .../cdk/{cdk-5.0.20210324.ebuild => cdk-5.0.20210324-r1.ebuild} | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/dev-libs/cdk/cdk-5.0.20210324.ebuild b/dev-libs/cdk/cdk-5.0.20210324-r1.ebuild similarity index 88% rename from dev-libs/cdk/cdk-5.0.20210324.ebuild rename to dev-libs/cdk/cdk-5.0.20210324-r1.ebuild index 30eddf517e2..6aee2fbce64 100644 --- a/dev-libs/cdk/cdk-5.0.20210324.ebuild +++ b/dev-libs/cdk/cdk-5.0.20210324-r1.ebuild @@ -17,8 +17,7 @@ IUSE="examples unicode" DEPEND=">=sys-libs/ncurses-5.2:0=[unicode?]" RDEPEND="${DEPEND}" -BDEPEND="sys-devel/libtool - virtual/pkgconfig" +BDEPEND="virtual/pkgconfig" PATCHES=( "${FILESDIR}"/${PN}-5.0.20120323-parallel-make.patch ) @@ -27,9 +26,10 @@ src_configure() { export ac_cv_prog_LIBTOOL=glibtool fi + # --with-libtool dropped for now because of broken Makefile + # bug #790773 econf \ --disable-rpath-hack \ - --with-libtool \ --with-shared \ --with-pkg-config \ --with-ncurses$(usex unicode "w" "") @@ -39,7 +39,8 @@ src_install() { # parallel make installs duplicate libs emake -j1 \ DESTDIR="${D}" \ - DOCUMENT_DIR="${ED}/usr/share/doc/${PF}" install + DOCUMENT_DIR="${ED}/usr/share/doc/${PF}" \ + install if use examples ; then local x