commit: 2fec2a9762b893d6e497445c4f79df26e438735e Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Wed May 19 03:17:56 2021 +0000 Commit: Sam James <sam <AT> gentoo <DOT> 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 <sam <AT> 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
