104 lines
3.1 KiB
RPMSpec
104 lines
3.1 KiB
RPMSpec
#
|
|
# spec file for package tgt
|
|
#
|
|
# Copyright (c) 2014 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: tgt
|
|
BuildRequires: docbook-xsl-stylesheets
|
|
BuildRequires: libaio-devel
|
|
BuildRequires: libxslt
|
|
BuildRequires: openssl-devel
|
|
BuildRequires: perl-Config-General
|
|
BuildRequires: pkgconfig(systemd)
|
|
Obsoletes: iscsitarget
|
|
Requires: perl-Config-General
|
|
Url: http://stgt.berlios.de
|
|
Requires(pre): %fillup_prereq
|
|
Version: 1.0.28
|
|
Release: 0
|
|
Summary: Generic Linux target framework (tgt)
|
|
License: GPL-2.0
|
|
Group: System/Daemons
|
|
Source: %{name}-%{version}.tar.bz2
|
|
Source1: %{name}d.service
|
|
Source3: %{name}.services
|
|
Patch1: %{name}-git-update
|
|
Patch2: %{name}-fix-build
|
|
# PATCH-FIX-UPSTREAM tgt-mgmt-fixed-m-system-o-delete-handling.patch [bnc#767438] - lduncan@suse.com
|
|
Patch3: %{name}-mgmt-fixed-m-system-o-delete-handling.patch
|
|
Patch4: setup-tgt-conf-d.patch
|
|
%{?systemd_requires}
|
|
|
|
%description
|
|
Linux target framework (tgt) aims to simplify various SCSI target
|
|
driver (iSCSI, Fibre Channel, SRP, etc) creation and maintenance.
|
|
|
|
Tgt consists of kernel modules, user-space daemon, and user-space
|
|
tools. Some target drivers uses all of them and some use only
|
|
user-space daemon and tools (i.e. they completely runs in user space).
|
|
|
|
|
|
|
|
Authors:
|
|
--------
|
|
FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
|
|
Mike Christie <michaelc@cs.wisc.edu>
|
|
|
|
%prep
|
|
%setup -n %{name}-%{version}
|
|
%patch1 -p1
|
|
%patch2 -p1
|
|
%patch3 -p1
|
|
%patch4
|
|
|
|
%build
|
|
%ifarch ppc ppc64
|
|
%define backends ISCSI=1 FCP=1 FCOE=1 IBMVIO=1
|
|
%else
|
|
%define backends ISCSI=1 FCP=1 FCOE=1
|
|
%endif
|
|
%{__make} OPTFLAGS="${RPM_OPT_FLAGS}" %{backends}
|
|
|
|
%install
|
|
%{__make} DESTDIR=%{buildroot} docdir=%_docdir/%{name} install
|
|
install -vD -m 755 %{S:1} %{buildroot}/%{_unitdir}/%{name}d.service
|
|
install -vD %{S:3} %{buildroot}/etc/sysconfig/SuSEfirewall2.d/services/tgt
|
|
ln -sf service %{buildroot}/usr/sbin/rc%{name}
|
|
|
|
%post
|
|
%{fillup_only}
|
|
%service_add_post %{name}d.service
|
|
|
|
%preun
|
|
%service_del_preun %{name}d.service
|
|
|
|
%postun
|
|
%service_del_postun %{name}d.service
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%{_sbindir}/*
|
|
%dir /etc/tgt
|
|
%dir /etc/tgt/conf.d
|
|
%config %attr(0644,root,root) /etc/tgt/targets.conf
|
|
%config %attr(0644,root,root) /etc/sysconfig/SuSEfirewall2.d/services/tgt
|
|
%{_unitdir}/%{name}d.service
|
|
%doc README doc/README.iscsi doc/README.iser doc/README.lu_configuration
|
|
%doc doc/README.mmc doc/README.passthrough doc/README.sbcjukebox doc/README.ssc
|
|
%doc %{_mandir}/man8/*
|
|
|
|
%changelog
|