app-benchmarks/pipebench: [QA] Respect LDFLAGS
authorDavid Seifert <soap@gentoo.org>
Thu, 28 Dec 2017 13:10:05 +0000 (14:10 +0100)
committerDavid Seifert <soap@gentoo.org>
Thu, 28 Dec 2017 15:06:13 +0000 (16:06 +0100)
Closes: https://bugs.gentoo.org/334909
Package-Manager: Portage-2.3.19, Repoman-2.3.6

app-benchmarks/pipebench/files/pipebench-0.40-fix-build-system.patch [new file with mode: 0644]
app-benchmarks/pipebench/pipebench-0.40-r2.ebuild

diff --git a/app-benchmarks/pipebench/files/pipebench-0.40-fix-build-system.patch b/app-benchmarks/pipebench/files/pipebench-0.40-fix-build-system.patch
new file mode 100644 (file)
index 0000000..2d79d80
--- /dev/null
@@ -0,0 +1,21 @@
+--- a/Makefile
++++ b/Makefile
+@@ -1,16 +1,11 @@
+ # $Id: Makefile,v 1.2 2002/12/15 19:58:36 marvin Exp $
+-CC=gcc
+-CFLAGS=-Wall -w -pedantic
+ all: pipebench
+ doc: pipebench.1
+ install: pipebench
+-      cp pipebench /usr/local/bin/
+-      cp pipebench.1 /usr/local/man/man1/
+-
+-pipebench: pipebench.c
+-      $(CC) $(CFLAGS) -o pipebench pipebench.c
++      mkdir -p $(DESTDIR)$(EPREFIX)/usr/bin && cp pipebench $(DESTDIR)$(EPREFIX)/usr/bin/
++      mkdir -p $(DESTDIR)$(EPREFIX)/usr/share/man/man1 && cp pipebench.1 $(DESTDIR)$(EPREFIX)/usr/share/man/man1/
+ pipebench.1: pipebench.yodl
+       yodl2man -o pipebench.1 pipebench.yodl
index 610bcc5df90d5362e1e5b9f46a284db85fe861a3..2542f0f9d36eb9d0f172456feeb976b10812eda0 100644 (file)
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-inherit toolchain-funcs
+inherit flag-o-matic toolchain-funcs
 
 DESCRIPTION="Measures the speed of stdin/stdout communication"
 HOMEPAGE="http://www.habets.pp.se/synscan/programs.php?prog=pipebench"
@@ -14,22 +14,9 @@ SLOT="0"
 KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~x86 ~arm-linux ~x86-linux"
 IUSE=""
 
-src_prepare() {
-       sed -i Makefile \
-               -e 's:CFLAGS=-Wall:CFLAGS+= -Wall:' \
-               -e 's:$(CFLAGS) -o:$(LDFLAGS) &:g' \
-               -e "s:/usr/local/bin/:${ED}/usr/bin:" \
-               -e "s:/usr/local/man/man1/:${ED}/usr/share/man/man1:" \
-               || die "sed Makefile"
-       default
-}
-
-src_compile() {
-       emake CC=$(tc-getCC)
-}
+PATCHES=( "${FILESDIR}"/${PN}-0.40-fix-build-system.patch )
 
-src_install() {
-       dodir /usr/{bin,share/man/man1}
-       emake install
-       dodoc README
+src_configure() {
+       append-cflags -Wall -w -pedantic
+       tc-export CC
 }