diff options
author | Aaron Bauman <bman@gentoo.org> | 2019-03-04 17:05:47 -0500 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2019-03-04 17:06:24 -0500 |
commit | e4ff791859bc5ded335bcd953dd2f536ec55f985 (patch) | |
tree | d5f97dbb9083bb531398b09121bb784f36feb6c7 /dev-util/btyacc | |
parent | media-video/mkvtoolnix: remove old (diff) | |
download | gentoo-e4ff791859bc5ded335bcd953dd2f536ec55f985.tar.gz gentoo-e4ff791859bc5ded335bcd953dd2f536ec55f985.tar.bz2 gentoo-e4ff791859bc5ded335bcd953dd2f536ec55f985.zip |
dev-util/btyacc: drop old EAPI
Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'dev-util/btyacc')
-rw-r--r-- | dev-util/btyacc/btyacc-3.0-r2.ebuild | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/dev-util/btyacc/btyacc-3.0-r2.ebuild b/dev-util/btyacc/btyacc-3.0-r2.ebuild deleted file mode 100644 index bf06edcf5abb..000000000000 --- a/dev-util/btyacc/btyacc-3.0-r2.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -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 -} |