From 08b6a443b50d04a653194cdf6b4078c7744b0871 Mon Sep 17 00:00:00 2001 From: Benjamin Petrin Date: Tue, 26 Jan 2010 21:06:13 +0100 Subject: [PATCH] contrib/liboping.spec: Added example spec file. I'm using collectd and the ping plugin for a project I'm working on. I noticed that collectd is distributing a starter spec file for building RPMs but that there wa s no such spec file for liboping. I created one which I have attached to this email. I'm not too familiar with creating RPMs but I think it's a good start and I was able to get a package built and installed using it. I'm giving it to you so if you wish to put in on your website for others to start with when creating packages t hen you may. I hope others may find this useful. --- contrib/liboping.spec | 107 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 107 insertions(+) create mode 100644 contrib/liboping.spec diff --git a/contrib/liboping.spec b/contrib/liboping.spec new file mode 100644 index 0000000..21669ed --- /dev/null +++ b/contrib/liboping.spec @@ -0,0 +1,107 @@ +Name: liboping +Version: 1.3.4 +Release: 1%{?dist} +Summary: Ping library intended for use in network monitoring applications + +Group: System Environment/Libraries +License: GPLv2 +URL: http://verplant.org/liboping/ +Source0: http://verplant.org/liboping/files/liboping-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +#TODO - find all build requirements using a clean system +#BuildRequires: + +%description +The %{name} package is a C library to generate ICMP echo requests, better known +as “ping packets”. It is intended for use in network monitoring applications or +applications that would otherwise need to fork ping(1) frequently. It is like +ping, ping6, and fping rolled into one. + +%package devel +Summary: Development files for %{name} +Group: Development/Libraries +Requires: %{name} = %{version}-%{release} + +%description devel +The %{name}-devel package contains libraries and header files for +developing applications that use %{name}. + +%package perl +Summary: Perl bindings for %{name} +Group: Development/Libraries +Requires: %{name} = %{version}-%{release} +Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) + +%description perl +The %{name}-perl package contains a perl module for perl programs +that use %{name}. + + +%prep +%setup -q + + +%build +#Install perl bindings to vendor_perl instead of site_perl +%configure --disable-static --with-perl-bindings='INSTALLDIRS=vendor OPTIMIZE="%{optflags}"' +#The application uses a local copy of libtool, we need to remove rpath with the +#following two lines (see https://fedoraproject.org/wiki/Packaging/Guidelines#Beware_of_Rpath) +sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool +sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool +make %{?_smp_mflags} + + +%install +rm -rf %{buildroot} +make install DESTDIR=%{buildroot} +chmod -R u+w %{buildroot}/* +find %{buildroot} -name '*.la' -exec rm -f {} ';' +find %{buildroot} -type f -name .packlist -exec rm -f {} ';' +find %{buildroot} -type f -name '*.bs' -a -size 0 -exec rm -f {} ';' +find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null ';' +find %{buildroot} -type f -name perllocal.pod -exec rm -f {} ';' + +%clean +rm -rf %{buildroot} + + +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + + +%files +%defattr(-,root,root,-) +%doc AUTHORS COPYING NEWS README ChangeLog +%{_libdir}/*.so.* +%{_bindir}/oping +%{_mandir}/man8/oping.8* + + +%files devel +%defattr(-,root,root,-) +%{_includedir}/* +%{_libdir}/*.so +%{_mandir}/man3/liboping.3* +%{_mandir}/man3/ping_construct.3* +%{_mandir}/man3/ping_get_error.3* +%{_mandir}/man3/ping_host_add.3* +%{_mandir}/man3/ping_iterator_get.3* +%{_mandir}/man3/ping_iterator_get_context.3* +%{_mandir}/man3/ping_iterator_get_info.3* +%{_mandir}/man3/ping_send.3* +%{_mandir}/man3/ping_setopt.3* + +%files perl +%defattr(-,root,root,-) +%doc bindings/perl/README bindings/perl/Changes +# For arch-specific packages: vendorarch +%{perl_vendorarch}/* +%exclude %dir %{perl_vendorarch}/auto/ +%{_mandir}/man3/Net::Oping.3pm* + + +%changelog +* Fri Jan 22 2010 Benjamin Petrin - 1.3.4-1 +- Initial package -- 2.11.0