mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-04 08:24:42 +01:00
83 lines
2.4 KiB
RPMSpec
83 lines
2.4 KiB
RPMSpec
#
|
|
# spec file for package pam_apparmor (Version 2)
|
|
#
|
|
# Copyright (c) 2005 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
# This file and all modifications and additions to the pristine
|
|
# package are under the same license as the package itself.
|
|
#
|
|
# Please submit bugfixes or comments via http://www.suse.de/feedback/
|
|
#
|
|
|
|
# norootforbuild
|
|
|
|
Name: pam_apparmor
|
|
License: GPL
|
|
Group: Productivity/Security
|
|
Autoreqprov: on
|
|
Version: @@immunix_version@@
|
|
Release: @@repo_version@@
|
|
Summary: Pam module to add AppArmor change_hat functionality
|
|
URL: http://forge.novell.com/modules/xfmod/project/?apparmor
|
|
Source: pam_apparmor-%{version}-@@repo_version@@.tar.gz
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: pam-devel
|
|
Requires: pam
|
|
Prereq: pam
|
|
|
|
%if %{?suse_version:1}0
|
|
%if 0%{?suse_version} < 1030
|
|
BuildRequires: libapparmor
|
|
%else
|
|
BuildRequires: libapparmor-devel
|
|
%endif
|
|
%else
|
|
BuildRequires: libapparmor-devel
|
|
%endif
|
|
|
|
%description
|
|
The pam_apparmor module provides the means for any pam applications that
|
|
call pam_open_session() to automatically perform an AppArmor change_hat
|
|
operation in order to switch to a user-specific security policy.
|
|
|
|
|
|
Authors:
|
|
--------
|
|
Jesse Michael jmichael@suse.de
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
make CFLAGS="${RPM_OPT_FLAGS}"
|
|
|
|
%install
|
|
[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
|
|
make install DESTDIR=${RPM_BUILD_ROOT} SECDIR=${RPM_BUILD_ROOT}/%{_lib}/security
|
|
|
|
%clean
|
|
[ "${RPM_BUILD_ROOT}" != "/" ] && rm -rf ${RPM_BUILD_ROOT}
|
|
|
|
%files
|
|
%defattr(444,root,root,755)
|
|
%doc README COPYING
|
|
%attr(555,root,root) /%{_lib}/security/pam_apparmor.so
|
|
|
|
%changelog -n pam_apparmor
|
|
* Tue Oct 31 2006 Jesse Michael <jmichael@suse.de>
|
|
- Add debug option
|
|
* Tue Oct 31 2006 Steve Beattie <sbeattie@suse.de>
|
|
- Add configuration options to order attempted hat changes
|
|
* Wed Oct 25 2006 Steve Beattie <sbeattie@suse.de>
|
|
- remove auto-editing of pam's common-session
|
|
- honor RPM's CFLAGS when building
|
|
- add license (same as Linux PAM package).
|
|
* Thu Sep 14 2006 Jesse Michael <jmichael@suse.de>
|
|
- header comment was incorrect
|
|
- use pam_get_user() instead of pam_get_item()
|
|
- fix read from urandom if 0
|
|
* Fri Jan 13 2006 Steve Beattie <sbeattie@suse.de>
|
|
- Add svn repo number to tarball
|
|
* Fri Jan 13 2006 Jesse Michael <jmichael@suse.de>
|
|
- Make magic tokens harder to guess by pulling them from /dev/urandom
|
|
* Wed Dec 21 2005 - jmichael@suse.de
|
|
- initial
|