dev-util/btyacc: EAPI7 revbump, improve ebuild

Closes: https://bugs.gentoo.org/664546
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/9692
Signed-off-by: Aaron Bauman <bman@gentoo.org>
This commit is contained in:
Michael Mair-Keimberger
2018-08-25 10:26:06 +02:00
committed by Aaron Bauman
parent 7378deb16d
commit cb4cd7feff
3 changed files with 47 additions and 4 deletions

View File

@@ -0,0 +1,43 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit toolchain-funcs
MY_P="${PN}-3-0"
DESCRIPTION="Backtracking YACC - modified from Berkeley YACC"
HOMEPAGE="http://www.siber.com/btyacc"
SRC_URI="http://www.siber.com/btyacc/${MY_P}.tar.gz"
LICENSE="freedist"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86 ~amd64-fbsd ~x86-linux ~ppc-macos ~x86-macos"
S="${WORKDIR}"
PATCHES=(
"${FILESDIR}/${P}-includes.patch"
"${FILESDIR}/${P}-makefile.patch"
)
src_prepare() {
cp -av Makefile{,.orig} || die
default
# fix memory issue/glibc corruption
sed -i -e "s|len + 13|len + 14|" main.c || die "Could not fix main.c"
# Darwin doesn't do static binaries
if [[ ${CHOST} == *-darwin* ]]; then
sed -i -e 's/-static//' Makefile || die
fi
}
src_compile() {
emake CC=$(tc-getCC)
}
src_install() {
dobin btyacc
dodoc README README.BYACC
newman manpage btyacc.1
}

View File

@@ -1,5 +1,5 @@
--- mstring.c
+++ mstring.c
--- a/mstring.c
+++ b/mstring.c
@@ -1,6 +1,7 @@
#include <stdlib.h>
#include <stdio.h>

View File

@@ -1,7 +1,7 @@
Respect CC, append to CFLAGS (but not -g), append to LDFLAGS, use system LD -jer
--- Makefile.orig 1999-07-15 19:40:12.000000000 +0200
+++ Makefile 2009-09-04 15:27:15.000000000 +0200
--- a/Makefile 1999-07-15 19:40:12.000000000 +0200
+++ b/Makefile 2009-09-04 15:27:15.000000000 +0200
@@ -8,14 +8,13 @@
HDRS = defs.h mstring.h