diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-04-11 05:46:09 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-04-11 05:46:09 +0000 |
commit | 126a654a7e1d1120b55e2afc39aba7d97ac5f9fb (patch) | |
tree | 886da062fc7049d423b0dcaf9d450a3e883e6e55 /eclass/ssl-cert.eclass | |
parent | version bump (bug #43921) (Manifest recommit) (diff) | |
download | gentoo-2-126a654a7e1d1120b55e2afc39aba7d97ac5f9fb.tar.gz gentoo-2-126a654a7e1d1120b55e2afc39aba7d97ac5f9fb.tar.bz2 gentoo-2-126a654a7e1d1120b55e2afc39aba7d97ac5f9fb.zip |
Apply patch from bug #25013 to replace calls to newdepend and newrdepend
with variable setting (DEPEND=, RDEPEND=).
Diffstat (limited to 'eclass/ssl-cert.eclass')
-rw-r--r-- | eclass/ssl-cert.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/ssl-cert.eclass b/eclass/ssl-cert.eclass index 940c4aecc248..abf2d54d0433 100644 --- a/eclass/ssl-cert.eclass +++ b/eclass/ssl-cert.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ssl-cert.eclass,v 1.2 2004/04/01 22:08:35 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ssl-cert.eclass,v 1.3 2004/04/11 05:46:09 mr_bones_ Exp $ # # Author: Max Kalika <max@gentoo.org> # @@ -12,7 +12,7 @@ INHERITED="$INHERITED $ECLASS" # Conditionally depend on OpenSSL: allows inheretence # without pulling extra packages if not needed -newdepend "ssl? ( dev-libs/openssl )" +DEPEND="ssl? ( dev-libs/openssl )" # Initializes variables and generates the needed # OpenSSL configuration file and a CA serial file |