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 D33CF15ACFB for ; Fri, 14 Apr 2023 01:06:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AC7A1E0839; Fri, 14 Apr 2023 01:06:11 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 852DBE0839 for ; Fri, 14 Apr 2023 01:06:11 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 78FA5340831 for ; Fri, 14 Apr 2023 01:06:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D200AA44 for ; Fri, 14 Apr 2023 01:06:08 +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: <1681434307.74506968d83ac1b83ba8f133a734c28a8aa85c78.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/codeblocks/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/codeblocks/codeblocks-9999.ebuild X-VCS-Directories: dev-util/codeblocks/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 74506968d83ac1b83ba8f133a734c28a8aa85c78 X-VCS-Branch: master Date: Fri, 14 Apr 2023 01:06:08 +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: 64bd469b-265f-4d8a-9089-1db71d825caf X-Archives-Hash: 9d04f68714f2bf5fbb07b024b77abb8d commit: 74506968d83ac1b83ba8f133a734c28a8aa85c78 Author: Sergey Torokhov yandex ru> AuthorDate: Sun Apr 2 19:35:38 2023 +0000 Commit: Sam James gentoo org> CommitDate: Fri Apr 14 01:05:07 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74506968 dev-util/codeblocks: 9999 update; switch to wxGTK:3.2-gtk3 Signed-off-by: Sergey Torokhov yandex.ru> Closes: https://github.com/gentoo/gentoo/pull/30449 Signed-off-by: Sam James gentoo.org> dev-util/codeblocks/codeblocks-9999.ebuild | 30 +++++++++++++++++++++--------- 1 file changed, 21 insertions(+), 9 deletions(-) diff --git a/dev-util/codeblocks/codeblocks-9999.ebuild b/dev-util/codeblocks/codeblocks-9999.ebuild index 6a574aa1d60e..9f4d81cecb69 100644 --- a/dev-util/codeblocks/codeblocks-9999.ebuild +++ b/dev-util/codeblocks/codeblocks-9999.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -WX_GTK_VER="3.0-gtk3" +WX_GTK_VER="3.2-gtk3" inherit autotools flag-o-matic subversion wxwidgets xdg @@ -22,16 +22,25 @@ IUSE="contrib debug" BDEPEND="virtual/pkgconfig" RDEPEND="app-arch/zip + dev-libs/glib:2 >=dev-libs/tinyxml-2.6.2-r3 >=dev-util/astyle-3.1-r2:0/3.1 + x11-libs/gtk+:3 x11-libs/wxGTK:${WX_GTK_VER}[X] contrib? ( app-admin/gamin - app-text/hunspell + app-arch/bzip2 + app-text/hunspell:= dev-libs/boost:= + dev-libs/libgamin + media-libs/fontconfig + sys-libs/zlib )" -DEPEND="${RDEPEND}" +DEPEND=" + ${RDEPEND} + x11-base/xorg-proto +" PATCHES=( "${FILESDIR}/${P}-nodebug.diff" ) @@ -51,12 +60,15 @@ src_configure() { setup-wxwidgets - econf \ - --disable-pch \ - --disable-static \ - $(use_with contrib boost-libdir "${ESYSROOT}/usr/$(get_libdir)") \ - $(use_enable debug) \ + local myeconfargs=( + --disable-pch + --disable-static + $(use_enable debug) + $(use_with contrib boost-libdir "${ESYSROOT}/usr/$(get_libdir)") $(use_with contrib contrib-plugins all) + ) + + econf "${myeconfargs[@]}" } src_install() {