diff options
Diffstat (limited to 'sys-process/audit')
-rw-r--r-- | sys-process/audit/ChangeLog | 5 | ||||
-rw-r--r-- | sys-process/audit/audit-2.1.3-r1.ebuild | 5 |
2 files changed, 7 insertions, 3 deletions
diff --git a/sys-process/audit/ChangeLog b/sys-process/audit/ChangeLog index d427bd360bf2..2f131cbb317d 100644 --- a/sys-process/audit/ChangeLog +++ b/sys-process/audit/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-process/audit # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-process/audit/ChangeLog,v 1.82 2012/12/18 21:57:17 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-process/audit/ChangeLog,v 1.83 2012/12/21 13:47:44 pinkbyte Exp $ + + 21 Dec 2012; Sergey Popov <pinkbyte@gentoo.org> audit-2.1.3-r1.ebuild: + Fix pkg_preinst function, wrt bug #447954 (non-maintainer commit) *audit-1.7.18 (18 Dec 2012) diff --git a/sys-process/audit/audit-2.1.3-r1.ebuild b/sys-process/audit/audit-2.1.3-r1.ebuild index eced9d7ffd88..e102f986290c 100644 --- a/sys-process/audit/audit-2.1.3-r1.ebuild +++ b/sys-process/audit/audit-2.1.3-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-process/audit/audit-2.1.3-r1.ebuild,v 1.9 2012/12/18 19:27:31 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-process/audit/audit-2.1.3-r1.ebuild,v 1.10 2012/12/21 13:47:44 pinkbyte Exp $ EAPI="3" PYTHON_DEPEND="python? 2" @@ -156,7 +156,8 @@ src_install() { } pkg_preinst() { - default +# default functions is missing for pkg_preinst in EAPI 3 +# default # Preserve from the audit-1 series preserve_old_lib /$(get_libdir)/libau{dit,parse}.so.0 } |