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 00ADF15ACFB for ; Sat, 22 Apr 2023 23:53:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 44A90E0A02; Sat, 22 Apr 2023 23:53:57 +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 31408E0A02 for ; Sat, 22 Apr 2023 23:53:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 754323412C9 for ; Sat, 22 Apr 2023 23:53:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D1BFEA50 for ; Sat, 22 Apr 2023 23:53:53 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1682207609.f348d2018cfb6f5da02f90bae94aba694b23cd23.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/spectrum2/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-im/spectrum2/spectrum2-2.2.0-r1.ebuild net-im/spectrum2/spectrum2-2.2.0.ebuild X-VCS-Directories: net-im/spectrum2/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: f348d2018cfb6f5da02f90bae94aba694b23cd23 X-VCS-Branch: master Date: Sat, 22 Apr 2023 23:53:53 +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: 700ddaae-c7b3-40ca-803c-ee1dde713792 X-Archives-Hash: cbbb6619cf9371b0dfde772f32ac62a2 commit: f348d2018cfb6f5da02f90bae94aba694b23cd23 Author: Conrad Kostecki gentoo org> AuthorDate: Sat Apr 22 23:43:37 2023 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sat Apr 22 23:53:29 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f348d201 net-im/spectrum2: fix paths Signed-off-by: Conrad Kostecki gentoo.org> net-im/spectrum2/{spectrum2-2.2.0.ebuild => spectrum2-2.2.0-r1.ebuild} | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/net-im/spectrum2/spectrum2-2.2.0.ebuild b/net-im/spectrum2/spectrum2-2.2.0-r1.ebuild similarity index 96% rename from net-im/spectrum2/spectrum2-2.2.0.ebuild rename to net-im/spectrum2/spectrum2-2.2.0-r1.ebuild index a06b9471c79a..90630c5549c1 100644 --- a/net-im/spectrum2/spectrum2-2.2.0.ebuild +++ b/net-im/spectrum2/spectrum2-2.2.0-r1.ebuild @@ -69,6 +69,8 @@ src_prepare() { src_configure() { local mycmakeargs=( + -DCMAKE_INSTALL_LOCALSTATEDIR="${EPREFIX}/var" + -DCMAKE_INSTALL_SYSCONFDIR="${EPREFIX}/etc" -DENABLE_DOCS="$(usex doc)" -DENABLE_FROTZ="$(usex frotz)" -DENABLE_IRC="$(usex irc)" @@ -81,7 +83,6 @@ src_configure() { -DENABLE_TESTS="$(usex test)" -DENABLE_TWITTER="$(usex twitter)" -DENABLE_XMPP="$(usex xmpp)" - -DLIB_INSTALL_DIR="$(get_libdir)" ) cmake_src_configure