83 lines
2.5 KiB
RPMSpec
83 lines
2.5 KiB
RPMSpec
|
Summary: An advanced IRC bouncer
|
||
|
Name: znc
|
||
|
Version: 0.070
|
||
|
Release: 7%{?dist}
|
||
|
License: GPLv2 with exceptions
|
||
|
Group: System Environment/Daemons
|
||
|
URL: http://znc.sf.net/
|
||
|
Source0: http://downloads.sourceforge.net/sourceforge/znc/znc-%{version}.tar.gz
|
||
|
Patch0: %{name}-%{version}-pkgconfigdir.diff
|
||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
|
||
|
BuildRequires: perl
|
||
|
BuildRequires: openssl-devel >= 0.9.8
|
||
|
BuildRequires: cyrus-sasl-devel
|
||
|
|
||
|
# The following line is necessary because this module
|
||
|
# is needed for Fedora, but not for EPEL.
|
||
|
%{?fedora:BuildRequires: perl-ExtUtils-Embed}
|
||
|
|
||
|
%description
|
||
|
ZNC is an IRC bouncer with many advanced features like detaching,
|
||
|
multiple users, per channel playback buffer, SSL, IPv6, transparent
|
||
|
DCC bouncing, Perl and C++ module support to name a few.
|
||
|
|
||
|
%package devel
|
||
|
Summary: Development files needed to compile ZNC modules
|
||
|
Group: Development/Libraries
|
||
|
Requires: %{name} = %{version}-%{release} pkgconfig
|
||
|
|
||
|
%description devel
|
||
|
All includes and program files you need to compile your own znc
|
||
|
modules.
|
||
|
|
||
|
%prep
|
||
|
%setup -q
|
||
|
%patch0 -p1
|
||
|
%__perl -pi.add_release -e 's|(?<="ZNC \%1\.3f)|-%{release}|' znc.cpp
|
||
|
chmod -x modules/q.cpp
|
||
|
|
||
|
%build
|
||
|
%configure \
|
||
|
--with-module-prefix=%{_libdir}/znc \
|
||
|
--enable-ipv6
|
||
|
%__make %{?_smp_mflags}
|
||
|
|
||
|
%install
|
||
|
%__rm -Rf "%{buildroot}"
|
||
|
%__make install DESTDIR="%{buildroot}"
|
||
|
|
||
|
%clean
|
||
|
%__rm -Rf "%{buildroot}"
|
||
|
|
||
|
%files
|
||
|
%defattr(-,root,root)
|
||
|
%doc AUTHORS LICENSE LICENSE.OpenSSL README znc.conf
|
||
|
%{_bindir}/znc
|
||
|
%{_mandir}/man1/*
|
||
|
%{_libdir}/znc/
|
||
|
%{_datadir}/znc/
|
||
|
|
||
|
%files devel
|
||
|
%defattr(-,root,root)
|
||
|
%{_bindir}/znc-buildmod
|
||
|
%{_bindir}/znc-config
|
||
|
%{_libdir}/pkgconfig/%{name}.pc
|
||
|
%{_includedir}/znc/
|
||
|
|
||
|
%changelog
|
||
|
* Sun Jul 12 2009 Nick Bebout <nb@fedoraproject.org> - 0.070-7
|
||
|
- Fix License: to be GPLv2 with exceptions
|
||
|
* Sat Jul 11 2009 Nick Bebout <nb@fedoraproject.org> - 0.070-6
|
||
|
- Fix permissions error in %%prep, not in source
|
||
|
* Sat Jul 11 2009 Nick Bebout <nb@fedoraproject.org> - 0.070-5
|
||
|
- Fix permissions error on q.cpp and add LICENSE.OpenSSL
|
||
|
* Sat Jul 11 2009 Nick Bebout <nb@fedoraproject.org> - 0.070-4
|
||
|
- Remove switch to enable debug, fix %%files section
|
||
|
* Fri Jul 10 2009 Nick Bebout <nb@fedoraproject.org> - 0.070-3
|
||
|
- Move fixfreenode and log into separate znc-extra package
|
||
|
- Move awayping into separate znc-awayping package
|
||
|
* Thu Jul 9 2009 Nick Bebout <nb@fedoraproject.org> - 0.070-2
|
||
|
- Include modules with main package
|
||
|
* Wed Jul 8 2009 Nick Bebout <nb@fedoraproject.org> - 0.070-1
|
||
|
- Initial Fedora package based on 0.070 of upstream
|