blob: d781dd1805cda009ec04985ba02f3e06b23c8e87 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 2002 Arcady Genkin <agenkin@thpoon.com>
# Distributed under the terms of the GNU General Public License, v2
# Author: Arcady Genkin <agenkin@thpoon.com>
# $Header: /var/cvsroot/gentoo-x86/dev-perl/DateManip/DateManip-5.40.ebuild,v 1.1 2002/04/22 20:26:09 agenkin Exp $
DESCRIPTION="Perl date manipulation routines."
HOMEPAGE="http://www.perl.com/CPAN/authors/id/SBECK/${P}.readme"
SRC_URI="http://www.perl.com/CPAN/authors/id/SBECK/${P}.tar.gz"
DEPEND=">=sys-devel/perl-5"
src_compile() {
perl Makefile.PL || die
make || die
}
src_install () {
make PREFIX=${D}/usr \
INSTALLMAN3DIR=${D}/usr/share/man/man3 \
install || die
dodoc ChangeLog MANIFEST README HISTORY TODO
}
|