diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2015-05-30 14:11:49 +0000 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2015-05-30 14:11:49 +0000 |
commit | 109e88d5a6b664f3b826da3ad757b6be2ead0820 (patch) | |
tree | 738400ed807a5c272a82c7a5dd065444d421dbb8 /eclass | |
parent | Remove old. (diff) | |
download | gentoo-2-109e88d5a6b664f3b826da3ad757b6be2ead0820.tar.gz gentoo-2-109e88d5a6b664f3b826da3ad757b6be2ead0820.tar.bz2 gentoo-2-109e88d5a6b664f3b826da3ad757b6be2ead0820.zip |
Moved selinux dependency from DEPEND to RDEPEND (bug #550822). Fixed maintainer email in eclass
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 6 | ||||
-rw-r--r-- | eclass/apache-2.eclass | 10 |
2 files changed, 10 insertions, 6 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 1a7bbb126eb2..c0eef576138f 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for eclass directory # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1627 2015/05/28 06:37:16 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1628 2015/05/30 14:11:49 polynomial-c Exp $ + + 30 May 2015; Lars Wendler <polynomial-c@gentoo.org> apache-2.eclass: + Moved selinux dependency from DEPEND to RDEPEND (bug #550822). Fixed + maintainer email in eclass. 28 May 2015; Lars Wendler <polynomial-c@gentoo.org> mozconfig-v5.33.eclass: Fixed case syntax. diff --git a/eclass/apache-2.eclass b/eclass/apache-2.eclass index 9122c78b011a..b9fe6c6e1562 100644 --- a/eclass/apache-2.eclass +++ b/eclass/apache-2.eclass @@ -1,10 +1,10 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/apache-2.eclass,v 1.39 2014/08/07 07:37:54 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/apache-2.eclass,v 1.40 2015/05/30 14:11:49 polynomial-c Exp $ # @ECLASS: apache-2.eclass # @MAINTAINER: -# apache-devs@gentoo.org +# polynomial-c@gentoo.org # @BLURB: Provides a common set of functions for apache-2.x ebuilds # @DESCRIPTION: # This eclass handles apache-2.x ebuild functions such as LoadModule generation @@ -105,10 +105,10 @@ DEPEND="dev-lang/perl apache2_modules_deflate? ( sys-libs/zlib ) apache2_modules_mime? ( app-misc/mime-types ) ldap? ( =net-nds/openldap-2* ) - selinux? ( sec-policy/selinux-apache ) ssl? ( >=dev-libs/openssl-0.9.8m ) !=www-servers/apache-1*" -RDEPEND+=" ${DEPEND}" +RDEPEND+=" ${DEPEND} + selinux? ( sec-policy/selinux-apache )" PDEPEND="~app-admin/apache-tools-${PV}" S="${WORKDIR}/httpd-${PV}" |