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 5F69B158015 for ; Fri, 29 Dec 2023 10:42:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 99FD82BC020; Fri, 29 Dec 2023 10:42:03 +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 70CBB2BC01E for ; Fri, 29 Dec 2023 10:42:03 +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 63EF334069F for ; Fri, 29 Dec 2023 10:42:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9A02FEE8 for ; Fri, 29 Dec 2023 10:42:00 +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: <1703846510.b9b9bbe0f861fd54e2cd4ec838c3dced0e94ac77.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-print/cups-pdf/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-print/cups-pdf/cups-pdf-3.0.1-r2.ebuild net-print/cups-pdf/cups-pdf-3.0.1-r3.ebuild X-VCS-Directories: net-print/cups-pdf/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: b9b9bbe0f861fd54e2cd4ec838c3dced0e94ac77 X-VCS-Branch: master Date: Fri, 29 Dec 2023 10:42:00 +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: c2e74dd2-9fa6-4531-8ef2-cf4ce4a3b861 X-Archives-Hash: 34751b191220c871e3502704f776e158 commit: b9b9bbe0f861fd54e2cd4ec838c3dced0e94ac77 Author: David Seifert gentoo org> AuthorDate: Fri Dec 29 10:41:50 2023 +0000 Commit: David Seifert gentoo org> CommitDate: Fri Dec 29 10:41:50 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9b9bbe0 net-print/cups-pdf: update EAPI 7 -> 8 Signed-off-by: David Seifert gentoo.org> .../{cups-pdf-3.0.1-r2.ebuild => cups-pdf-3.0.1-r3.ebuild} | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/net-print/cups-pdf/cups-pdf-3.0.1-r2.ebuild b/net-print/cups-pdf/cups-pdf-3.0.1-r3.ebuild similarity index 84% rename from net-print/cups-pdf/cups-pdf-3.0.1-r2.ebuild rename to net-print/cups-pdf/cups-pdf-3.0.1-r3.ebuild index 0a7504e127f7..ed52b55cd752 100644 --- a/net-print/cups-pdf/cups-pdf-3.0.1-r2.ebuild +++ b/net-print/cups-pdf/cups-pdf-3.0.1-r3.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="7" +EAPI=8 inherit toolchain-funcs @@ -16,16 +16,17 @@ KEYWORDS="amd64 ~arm ~arm64 ppc ~ppc64 x86" IUSE="+ppds" DEPEND="net-print/cups" - RDEPEND="${DEPEND} >=app-text/ghostscript-gpl-9.54" PATCHES=( "${FILESDIR}"/${PN}-3.0.1-ghostscript-gpl-9.54-compat.patch ) +src_configure() { + tc-export CC +} + src_compile() { - pushd src &>/dev/null || die - $(tc-getCC) ${LDFLAGS} ${CFLAGS} ${PN}.c -o ${PN} -lcups || die - popd &>/dev/null || die + LDLIBS="-lcups" emake -C src ${PN} } src_install() { @@ -43,5 +44,5 @@ src_install() { doins extra/CUPS-PDF_noopt.ppd fi - dodoc ChangeLog README + einstalldocs }