6451ba2ab4
Copy from devel:libraries:c_c++/libevent based on submit request 48983 from user coolo OBS-URL: https://build.opensuse.org/request/show/48983 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libevent?expand=0&rev=15
120 lines
3.2 KiB
RPMSpec
120 lines
3.2 KiB
RPMSpec
#
|
|
# spec file for package libevent (Version 1.4.14b)
|
|
#
|
|
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
|
|
Name: libevent
|
|
Version: 1.4.14b
|
|
Release: 1
|
|
License: BSD3c(or similar)
|
|
Summary: Library Providing an Event Handling API
|
|
Url: http://monkey.org/~provos/libevent/
|
|
Group: Development/Libraries/C and C++
|
|
Source: http://monkey.org/~provos/libevent-%{version}-stable.tar.bz2
|
|
PreReq: %fillup_prereq
|
|
PreReq: %insserv_prereq
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%description
|
|
The libevent library provides a mechanism to execute a function when a
|
|
specific event on a file descriptor occurs or after a given time has
|
|
passed.
|
|
|
|
Author:
|
|
--------
|
|
Nils Provos <provos@citi.umich.edu>
|
|
|
|
%define library_name libevent-1_4-2
|
|
%define debug_package_requires %{library_name} = %{version}-%{release}
|
|
|
|
%package -n libevent-1_4-2
|
|
License: BSD3c(or similar)
|
|
#
|
|
Summary: Shared libraries from libevent
|
|
Group: Development/Libraries/C and C++
|
|
Provides: %{name} = %{version}
|
|
Obsoletes: %{name} <= %{version}
|
|
|
|
%description -n libevent-1_4-2
|
|
The libevent library provides a mechanism to execute a function when a
|
|
specific event on a file descriptor occurs or after a given time has
|
|
passed.
|
|
|
|
This package holds the shared libraries for libevent.
|
|
|
|
Author:
|
|
--------
|
|
Nils Provos <provos@citi.umich.edu>
|
|
|
|
%package devel
|
|
License: BSD3c(or similar)
|
|
#
|
|
Summary: Development files for libevent
|
|
Group: Development/Libraries/C and C++
|
|
Requires: %{library_name} = %{version}
|
|
Requires: glibc-devel
|
|
Provides: %{name}:/usr/include/event.h
|
|
# both have /usr/include/event.h
|
|
Conflicts: libev-devel
|
|
|
|
%description devel
|
|
The libevent library provides a mechanism to execute a function when a
|
|
specific event on a file descriptor occurs or after a given time has
|
|
passed.
|
|
|
|
This package holds the development files for libevent.
|
|
|
|
Author:
|
|
--------
|
|
Nils Provos <provos@citi.umich.edu>
|
|
|
|
%prep
|
|
%setup -q -n %name-%version-stable
|
|
|
|
%build
|
|
autoreconf -i -f
|
|
%configure --disable-static
|
|
%{__make} %{?jobs:-j%jobs}
|
|
|
|
%install
|
|
%makeinstall
|
|
%{__rm} -v %{buildroot}%{_libdir}/*.la
|
|
|
|
%clean
|
|
rm -rf %{buildroot}
|
|
|
|
%post -n %{library_name} -p /sbin/ldconfig
|
|
|
|
%postun -n %{library_name} -p /sbin/ldconfig
|
|
|
|
%files -n %{library_name}
|
|
%defattr(-,root,root,-)
|
|
%{_libdir}/libevent-1.4.so.2*
|
|
%{_libdir}/libevent_core-1.4.so.2*
|
|
%{_libdir}/libevent_extra-1.4.so.2*
|
|
|
|
%files devel
|
|
%defattr(-,root,root)
|
|
%{_bindir}/event_rpcgen.py
|
|
%{_includedir}/*.h
|
|
%{_mandir}/man3/*
|
|
%{_libdir}/libevent.so
|
|
%{_libdir}/libevent_core.so
|
|
%{_libdir}/libevent_extra.so
|
|
|
|
%changelog
|