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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D56AB138350 for ; Sun, 22 Mar 2020 12:24:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1F5E8E09E6; Sun, 22 Mar 2020 12:24:31 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0156DE09E6 for ; Sun, 22 Mar 2020 12:24:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DE15B34F5C8 for ; Sun, 22 Mar 2020 12:24:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DF632AF for ; Sun, 22 Mar 2020 12:24:27 +0000 (UTC) From: "Amy Liffey" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Amy Liffey" Message-ID: <1584879856.1d2ca24f2e6b5fa3844e4aac809026f5966ca4fa.amynka@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/nedit/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/nedit/nedit-5.7.ebuild X-VCS-Directories: app-editors/nedit/ X-VCS-Committer: amynka X-VCS-Committer-Name: Amy Liffey X-VCS-Revision: 1d2ca24f2e6b5fa3844e4aac809026f5966ca4fa X-VCS-Branch: master Date: Sun, 22 Mar 2020 12:24:27 +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: d1d2ad3c-7e09-4b58-861e-c664b39e4fce X-Archives-Hash: bf594596e7211c91d5fbab16a24c0969 commit: 1d2ca24f2e6b5fa3844e4aac809026f5966ca4fa Author: Amy Liffey gentoo org> AuthorDate: Sun Mar 22 11:58:39 2020 +0000 Commit: Amy Liffey gentoo org> CommitDate: Sun Mar 22 12:24:16 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d2ca24f app-editors/nedit: fix sed to use pipes Closes: https://bugs.gentoo.org/711408 Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Amy Liffey gentoo.org> app-editors/nedit/nedit-5.7.ebuild | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/app-editors/nedit/nedit-5.7.ebuild b/app-editors/nedit/nedit-5.7.ebuild index 69f74a48710..25f9ab97f1d 100644 --- a/app-editors/nedit/nedit-5.7.ebuild +++ b/app-editors/nedit/nedit-5.7.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -35,16 +35,16 @@ src_prepare() { #respecting LDFLAGS, bug #208189 default sed \ - -e "s:bin/:${EPREFIX}/bin/:g" \ + -e "s|bin/|${EPREFIX}/bin/|g" \ -i Makefile source/preferences.c source/help_data.h source/nedit.c Xlt/Makefile || die sed \ - -e "s:nc:neditc:g" -i doc/nc.pod || die - sed -i -e "s:CFLAGS=-O:CFLAGS=${CFLAGS}:" -e "s:check_tif_rule::" \ + -e "s|nc|neditc|g" -i doc/nc.pod || die + sed -i -e "s|CFLAGS=-O|CFLAGS=${CFLAGS}|" -e "s|check_tif_rule||" \ makefiles/Makefile.linux || die - sed -i -e "s:CFLAGS=-O:CFLAGS=${CFLAGS}:" \ - -e "s:MOTIFDIR=/usr/local:MOTIFDIR=${EPREFIX}/usr:" \ - -e "s:-lX11:-lX11 -lXmu -liconv:" \ - -e "s:check_tif_rule::" \ + sed -i -e "s|CFLAGS=-O|CFLAGS=${CFLAGS}|" \ + -e "s|MOTIFDIR=/usr/local|MOTIFDIR=${EPREFIX}/usr|" \ + -e "s|-lX11|-lX11 -lXmu -liconv|" \ + -e "s|check_tif_rule||" \ makefiles/Makefile.macosx || die }