diff options
author | Robert Buchholz <rbu@gentoo.org> | 2008-10-08 12:19:04 +0000 |
---|---|---|
committer | Robert Buchholz <rbu@gentoo.org> | 2008-10-08 12:19:04 +0000 |
commit | 2ce3d7173de645f9ba2d79553ce4eb8317e999f8 (patch) | |
tree | 2dd4b4c18756472d84368f2abf8003dbab8aa29f /net-firewall/ipsec-tools | |
parent | Add FDL-1.2 to LICENSE. (diff) | |
download | gentoo-2-2ce3d7173de645f9ba2d79553ce4eb8317e999f8.tar.gz gentoo-2-2ce3d7173de645f9ba2d79553ce4eb8317e999f8.tar.bz2 gentoo-2-2ce3d7173de645f9ba2d79553ce4eb8317e999f8.zip |
Patch by Roy Marples: ipsec-tools should check for NULL crypto in kernel (bug #223319)
(Portage version: 2.2_rc11/cvs/Linux 2.6.25-gentoo-r6 x86_64)
Diffstat (limited to 'net-firewall/ipsec-tools')
-rw-r--r-- | net-firewall/ipsec-tools/ChangeLog | 6 | ||||
-rw-r--r-- | net-firewall/ipsec-tools/ipsec-tools-0.7.1.ebuild | 9 |
2 files changed, 12 insertions, 3 deletions
diff --git a/net-firewall/ipsec-tools/ChangeLog b/net-firewall/ipsec-tools/ChangeLog index 2aa056b9a8a8..fdce18a45521 100644 --- a/net-firewall/ipsec-tools/ChangeLog +++ b/net-firewall/ipsec-tools/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-firewall/ipsec-tools # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ChangeLog,v 1.63 2008/09/09 21:22:55 dragonheart Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ChangeLog,v 1.64 2008/10/08 12:19:04 rbu Exp $ + + 08 Oct 2008; Robert Buchholz <rbu@gentoo.org> ipsec-tools-0.7.1.ebuild: + Patch by Roy Marples: ipsec-tools should check for NULL crypto in kernel + (bug #223319) *ipsec-tools-0.7.1 (09 Sep 2008) diff --git a/net-firewall/ipsec-tools/ipsec-tools-0.7.1.ebuild b/net-firewall/ipsec-tools/ipsec-tools-0.7.1.ebuild index 3eeeb7d00576..c5052d711ef4 100644 --- a/net-firewall/ipsec-tools/ipsec-tools-0.7.1.ebuild +++ b/net-firewall/ipsec-tools/ipsec-tools-0.7.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.7.1.ebuild,v 1.1 2008/09/09 21:22:55 dragonheart Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.7.1.ebuild,v 1.2 2008/10/08 12:19:04 rbu Exp $ inherit eutils flag-o-matic autotools linux-info @@ -131,7 +131,12 @@ kernel_check() { else einfo "....[INET6_XFRM_MODE_BEET] IPv6: IPsec BEET mode is enabled :-)" fi - fi + if ! { linux_chkconfig_present CRYPTO_NULL; }; then + ewarn "[CRYPTO_NULL] Crypto: NULL algorithm is NOT enabled" + else + einfo "....[CRYPTO_NULL] Cyrpto: Crypto NULL algorithm enabled :-)" + fi +fi # }}} eend $? |