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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DE72F158094 for ; Thu, 18 Aug 2022 07:06:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 78110E087E; Thu, 18 Aug 2022 07:06:30 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5BBAEE087E for ; Thu, 18 Aug 2022 07:06:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9F533341697 for ; Thu, 18 Aug 2022 07:06:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3338058A for ; Thu, 18 Aug 2022 07:06:27 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1660806378.c2b7dd2966a0ffa122db92865ed4b9962f4627a7.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/bitlbee/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-im/bitlbee/bitlbee-3.6-r1.ebuild net-im/bitlbee/bitlbee-3.6-r2.ebuild net-im/bitlbee/bitlbee-9999.ebuild X-VCS-Directories: net-im/bitlbee/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: c2b7dd2966a0ffa122db92865ed4b9962f4627a7 X-VCS-Branch: master Date: Thu, 18 Aug 2022 07:06:27 +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: e38e2ad5-f00f-4fde-bcd7-aecc7e3d8784 X-Archives-Hash: 56385834939f7d94258b1cd983658ea0 commit: c2b7dd2966a0ffa122db92865ed4b9962f4627a7 Author: Petr Vaněk atlas cz> AuthorDate: Thu Jul 28 09:47:59 2022 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Thu Aug 18 07:06:18 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2b7dd29 net-im/bitlbee: set correct --libdir The libdir is currently not used to install any files, however, it is used in generated bitlbee.pc, where it should point to correct directory. Closes: https://bugs.gentoo.org/861383 Fixes: b88db9002a8e ("net-im/bitlbee: Install pkgconfig to /usr/$(get_libdir)/pkgconfig") Signed-off-by: Petr Vaněk atlas.cz> Signed-off-by: Joonas Niilola gentoo.org> net-im/bitlbee/{bitlbee-3.6-r1.ebuild => bitlbee-3.6-r2.ebuild} | 1 + net-im/bitlbee/bitlbee-9999.ebuild | 1 + 2 files changed, 2 insertions(+) diff --git a/net-im/bitlbee/bitlbee-3.6-r1.ebuild b/net-im/bitlbee/bitlbee-3.6-r2.ebuild similarity index 99% rename from net-im/bitlbee/bitlbee-3.6-r1.ebuild rename to net-im/bitlbee/bitlbee-3.6-r2.ebuild index 73fbb3f13b6c..127f0a88198d 100644 --- a/net-im/bitlbee/bitlbee-3.6-r1.ebuild +++ b/net-im/bitlbee/bitlbee-3.6-r2.ebuild @@ -115,6 +115,7 @@ src_configure() { --prefix=/usr \ --datadir=/usr/share/bitlbee \ --etcdir=/etc/bitlbee \ + --libdir=/usr/$(get_libdir) \ --plugindir=/usr/$(get_libdir)/bitlbee \ --pcdir=/usr/$(get_libdir)/pkgconfig \ --systemdsystemunitdir=$(systemd_get_systemunitdir) \ diff --git a/net-im/bitlbee/bitlbee-9999.ebuild b/net-im/bitlbee/bitlbee-9999.ebuild index fc8360cb0399..d811ebc6f0c2 100644 --- a/net-im/bitlbee/bitlbee-9999.ebuild +++ b/net-im/bitlbee/bitlbee-9999.ebuild @@ -111,6 +111,7 @@ src_configure() { --prefix=/usr \ --datadir=/usr/share/bitlbee \ --etcdir=/etc/bitlbee \ + --libdir=/usr/$(get_libdir) \ --plugindir=/usr/$(get_libdir)/bitlbee \ --pcdir=/usr/$(get_libdir)/pkgconfig \ --systemdsystemunitdir=$(systemd_get_systemunitdir) \