| 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/linux-mod.eclass,v 1.88 2008/10/31 23:37:06 gengor Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/linux-mod.eclass,v 1.89 2008/10/31 23:43:48 gengor Exp $ |
| 4 | |
4 | |
| 5 | # Author(s): John Mylchreest <johnm@gentoo.org>, |
5 | # Author(s): John Mylchreest <johnm@gentoo.org>, |
| 6 | # Stefan Schweizer <genstef@gentoo.org> |
6 | # Stefan Schweizer <genstef@gentoo.org> |
| 7 | # Maintainer: kernel-misc@gentoo.org |
7 | # Maintainer: kernel-misc@gentoo.org |
| 8 | # |
8 | # |
| … | |
… | |
| 135 | EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst src_install src_compile pkg_postrm |
135 | EXPORT_FUNCTIONS pkg_setup pkg_preinst pkg_postinst src_install src_compile pkg_postrm |
| 136 | |
136 | |
| 137 | IUSE="kernel_linux" |
137 | IUSE="kernel_linux" |
| 138 | SLOT="0" |
138 | SLOT="0" |
| 139 | DESCRIPTION="Based on the $ECLASS eclass" |
139 | DESCRIPTION="Based on the $ECLASS eclass" |
|
|
140 | # Restrict distributed compile of kernel modules bug #167844 |
| 140 | RESTRICT="distcc" |
141 | RESTRICT="distcc" |
| 141 | RDEPEND="kernel_linux? ( virtual/modutils )" |
142 | RDEPEND="kernel_linux? ( virtual/modutils )" |
| 142 | DEPEND="${RDEPEND} |
143 | DEPEND="${RDEPEND} |
| 143 | sys-apps/sed" |
144 | sys-apps/sed" |
| 144 | |
145 | |