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 EE296158021 for ; Mon, 26 Dec 2022 15:49:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 279A9E095D; Mon, 26 Dec 2022 15:49:26 +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 A06CDE095D for ; Mon, 26 Dec 2022 15:49:25 +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 ABE953411A6 for ; Mon, 26 Dec 2022 15:49:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0BB377F2 for ; Mon, 26 Dec 2022 15:49:23 +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: <1672069720.ea510208f6da75d9e87b6f7ac7305645ac04dbb1.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-calculators/tilp2/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-calculators/tilp2/tilp2-1.18-r1.ebuild sci-calculators/tilp2/tilp2-1.18.ebuild X-VCS-Directories: sci-calculators/tilp2/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: ea510208f6da75d9e87b6f7ac7305645ac04dbb1 X-VCS-Branch: master Date: Mon, 26 Dec 2022 15:49:23 +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: 8349f831-00b9-4a3a-88d3-227e77d64385 X-Archives-Hash: a33d06ce8cc656cb33b91b907715738c commit: ea510208f6da75d9e87b6f7ac7305645ac04dbb1 Author: David Seifert gentoo org> AuthorDate: Mon Dec 26 15:48:40 2022 +0000 Commit: David Seifert gentoo org> CommitDate: Mon Dec 26 15:48:40 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea510208 sci-calculators/tilp2: update EAPI 6 -> 8 Signed-off-by: David Seifert gentoo.org> .../{tilp2-1.18.ebuild => tilp2-1.18-r1.ebuild} | 26 ++++++++++------------ 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/sci-calculators/tilp2/tilp2-1.18.ebuild b/sci-calculators/tilp2/tilp2-1.18-r1.ebuild similarity index 76% rename from sci-calculators/tilp2/tilp2-1.18.ebuild rename to sci-calculators/tilp2/tilp2-1.18-r1.ebuild index 5cad6f355541..ff566c357e29 100644 --- a/sci-calculators/tilp2/tilp2-1.18.ebuild +++ b/sci-calculators/tilp2/tilp2-1.18-r1.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 inherit autotools xdg @@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/tilp/tilp2-linux/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux" -IUSE="nls static-libs" +IUSE="nls" RDEPEND=" dev-libs/glib:2 @@ -22,32 +22,30 @@ RDEPEND=" >=sci-libs/libtifiles2-1.1.7 >=sci-libs/libticonv-1.1.5 x11-libs/gtk+:2 - nls? ( virtual/libintl ) -" -DEPEND="${RDEPEND} + nls? ( virtual/libintl )" +DEPEND="${RDEPEND}" +BDEPEND=" virtual/pkgconfig nls? ( sys-devel/gettext )" -PATCHES=( - "${FILESDIR}"/${PN}-1.18-nonbash.patch -) +PATCHES=( "${FILESDIR}"/${PN}-1.18-nonbash.patch ) src_prepare() { default # The ac macro AC_PATH_KDE was provided by "acinclude.m4" in 1.17. # This file is missing in the current version which will cause an autoconf error. # But since we don't build with kde support, we may safely remove all its reverse dependencies. - sed -i -e '/AC_PATH_KDE/d' configure.ac + sed -i -e '/AC_PATH_KDE/d' configure.ac || die sed -i \ -e 's/@[^@]*\(KDE\|QT\|KIO\)[^@]*@//g' \ -e 's/@X_LDFLAGS@//g' \ - src/Makefile.am + src/Makefile.am || die eautoreconf } src_configure() { # kde seems to be kde3 only - econf --without-kde \ - $(use_enable nls) \ - $(use_enable static-libs static) + econf \ + --without-kde \ + $(use_enable nls) }