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 4FA60158089 for ; Wed, 4 Oct 2023 19:50:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 915F32BC025; Wed, 4 Oct 2023 19:50:41 +0000 (UTC) Received: from smtp.gentoo.org (dev.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7A7E72BC025 for ; Wed, 4 Oct 2023 19:50:41 +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 B4650335D17 for ; Wed, 4 Oct 2023 19:50:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2459F994 for ; Wed, 4 Oct 2023 19:50:39 +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: <1696448616.c1e192a3ea62cc038fcb15ef612f0c37660fd837.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-print/brlaser/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-print/brlaser/brlaser-6-r1.ebuild X-VCS-Directories: net-print/brlaser/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c1e192a3ea62cc038fcb15ef612f0c37660fd837 X-VCS-Branch: master Date: Wed, 4 Oct 2023 19:50:39 +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: 1e779715-c96f-40a7-922e-616b47bb5bab X-Archives-Hash: c0ed4a07f696e5eeadb42f4877213d28 commit: c1e192a3ea62cc038fcb15ef612f0c37660fd837 Author: Sam James gentoo org> AuthorDate: Wed Oct 4 19:43:36 2023 +0000 Commit: Sam James gentoo org> CommitDate: Wed Oct 4 19:43:36 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1e192a3 net-print/brlaser: don't redefine _FORTIFY_SOURCE Closes: https://bugs.gentoo.org/895810 Signed-off-by: Sam James gentoo.org> net-print/brlaser/brlaser-6-r1.ebuild | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/net-print/brlaser/brlaser-6-r1.ebuild b/net-print/brlaser/brlaser-6-r1.ebuild new file mode 100644 index 000000000000..9870f1912e92 --- /dev/null +++ b/net-print/brlaser/brlaser-6-r1.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="Brother laser printer driver" +HOMEPAGE="https://github.com/pdewacht/brlaser" +SRC_URI="https://github.com/pdewacht/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="net-print/cups" +RDEPEND=" + ${DEPEND} + app-text/ghostscript-gpl" + +src_prepare() { + # Don't clobber toolchain defaults + sed -i -e '/-D_FORTIFY_SOURCE=2/d' CMakeLists.txt || die + + cmake_src_prepare +}