forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
btyacc-3.0-r2.ebuild
40 lines (32 loc) · 921 Bytes
/
btyacc-3.0-r2.ebuild
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="2"
inherit eutils toolchain-funcs
MY_P=${P/./-}
IUSE=""
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}"
src_prepare() {
cp -av Makefile{,.orig}
epatch "${FILESDIR}/${P}-includes.patch"
epatch "${FILESDIR}/${P}-makefile.patch"
# 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
[[ ${CHOST} == *-darwin* ]] && sed -i -e 's/-static//' Makefile
}
src_compile() {
tc-export CC
emake || die
}
src_install() {
dobin btyacc
dodoc README README.BYACC
newman manpage btyacc.1
}