From ae84430430dfbc777f52698a109b16cd6902cae2 Mon Sep 17 00:00:00 2001 From: Sam James Date: Thu, 11 Mar 2021 17:05:09 +0000 Subject: 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 --- net-misc/netpipes/netpipes-4.2-r2.ebuild | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) (limited to 'net-misc/netpipes') diff --git a/net-misc/netpipes/netpipes-4.2-r2.ebuild b/net-misc/netpipes/netpipes-4.2-r2.ebuild index d49bf549fc19..ed14038c1dc8 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 } -- cgit v1.2.3-65-gdbad