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 3BC63138359 for ; Sat, 14 Nov 2020 20:22:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 79D44E0880; Sat, 14 Nov 2020 20:22:18 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 626D6E0880 for ; Sat, 14 Nov 2020 20:22:18 +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 5B37534116E for ; Sat, 14 Nov 2020 20:22:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3C0A7476 for ; Sat, 14 Nov 2020 20:22:10 +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: <1605385228.c22cce86fdb377818a8653d42c56e55fc0161faa.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/lineakd/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/lineakd/lineakd-0.9.0-r2.ebuild x11-misc/lineakd/lineakd-0.9.0-r3.ebuild X-VCS-Directories: x11-misc/lineakd/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: c22cce86fdb377818a8653d42c56e55fc0161faa X-VCS-Branch: master Date: Sat, 14 Nov 2020 20:22:10 +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: a055966c-82d7-4771-9644-d98932443c3e X-Archives-Hash: 51bb16033ae8aa2a2d7bd4496808fd5b commit: c22cce86fdb377818a8653d42c56e55fc0161faa Author: Jakov Smolic sartura hr> AuthorDate: Sat Nov 14 20:20:28 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Sat Nov 14 20:20:28 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c22cce86 x11-misc/lineakd: disable static libs Closes: https://bugs.gentoo.org/726150 Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Jakov Smolic sartura.hr> Signed-off-by: David Seifert gentoo.org> x11-misc/lineakd/lineakd-0.9.0-r2.ebuild | 11 +++++++---- x11-misc/lineakd/lineakd-0.9.0-r3.ebuild | 5 ++++- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/x11-misc/lineakd/lineakd-0.9.0-r2.ebuild b/x11-misc/lineakd/lineakd-0.9.0-r2.ebuild index a87eac2fc11..b1d571e4369 100644 --- a/x11-misc/lineakd/lineakd-0.9.0-r2.ebuild +++ b/x11-misc/lineakd/lineakd-0.9.0-r2.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=6 -inherit eutils ltprune multilib +inherit multilib MY_P=${P/.0/} @@ -36,7 +36,10 @@ PATCHES=( ) src_configure() { - econf $(use_enable debug) --with-x + econf \ + $(use_enable debug) \ + --with-x \ + --disable-static } src_install() { @@ -46,12 +49,12 @@ src_install() { emake -j1 DESTDIR="${D}" install - prune_libtool_files - dodoc AUTHORS README TODO keepdir /usr/$(get_libdir)/lineakd/plugins insinto /etc/lineak doins lineakd.conf.example lineakd.conf.kde.example + + find "${ED}" -name '*.la' -delete || die } diff --git a/x11-misc/lineakd/lineakd-0.9.0-r3.ebuild b/x11-misc/lineakd/lineakd-0.9.0-r3.ebuild index 4848da2c45c..21a90c825f7 100644 --- a/x11-misc/lineakd/lineakd-0.9.0-r3.ebuild +++ b/x11-misc/lineakd/lineakd-0.9.0-r3.ebuild @@ -36,7 +36,10 @@ PATCHES=( ) src_configure() { - econf $(use_enable debug) --with-x + econf \ + $(use_enable debug) \ + --with-x \ + --disable-static } src_install() {