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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0E66D15800A for ; Tue, 19 Nov 2024 08:59:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 04589E0946; Tue, 19 Nov 2024 08:59:51 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DB794E0946 for ; Tue, 19 Nov 2024 08:59:50 +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 D9EDC33BE9F for ; Tue, 19 Nov 2024 08:59:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 30E141DB9 for ; Tue, 19 Nov 2024 08:59:48 +0000 (UTC) From: "Julien Roy" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Julien Roy" Message-ID: <1731981074.309b82a6d164d197d985fcbbcc49ca1495609b5c.julien@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: app-admin/boinctui/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-admin/boinctui/boinctui-2.7.1-r1.ebuild X-VCS-Directories: app-admin/boinctui/ X-VCS-Committer: julien X-VCS-Committer-Name: Julien Roy X-VCS-Revision: 309b82a6d164d197d985fcbbcc49ca1495609b5c X-VCS-Branch: master Date: Tue, 19 Nov 2024 08:59:48 +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: 55cef646-a79c-4e8d-84bd-57917ef7ed8d X-Archives-Hash: e5690cd9947ad9e2962a3dbabd48c4f9 commit: 309b82a6d164d197d985fcbbcc49ca1495609b5c Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Tue Nov 19 01:51:14 2024 +0000 Commit: Julien Roy jroy ca> CommitDate: Tue Nov 19 01:51:14 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=309b82a6 app-admin/boinctui: fix USE=gnutls being ignored Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> app-admin/boinctui/boinctui-2.7.1-r1.ebuild | 46 +++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/app-admin/boinctui/boinctui-2.7.1-r1.ebuild b/app-admin/boinctui/boinctui-2.7.1-r1.ebuild new file mode 100644 index 000000000..6eb820b8a --- /dev/null +++ b/app-admin/boinctui/boinctui-2.7.1-r1.ebuild @@ -0,0 +1,46 @@ +# Copyright 2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools flag-o-matic + +DESCRIPTION="Fullscreen text mode manager for the BOINC client" +HOMEPAGE="https://github.com/suleman1971/boinctui" +SRC_URI="mirror://debian/pool/main/${PN:0:1}/${PN}/${PN}_${PV}.orig.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64" +IUSE="debug gnutls" + +DEPEND=" + dev-libs/expat + sys-libs/ncurses:= + gnutls? ( net-libs/gnutls:=[openssl] ) + !gnutls? ( dev-libs/openssl:= ) +" +RDEPEND="${DEPEND}" + +PATCHES=( "${FILESDIR}"/${PN}-2.7.1-tinfo.patch ) + +src_prepare() { + default + eautoreconf +} + +src_configure() { + local myeconfargs=( + --with-boinc-dir="${EPREFIX}/var/lib/boinc" + + # $(use_with ...) is broken here + $(usex !gnutls "--without-gnutls" "") + ) + econf "${myeconfargs[@]}" + + use debug && append-cppflags -DDEBUG +} + +src_install() { + emake DESTDIR="${D}" DOCDIR="${EPREFIX}/usr/share/doc/${PF}" install +}