blob: 5c3365467cf083a8b015fe622fe6adc5b94f0dcc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Pod-Spell/Pod-Spell-1.10.0.ebuild,v 1.3 2011/11/06 18:24:51 grobian Exp $
EAPI=4
MODULE_AUTHOR=SBURKE
MODULE_VERSION=1.01
inherit perl-module
DESCRIPTION="A formatter for spellchecking Pod"
SRC_URI+=" mirror://gentoo/podspell.1.gz http://dev.gentoo.org/~tove/files/podspell.1.gz"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris"
IUSE=""
RDEPEND="virtual/perl-Pod-Escapes
virtual/perl-PodParser"
DEPEND="${RDEPEND}"
SRC_TEST="do"
src_install() {
perl-module_src_install
doman "${WORKDIR}"/podspell.1 || die
}
|