| 1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2004 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/ssl-cert.eclass,v 1.6 2005/07/06 20:20:04 agriffis Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/ssl-cert.eclass,v 1.7 2005/07/06 20:23:20 agriffis Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: Max Kalika <max@gentoo.org> |
5 | # Author: Max Kalika <max@gentoo.org> |
| 6 | # |
6 | # |
| 7 | # This eclass implements standard installation procedure for installing |
7 | # This eclass implements standard installation procedure for installing |
| 8 | # self-signed SSL certificates. |
8 | # self-signed SSL certificates. |
| 9 | |
9 | |
| 10 | INHERITED="$INHERITED $ECLASS" |
|
|
| 11 | |
10 | |
| 12 | # Conditionally depend on OpenSSL: allows inheretence |
11 | # Conditionally depend on OpenSSL: allows inheretence |
| 13 | # without pulling extra packages if not needed |
12 | # without pulling extra packages if not needed |
| 14 | DEPEND="ssl? ( dev-libs/openssl )" |
13 | DEPEND="ssl? ( dev-libs/openssl )" |
| 15 | |
14 | |