blob: cd8bc56d2f58a3fd7f7bc3d9b2900eed6fe25f9c (
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 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/GDGraph/GDGraph-1.43.ebuild,v 1.4 2004/06/25 00:31:35 agriffis Exp $
inherit perl-module
CATEGORY="dev-perl"
DESCRIPTION="perl5 module to create charts using the GD module"
SRC_URI="http://www.cpan.org/modules/by-module/GD/${P}.tar.gz"
HOMEPAGE="http://www.cpan.org/modules/by-module/GD/${P}.readme"
SLOT="0"
LICENSE="Artistic | GPL-2"
KEYWORDS="x86 amd64 ~sparc alpha ia64 ~ppc"
DEPEND="dev-perl/GDTextUtil
media-libs/libgd"
src_unpack() {
unpack ${A}
cd ${S}
perl-module_src_prep
}
|