[packages/tpm_emulator] - new

qboosh qboosh at pld-linux.org
Sun Aug 25 08:05:25 CEST 2013


commit bc65ae118a5c7e73032fe2ebbf1fffa6dc6cc60d
Author: Jakub Bogusz <qboosh at pld-linux.org>
Date:   Sun Aug 25 08:04:41 2013 +0200

    - new

 tpm_emulator.spec | 159 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 159 insertions(+)
---
diff --git a/tpm_emulator.spec b/tpm_emulator.spec
new file mode 100644
index 0000000..efe40b9
--- /dev/null
+++ b/tpm_emulator.spec
@@ -0,0 +1,159 @@
+#
+# Conditional build:
+%bcond_without	dist_kernel	# without distribution kernel
+%bcond_without  kernel		# don't build kernel modules
+%bcond_without	userspace	# don't build userspace packages
+%bcond_with	verbose		# verbose kernel module build
+#
+%if "%{_alt_kernel}" != "%{nil}"
+%undefine	with_userspace
+%endif
+%if %{without kernel}
+%undefine	with_dist_kernel
+%endif
+Summary:	Software-based TPM and MTM Emulator
+Summary(pl.UTF-8):	Programowy emulator TPM i MTM
+%define	pname	tpm_emulator
+Name:		%{pname}%{_alt_kernel}
+Version:	0.7.4
+%define	rel	1
+Release:	%{rel}
+License:	GPL v2+
+Group:		Applications/System
+Source0:	http://downloads.sourceforge.net/tpm-emulator.berlios/%{pname}-%{version}.tar.gz
+# Source0-md5:	e26becb8a6a2b6695f6b3e8097593db8
+URL:		http://tpm-emulator.berlios.de/
+BuildRequires:	cmake >= 2.4
+BuildRequires:	gmp-devel
+%if %{with dist_kernel}
+BuildRequires:	kernel%{_alt_kernel}-module-build
+%endif
+Requires:	%{name}-libs = %{version}-%{rel}
+BuildRoot:	%{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+Software-based TPM and MTM Emulator.
+
+%description -l pl.UTF-8
+Programowy emulator TPM i MTM.
+
+%package libs
+Summary:	TSS-conformant device driver library for the emulator
+Summary(pl.UTF-8):	Biblioteka sterownika urządzenia zgodnego z TSS dla emulatora
+Group:		Libraries
+
+%description libs
+TSS-conformant device driver library for the emulator.
+
+%description libs -l pl.UTF-8
+Biblioteka sterownika urządzenia zgodnego z TSS dla emulatora.
+
+%package devel
+Summary:	Header file for TDDL library
+Summary(pl.UTF-8):	Plik nagłówkowy biblioteki TDDL
+Group:		Development/Libraries
+Requires:	%{name}-libs = %{version}-%{rel}
+
+%description devel
+Header file for TDDL library.
+
+%description devel -l pl.UTF-8
+Plik nagłówkowy biblioteki TDDL.
+
+%package static
+Summary:	Static TDDL library
+Summary(pl.UTF-8):	Statyczna biblioteka TDDL
+Group:		Development/Libraries
+Requires:	%{name}-devel = %{version}-%{rel}
+
+%description static
+Static TDDL library.
+
+%description static -l pl.UTF-8
+Statyczna biblioteka TDDL.
+
+%package -n kernel%{_alt_kernel}-char-tpmd
+Summary:	Kernel module that provides /dev/tpm device
+Summary(pl.UTF-8):	Moduł jądra udostępniający urządzenie /dev/tpm
+Group:		Base/Kernel
+%if %{with dist_kernel}
+%requires_releq_kernel
+Requires(postun):	%releq_kernel
+%endif
+
+%description -n kernel%{_alt_kernel}-char-tpmd
+Kernel module that provides /dev/tpm device for backward compatibility
+and forwards the received commands to tpmd.
+
+%description -n kernel%{_alt_kernel}-char-tpmd -l pl.UTF-8
+Moduł jądra udostępniający dla kompatybilności urządzenie /dev/tpm i
+przekazujący odebrane polecenia do tpmd.
+
+%prep
+%setup -q -n %{pname}-%{version}
+
+# separate kernel module from userspace build
+echo > tpmd_dev/CMakeLists.txt
+
+%build
+mkdir build
+cd build
+%cmake ..
+%if %{with userspace}
+%{__make}
+%endif
+cd ..
+%if %{with kernel}
+ln -sf ../../build/config.h tpmd_dev/linux/config.h
+%build_kernel_modules -m tpmd_dev -C tpmd_dev/linux
+%{__make} -C tpmd_dev/linux tpmd_dev.rules
+%endif
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%if %{with userspace}
+%{__make} -C build install \
+	DESTDIR=$RPM_BUILD_ROOT
+%endif
+
+%if %{with kernel}
+install -d $RPM_BUILD_ROOT/lib/udev/rules.d
+cd tpmd_dev/linux
+cp -p tpmd_dev.rules $RPM_BUILD_ROOT/lib/udev/rules.d/80-tpmd_dev.rules
+%install_kernel_modules -m tpmd_dev -d misc
+%endif
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post	libs -p /sbin/ldconfig
+%postun	libs -p /sbin/ldconfig
+
+%if %{with userspace}
+%files
+%defattr(644,root,root,755)
+%doc AUTHORS ChangeLog README
+%attr(755,root,root) %{_bindir}/tpmd
+
+%files libs
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_libdir}/libtddl.so.*.*.*.*
+%attr(755,root,root) %ghost %{_libdir}/libtddl.so.1.2
+
+%files devel
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_libdir}/libtddl.so
+%{_includedir}/tddl.h
+
+%files static
+%defattr(644,root,root,755)
+%{_libdir}/libtddl.a
+%endif
+
+%if %{with kernel}
+%files -n kernel%{_alt_kernel}-char-tpmd
+%defattr(644,root,root,755)
+/lib/modules/%{_kernel_ver}/misc/tpmd_dev.ko*
+/lib/udev/rules.d/80-tpmd_dev.rules
+%endif
================================================================

---- gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/tpm_emulator.git/commitdiff/bc65ae118a5c7e73032fe2ebbf1fffa6dc6cc60d



More information about the pld-cvs-commit mailing list