diff options
author | Patrice Clement <monsieurp@gentoo.org> | 2017-05-22 23:41:42 +0200 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2017-05-22 23:41:42 +0200 |
commit | 46f220fb076f0ff07fb6c57f2b6d705ea20397b0 (patch) | |
tree | 9da1a9940d7cbdbb237da712c93d99b23ba881f7 /sys-apps/nawk | |
parent | dev-lisp/clozurecl: Gentoo Prefix support (diff) | |
download | gentoo-46f220fb076f0ff07fb6c57f2b6d705ea20397b0.tar.gz gentoo-46f220fb076f0ff07fb6c57f2b6d705ea20397b0.tar.bz2 gentoo-46f220fb076f0ff07fb6c57f2b6d705ea20397b0.zip |
sys-apps/nawk: EAPI 6 bump.
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'sys-apps/nawk')
-rw-r--r-- | sys-apps/nawk/files/nawk-20121220-parallel-build.patch | 4 | ||||
-rw-r--r-- | sys-apps/nawk/nawk-20121220-r3.ebuild | 62 |
2 files changed, 64 insertions, 2 deletions
diff --git a/sys-apps/nawk/files/nawk-20121220-parallel-build.patch b/sys-apps/nawk/files/nawk-20121220-parallel-build.patch index 45a3e5624a40..ee6421c665ad 100644 --- a/sys-apps/nawk/files/nawk-20121220-parallel-build.patch +++ b/sys-apps/nawk/files/nawk-20121220-parallel-build.patch @@ -1,5 +1,5 @@ ---- makefile.orig 2013-02-06 10:26:36.452829647 -0700 -+++ makefile 2013-02-07 09:12:13.293898947 -0700 +--- a/makefile 2013-02-06 10:26:36.452829647 -0700 ++++ b/makefile 2013-02-07 09:12:13.293898947 -0700 @@ -44,7 +44,7 @@ LISTING = awk.h proto.h awkgram.y lex.c b.c main.c maketab.c parse.c \ lib.c run.c tran.c diff --git a/sys-apps/nawk/nawk-20121220-r3.ebuild b/sys-apps/nawk/nawk-20121220-r3.ebuild new file mode 100644 index 000000000000..a52e72d09b28 --- /dev/null +++ b/sys-apps/nawk/nawk-20121220-r3.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit toolchain-funcs + +DESCRIPTION="Brian Kernighan's pattern scanning and processing language" +HOMEPAGE="http://cm.bell-labs.com/cm/cs/awkbook/index.html" +SRC_URI="mirror://gentoo/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-macos" + +RDEPEND=" + app-eselect/eselect-awk + !sys-freebsd/freebsd-ubin" + +DEPEND=" + ${RDEPEND} + virtual/yacc" + +S="${WORKDIR}" + +PATCHES=( "${FILESDIR}/${P}"-parallel-build.patch ) + +DOCS=( README FIXES ) + +src_prepare() { + default + rm -v ytab.[hc] || die +} + +src_compile() { + emake \ + CC="$(tc-getCC)" \ + CFLAGS="${CFLAGS}" \ + CPPFLAGS=-DHAS_ISBLANK \ + ALLOC="${LDFLAGS}" \ + YACC=$(type -p yacc) \ + YFLAGS="-d" +} + +src_install() { + newbin a.out "${PN}" + sed \ + -e 's/awk/nawk/g' \ + -e 's/AWK/NAWK/g' \ + -e 's/Awk/Nawk/g' \ + awk.1 > "${PN}".1 || die "manpage patch failed" + doman "${PN}.1" + einstalldocs +} + +pkg_postinst() { + eselect awk update ifunset +} + +pkg_postrm() { + eselect awk update ifunset +} |