YAML::AppConfig extends the work done in Config::YAML and
YAML::ConfigFile to allow more flexiable configuration files. Your configuration is stored in YAML and then parsed and presented to you via YAML::AppConfig. Settings can be referenced using get and set methods and settings can refer to one another by using variables of the form $foo, much in the style of AppConfig. WWW: http://search.cpan.org/dist/YAML-AppConfig/
This commit is contained in:
parent
c4c652e40f
commit
3dc43eab77
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=280506
5 changed files with 41 additions and 0 deletions
|
@ -2532,6 +2532,7 @@
|
|||
SUBDIR += p5-XML-Compile-Tester
|
||||
SUBDIR += p5-XML-Pastor
|
||||
SUBDIR += p5-XSLoader
|
||||
SUBDIR += p5-YAML-AppConfig
|
||||
SUBDIR += p5-Yada-Yada-Yada
|
||||
SUBDIR += p5-ZConf-GUI
|
||||
SUBDIR += p5-ZML
|
||||
|
|
26
devel/p5-YAML-AppConfig/Makefile
Normal file
26
devel/p5-YAML-AppConfig/Makefile
Normal file
|
@ -0,0 +1,26 @@
|
|||
# New ports collection makefile for: YAML::AppConfig
|
||||
# Date created: 26 Aug 2011
|
||||
# Whom: Jun Kuriyama <kuriyama@FreeBSD.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= YAML-AppConfig
|
||||
PORTVERSION= 0.16
|
||||
CATEGORIES= devel perl5
|
||||
MASTER_SITES= CPAN
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
||||
MAINTAINER= kuriyama@FreeBSD.org
|
||||
COMMENT= Perl extension to manage configuration files with YAML
|
||||
|
||||
RUN_DEPENDS= \
|
||||
p5-YAML>=0.38:${PORTSDIR}/textproc/p5-YAML \
|
||||
p5-YAML-Syck>0:${PORTSDIR}/textproc/p5-YAML-Syck
|
||||
BUILD_DEPENDS= ${RUN_DEPENDS}
|
||||
|
||||
PERL_CONFIGURE= yes
|
||||
|
||||
MAN3= YAML::AppConfig.3
|
||||
|
||||
.include <bsd.port.mk>
|
2
devel/p5-YAML-AppConfig/distinfo
Normal file
2
devel/p5-YAML-AppConfig/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
|||
SHA256 (YAML-AppConfig-0.16.tar.gz) = 2c11e7ea2ea2911199c4ea6bfd3a77e1d2264efc2a490b6d8886f1e4b930df57
|
||||
SIZE (YAML-AppConfig-0.16.tar.gz) = 12385
|
9
devel/p5-YAML-AppConfig/pkg-descr
Normal file
9
devel/p5-YAML-AppConfig/pkg-descr
Normal file
|
@ -0,0 +1,9 @@
|
|||
YAML::AppConfig extends the work done in Config::YAML and
|
||||
YAML::ConfigFile to allow more flexiable configuration files.
|
||||
|
||||
Your configuration is stored in YAML and then parsed and presented to
|
||||
you via YAML::AppConfig. Settings can be referenced using get and set
|
||||
methods and settings can refer to one another by using variables of
|
||||
the form $foo, much in the style of AppConfig.
|
||||
|
||||
WWW: http://search.cpan.org/dist/YAML-AppConfig/
|
3
devel/p5-YAML-AppConfig/pkg-plist
Normal file
3
devel/p5-YAML-AppConfig/pkg-plist
Normal file
|
@ -0,0 +1,3 @@
|
|||
%%SITE_PERL%%/%%PERL_ARCH%%/auto/YAML/AppConfig/.packlist
|
||||
%%SITE_PERL%%/YAML/AppConfig.pm
|
||||
@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/YAML/AppConfig
|
Loading…
Reference in a new issue