Search
j0ke.net Open Build Service
>
Projects
>
server:monitoring
:
netflow
>
perl-ConfigReader
> Changes
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
Changes of Revision 3
[-]
[+]
Added
perl-ConfigReader.spec
@@ -0,0 +1,72 @@ +Name: perl-ConfigReader +Version: 0.5 +Release: 1 +License: GPL +Group: Development/Libraries/Perl +Summary: Perl module ConfigReader +Summary(de): Perlmodul ConfigReader +URL: http://search.cpan.org/~amw/ +Source0: ConfigReader-%{version}.tar.gz +Patch0: %{name}.diff +BuildRoot: %{_tmppath}/%{name}-%{version}-build +Packager: Carsten Schoene <cs@linux-administrator.com> +Vendor: linux-administrator.com +BuildRequires: glibc-devel libgcc gcc gcc-c++ perl +%if 0%{?fedora_version} >= 7 +BuildRequires: perl-ExtUtils-MakeMaker +%endif + +%description +ConfigReader is a set of classes for reading configuration files. The +programmer can easily specify the directives to be read, as well as +their default values and a parsing function or method to use. A lot +of work went into error handling. The class implementation means that +a simple subclass can be written to parse a different style of +configuration file, and it will automatically get the specifying, +error handling, and parser features of ConfigReader. + +%prep +%setup -q -n ConfigReader-%{version} +%patch +%build +perl Makefile.PL +%__make + +%makeinstall DESTDIR=$RPM_BUILD_ROOT +%if 0%{?suse_version} +%perl_process_packlist +%else +find $RPM_BUILD_ROOT -name perllocal.pod -exec rm {} \; >/dev/null +%endif +# we create own package list just for fallback, not used on suse +cd $RPM_BUILD_ROOT +find . -type d | sed '1,2d;s,^\.,\%attr(-\,root\,root) \%dir ,' > $RPM_BUILD_DIR/file.list.%{name} +find . -type f | sed 's,^\.,\%attr(-\,root\,root) ,' >> $RPM_BUILD_DIR/file.list.%{name} +find . -type l | sed 's,^\.,\%attr(-\,root\,root) ,' >> $RPM_BUILD_DIR/file.list.%{name} + +%clean +rm -rf $RPM_BUILD_ROOT/* +rm -rf $RPM_BUILD_DIR/%{name}* + +%if 0%{?suse_version} +%files +%doc README +%{perl_sitelib}/ConfigReader/* +/var/adm/perl-modules/perl-ConfigReader +%ifarch %ix86 +%{perl_sitelib}/i586-linux-thread-multi +%endif +%ifarch x86_64 +%{perl_sitelib}/x86_64-linux-thread-multi +%endif +/usr/share/man/man3/* + +%else + +%files -f ../file.list.%{name} + +%endif + +%changelog +* Fri Feb 23 2007 Carsten Schoene <cs@linux-administrator.com> +- initial build of ConfigReader perl package which is required for flowscan