579d523ead
fix deps and missing help files OBS-URL: https://build.opensuse.org/request/show/356616 OBS-URL: https://build.opensuse.org/package/show/security/xca?expand=0&rev=6
92 lines
3.3 KiB
RPMSpec
92 lines
3.3 KiB
RPMSpec
#
|
|
# spec file for package xca
|
|
#
|
|
# Copyright (c) 2016 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: xca
|
|
Summary: An RSA key and certificate management tool
|
|
Summary(de): Ein RSA Schlüssel- und Zertifikat-Managmentprogramm
|
|
Version: 1.3.2
|
|
Release: 0
|
|
License: BSD-3-Clause
|
|
Group: Productivity/Networking/Security
|
|
Url: http://sourceforge.net/projects/xca/
|
|
Autoreqprov: on
|
|
Source: %{name}-%{version}.tar.gz
|
|
Patch0: %{name}-doc_Makefile.patch
|
|
Patch1: %{name}-desktop.patch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: gcc-c++ >= 3.1.0
|
|
%if 0%{?sles_version} == 10
|
|
BuildRequires: qt-devel >= 4.6.0
|
|
%else
|
|
BuildRequires: libqt4-devel >= 4.6.0
|
|
%endif
|
|
%if 0%{?suse_version}
|
|
BuildRequires: libtool
|
|
BuildRequires: update-desktop-files
|
|
%else
|
|
BuildRequires: libtool-ltdl-devel
|
|
%endif
|
|
BuildRequires: openssl-devel >= 0.9.8
|
|
BuildRequires: sgmltool
|
|
%if 0%{?sles_version} == 10
|
|
Requires: qt >= 4.6.0
|
|
%else
|
|
Requires: libqt4 >= 4.6.0
|
|
%endif
|
|
Requires: openssl >= 0.9.8
|
|
Requires: db
|
|
|
|
%description
|
|
Graphical certification authority is an interface for managing RSA keys and certificates, and the creation and signing of PKCS#10 requests. It uses the OpenSSL library and a Berkeley DB for key and certificate storage. It supports importing and exporting keys and PEM DER PKCS8 certificates, signing and revoking of PEM DER PKCS12, and the selection of x509v3 extensions. A tree view of certificates is presented.
|
|
|
|
%description -l de
|
|
"Graphical certification authority" ist ein Interface zum Verwalten von RSA-Schlüssel und -Zertifikate, das Erzeugen und Signieren von PKCS#10-Requests. Es verwendet die OpenSSL Biliothek und Berkley DB zum Speichern von Schlüsseln und Zerifkaten. Es unterstützt das Importieren und Exportieren von Schlüsseln und PEM DER PKCS#8 Zertifikaten, Signieren und Widerrufen von PEM DER PKCS12 und das Auswählen von x509v3-Erweiterungen. Die Zertifikate werden in einer Baumstruktur präsentiert.
|
|
|
|
%prep
|
|
%setup -n %{name}-%{version}
|
|
%patch0
|
|
%patch1
|
|
|
|
%build
|
|
#bootstrap
|
|
CFLAGS="$RPM_OPT_FLAGS" \
|
|
%configure --docdir=%{_datadir}/%{name}
|
|
%{__make} destdir=$PRM_BUILD_ROOT prefix=%{_prefix} %{?_smp_mflags}
|
|
|
|
%install
|
|
%{__make} destdir=$RPM_BUILD_ROOT prefix=/usr install
|
|
%suse_update_desktop_file -i %{name} DesktopUtility
|
|
|
|
%clean
|
|
%{__rm} -rf $RPM_BUILD_ROOT
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%doc AUTHORS changelog COPYRIGHT VERSION
|
|
%{_bindir}/%{name}
|
|
%{_bindir}/%{name}_db_stat
|
|
%{_datadir}/applications/%{name}.desktop
|
|
%{_datadir}/mime/packages/%{name}.xml
|
|
%{_datadir}/pixmaps/%{name}*
|
|
%{_datadir}/%{name}
|
|
%{_mandir}/man1/%{name}.1.gz
|
|
%{_mandir}/man1/%{name}_db_stat.1.gz
|
|
|
|
%changelog
|
|
|