20 lines
326 B
Bash
20 lines
326 B
Bash
|
# Copyright 1999-2009 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
# $Header: $
|
||
|
|
||
|
EAPI="2"
|
||
|
|
||
|
KEYWORDS="~amd64 ~x86"
|
||
|
GENPATCHES_VER="1"
|
||
|
|
||
|
inherit vmware-mod-2
|
||
|
|
||
|
pkg_setup() {
|
||
|
if kernel_is lt 2 6 25; then
|
||
|
CONFIG_CHECK=""
|
||
|
else
|
||
|
CONFIG_CHECK="UNUSED_SYMBOLS"
|
||
|
fi
|
||
|
vmware-mod-2_pkg_setup
|
||
|
}
|