diff options
author | 2012-11-30 03:38:42 +0000 | |
---|---|---|
committer | 2012-11-30 03:38:42 +0000 | |
commit | 9489d816ae47a0ff44c6ad6c61773af40cb11874 (patch) | |
tree | a2f32937f06dd54095251ec64e985dff2ed4c565 /sys-apps/mawk/mawk-1.3.4_p20121129.ebuild | |
parent | Version bump. (diff) | |
download | gentoo-2-9489d816ae47a0ff44c6ad6c61773af40cb11874.tar.gz gentoo-2-9489d816ae47a0ff44c6ad6c61773af40cb11874.tar.bz2 gentoo-2-9489d816ae47a0ff44c6ad6c61773af40cb11874.zip |
Version bump.
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'sys-apps/mawk/mawk-1.3.4_p20121129.ebuild')
-rw-r--r-- | sys-apps/mawk/mawk-1.3.4_p20121129.ebuild | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/sys-apps/mawk/mawk-1.3.4_p20121129.ebuild b/sys-apps/mawk/mawk-1.3.4_p20121129.ebuild new file mode 100644 index 000000000000..474cad828de1 --- /dev/null +++ b/sys-apps/mawk/mawk-1.3.4_p20121129.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/mawk/mawk-1.3.4_p20121129.ebuild,v 1.1 2012/11/30 03:38:42 radhermit Exp $ + +EAPI="5" + +inherit toolchain-funcs eutils + +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="~alpha ~amd64 ~hppa ~ia64 ~ppc ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos" +IUSE="" + +RDEPEND="app-admin/eselect-awk" +DEPEND="${RDEPEND}" + +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() { + eselect awk update ifunset +} + +pkg_postrm() { + eselect awk update ifunset +} |