You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
130 lines
3.5 KiB
130 lines
3.5 KiB
Name: signon
|
|
Version: 8.57
|
|
Release: 3%{?dist}
|
|
Summary: Accounts framework for Linux and POSIX based platforms
|
|
|
|
License: LGPLv2
|
|
URL: https://code.google.com/p/accounts-sso
|
|
|
|
# Source available from https://drive.google.com/drive/#folders/0B8fX9XOwH_g4alFsYV8tZTI4VjQ
|
|
# as per https://groups.google.com/forum/#!topic/accounts-sso-announce/8MserPgUV5M
|
|
Source0: signon-%{version}.tar.bz2
|
|
|
|
# cmake config files still define SIGNONQT_LIBRARIES_STATIC, but meh, anyone who
|
|
# tries to use that deserves what they get
|
|
Patch1: signon-8.57-no_static.patch
|
|
|
|
BuildRequires: qt5-qtbase-devel
|
|
BuildRequires: doxygen
|
|
BuildRequires: graphviz
|
|
BuildRequires: libproxy-devel
|
|
|
|
Requires: dbus
|
|
|
|
%description
|
|
Single Sign-On is a framework for centrally storing authentication credentials
|
|
and handling authentication on behalf of applications as requested by
|
|
applications. It consists of a secure storage of login credentials (for example
|
|
usernames and passwords), plugins for different authentication systems and a
|
|
client library for applications to communicate with this system.
|
|
|
|
%package devel
|
|
Summary: Development files for %{name}
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
%description devel
|
|
The %{name}-devel package contains libraries and header files for
|
|
developing applications that use %{name}.
|
|
|
|
%package doc
|
|
Summary: Documentation for %{name}
|
|
BuildArch: noarch
|
|
|
|
%description doc
|
|
The %{name}-doc package contains documentation for %{name}.
|
|
|
|
|
|
%prep
|
|
%setup -q -n signon-%{version}
|
|
|
|
%patch1 -p1 -b .no_static
|
|
|
|
|
|
%build
|
|
# Make sure it compiles against Fedora's Qt5
|
|
sed -i "s/qdbusxml2cpp/qdbusxml2cpp-qt5/" src/signond/signond.pro
|
|
|
|
export PATH=%{_qt5_bindir}:$PATH
|
|
|
|
# FIXME: out-of-src tree build fails -- rex
|
|
%{qmake_qt5} signon.pro \
|
|
CONFIG+=release \
|
|
QMF_INSTALL_ROOT=%{_prefix}
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
%install
|
|
make install INSTALL_ROOT=%{buildroot}
|
|
|
|
# create/own libdir/extensions
|
|
mkdir -p %{buildroot}%{_libdir}/extensions/
|
|
|
|
|
|
%post -p /sbin/ldconfig
|
|
%postun -p /sbin/ldconfig
|
|
|
|
%files
|
|
%doc README TODO NOTES COPYING
|
|
%config(noreplace) %{_sysconfdir}/signond.conf
|
|
%{_bindir}/signond
|
|
%{_bindir}/signonpluginprocess
|
|
%{_libdir}/libsignon-extension.so.1*
|
|
%{_libdir}/libsignon-plugins-common.so.1*
|
|
%{_libdir}/libsignon-plugins.so.1*
|
|
%{_libdir}/libsignon-qt5.so.1*
|
|
%{_libdir}/signon/
|
|
%{_datadir}/dbus-1/interfaces/*.xml
|
|
%{_datadir}/dbus-1/services/*.service
|
|
|
|
%files devel
|
|
%{_includedir}/signon-extension/
|
|
%{_includedir}/signon-plugins/
|
|
%{_includedir}/signon-qt5/
|
|
%{_includedir}/signond/
|
|
%{_libdir}/cmake/SignOnQt5/
|
|
%{_libdir}/libsignon-extension.so
|
|
%{_libdir}/libsignon-plugins-common.so
|
|
%{_libdir}/libsignon-plugins.so
|
|
%{_libdir}/libsignon-qt5.so
|
|
%{_libdir}/pkgconfig/SignOnExtension.pc
|
|
%{_libdir}/pkgconfig/libsignon-qt5.pc
|
|
%{_libdir}/pkgconfig/signon-plugins-common.pc
|
|
%{_libdir}/pkgconfig/signon-plugins.pc
|
|
%{_libdir}/pkgconfig/signond.pc
|
|
|
|
%files doc
|
|
%{_docdir}/signon/
|
|
%{_docdir}/libsignon-qt/
|
|
%{_docdir}/signon-plugins/
|
|
%{_docdir}/signon-plugins-dev/
|
|
|
|
|
|
%changelog
|
|
* Wed Apr 01 2015 Rex Dieter <rdieter@fedoraproject.org> - 8.57-3
|
|
- %%files: track closer, less globs (sonames, pkgconfig)
|
|
- own libdir/extensions/
|
|
- patch out building of (unused) static lib
|
|
|
|
* Sat Mar 28 2015 Daniel Vrátil <dvratil@redhat.com> - 8.57-2
|
|
- rename to signon
|
|
- drop glib2-devel dep
|
|
- fix %%changelog
|
|
|
|
* Tue Mar 17 2015 Daniel Vrátil <dvratil@redhat.com> - 8.57-1
|
|
- rename to signon-qt5, update
|
|
|
|
* Wed Feb 26 2014 Daniel Vrátil <dvratil@redhat.com> - 8.56-1
|
|
- initial version
|
|
|