perl-gdgraph: new package

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Francois Perrad 2014-07-18 15:43:39 +02:00 committed by Thomas Petazzoni
parent 5c58e0adb3
commit c38a9fb093
3 changed files with 27 additions and 0 deletions

View File

@ -431,6 +431,7 @@ endif
if BR2_PACKAGE_PERL
menu "Perl libraries/modules"
source "package/perl-gd/Config.in"
source "package/perl-gdgraph/Config.in"
source "package/perl-gdtextutil/Config.in"
source "package/perl-io-socket-ssl/Config.in"
source "package/perl-mojolicious/Config.in"

View File

@ -0,0 +1,12 @@
config BR2_PACKAGE_PERL_GDGRAPH
bool "perl-gdgraph"
depends on !BR2_PREFER_STATIC_LIB
select BR2_PACKAGE_PERL_GD
select BR2_PACKAGE_PERL_GDTEXTUTIL
help
Produces charts with GD
https://metacpan.org/release/GDGraph
comment "perl-gdgraph needs a toolchain w/ dynamic library"
depends on BR2_PREFER_STATIC_LIB

View File

@ -0,0 +1,14 @@
################################################################################
#
# perl-gdgraph
#
################################################################################
PERL_GDGRAPH_VERSION = 1.48
PERL_GDGRAPH_SOURCE = GDGraph-$(PERL_GDGRAPH_VERSION).tar.gz
PERL_GDGRAPH_SITE = $(BR2_CPAN_MIRROR)/authors/id/R/RU/RUZ/
PERL_GDGRAPH_DEPENDENCIES = perl perl-gd perl-gdtextutil
PERL_GDGRAPH_LICENSE = Artistic or GPLv1+
PERL_GDGRAPH_LICENSE_FILES = Dustismo.LICENSE
$(eval $(perl-package))