blob: 2455dff2b81d6533bf9149d34358b4819b026af8 [file] [log] [blame]
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="5"
inherit toolchain-funcs
MY_P=${P/_p/-}
DESCRIPTION="an (often faster than gawk) awk-interpreter"
HOMEPAGE="http://invisible-island.net/mawk/mawk.html"
SRC_URI="ftp://invisible-island.net/mawk/${MY_P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="*"
S=${WORKDIR}/${MY_P}
DOCS=( ACKNOWLEDGMENT CHANGES README )
src_prepare() {
tc-export BUILD_CC
}
src_install() {
default
exeinto /usr/share/doc/${PF}/examples
doexe examples/*
docompress -x /usr/share/doc/${PF}/examples
}
pkg_postinst() {
if has_version app-admin/eselect && has_version app-eselect/eselect-awk; then
eselect awk update ifunset
fi
}
pkg_postrm() {
if has_version app-admin/eselect && has_version app-eselect/eselect-awk; then
eselect awk update ifunset
fi
}