blob: 327141ae2ea03ac5d637ad055ffbefc6fbd0d70f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Parse-Yapp/Parse-Yapp-1.05-r1.ebuild,v 1.23 2010/02/05 21:38:19 tove Exp $
EAPI=2
MODULE_AUTHOR=FDESAR
inherit perl-module
DESCRIPTION="Compiles yacc-like LALR grammars to generate Perl OO parser modules"
SLOT="0"
KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE=""
src_install() {
perl-module_src_install
insinto /usr/share/doc/${PF}/examples
doins Calc.yp YappParse.yp || die
}
|