commit:     ae84430430dfbc777f52698a109b16cd6902cae2
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 11 17:05:09 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Mar 11 17:05:59 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae844304

net-misc/netpipes: minor style changes, change sed delimiter

* Minor style changes
* Adjust sed delimiter to ; to avoid colon-in-CFLAGS issues

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-misc/netpipes/netpipes-4.2-r2.ebuild | 17 +++++++++--------
 1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/net-misc/netpipes/netpipes-4.2-r2.ebuild 
b/net-misc/netpipes/netpipes-4.2-r2.ebuild
index d49bf549fc1..ed14038c1dc 100644
--- a/net-misc/netpipes/netpipes-4.2-r2.ebuild
+++ b/net-misc/netpipes/netpipes-4.2-r2.ebuild
@@ -8,28 +8,29 @@ inherit toolchain-funcs
 DESCRIPTION="Tools to manipulate BSD TCP/IP stream sockets"
 HOMEPAGE="http://web.purplefrog.com/~thoth/netpipes/netpipes.html";
 SRC_URI="http://web.purplefrog.com/~thoth/netpipes/ftp/${P}-export.tar.gz";
-LICENSE="GPL-2+"
+S="${WORKDIR}/${P}-export"
 
+LICENSE="GPL-2+"
 SLOT="0"
 KEYWORDS="amd64 x86"
 
-S="${WORKDIR}/${P}-export"
-
-PATCHES=( "${FILESDIR}/${P}"-string.patch )
+PATCHES=(
+       "${FILESDIR}/${P}"-string.patch
+)
 
 src_prepare() {
        default
        sed -i \
-               -e 's:CFLAGS =:CFLAGS +=:' \
-               -e '/ -o /s:${CFLAGS}:$(CFLAGS) $(LDFLAGS):g' \
+               -e 's;CFLAGS =;CFLAGS +=;' \
+               -e '/ -o /s;${CFLAGS};$(CFLAGS) $(LDFLAGS);g' \
                Makefile || die
 }
 
 src_compile() {
-       emake CC=$(tc-getCC)
+       emake CC="$(tc-getCC)"
 }
 
 src_install() {
        dodir /usr/share/man
-       emake INSTROOT="${D}"/usr INSTMAN="${D}"/usr/share/man install
+       emake INSTROOT="${ED}"/usr INSTMAN="${ED}"/usr/share/man install
 }

Reply via email to