cfe4c51612
Copy from Base:System/tgt based on submit request 20644 from user dirkmueller OBS-URL: https://build.opensuse.org/request/show/20644 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/tgt?expand=0&rev=7
105 lines
2.8 KiB
RPMSpec
105 lines
2.8 KiB
RPMSpec
#
|
|
# spec file for package tgt (Version 0.9.0)
|
|
#
|
|
# Copyright (c) 2009 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/
|
|
#
|
|
|
|
# norootforbuild
|
|
|
|
|
|
Name: tgt
|
|
BuildRequires: libaio-devel openssl-devel perl-Config-General
|
|
Obsoletes: iscsitarget
|
|
Provides: iscsitarget
|
|
Requires: perl-Config-General
|
|
Url: http://stgt.berlios.de
|
|
License: GPL v2 or later
|
|
Group: System/Daemons
|
|
PreReq: %fillup_prereq %insserv_prereq
|
|
AutoReqProv: on
|
|
Version: 0.9.0
|
|
Release: 2
|
|
Summary: Generic Linux target framework (tgt)
|
|
Source: %{name}-20080805.tar.bz2
|
|
Source1: %{name}.init
|
|
Source2: scsi_tgt_if.h
|
|
Source3: %{name}.services
|
|
Patch1: %{name}-0.9.0-update
|
|
Patch2: %{name}-git-update
|
|
Patch11: %{name}-fix-build
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%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}-20080805
|
|
%patch1 -p1
|
|
%patch2 -p1
|
|
%patch11 -p1
|
|
cp %{S:2} usr
|
|
|
|
%build
|
|
cd usr
|
|
%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
|
|
cd usr
|
|
%{__make} DESTDIR=${RPM_BUILD_ROOT} install
|
|
cd ../scripts
|
|
install -vD -m 755 tgt-admin ${RPM_BUILD_ROOT}/usr/sbin/tgt-admin
|
|
install -vD -m 755 %{S:1} ${RPM_BUILD_ROOT}/etc/init.d/tgtd
|
|
ln -sf /etc/init.d/tgtd ${RPM_BUILD_ROOT}/usr/sbin/rctgtd
|
|
install -vD %{S:3} ${RPM_BUILD_ROOT}/etc/sysconfig/SuSEfirewall2.d/services/iscsitarget
|
|
|
|
%clean
|
|
rm -rf ${RPM_BUILD_ROOT}
|
|
rm -f filelist
|
|
|
|
%post
|
|
%{fillup_and_insserv tgtd}
|
|
|
|
%preun
|
|
%stop_on_removal
|
|
|
|
%postun
|
|
%{insserv_cleanup}
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
/usr/sbin/*
|
|
/etc/init.d/tgtd
|
|
%config %attr(0644,root,root) /etc/sysconfig/SuSEfirewall2.d/services/iscsitarget
|
|
%doc README doc/README.iscsi doc/TODO
|
|
%doc %{_mandir}/man8/*
|
|
|
|
%changelog
|