| 1 | # Copyright 1999-2007 Gentoo Foundation |
1 | # Copyright 1999-2007 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/cmake-utils.eclass,v 1.13 2008/10/27 14:38:38 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/cmake-utils.eclass,v 1.14 2008/10/28 17:39:28 scarabeus Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: cmake-utils.eclass |
5 | # @ECLASS: cmake-utils.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # kde@gentoo.org |
7 | # kde@gentoo.org |
| 8 | # @BLURB: common ebuild functions for cmake-based packages |
8 | # @BLURB: common ebuild functions for cmake-based packages |
| … | |
… | |
| 13 | # builds and an implementation of the well-known use_enable and use_with |
13 | # builds and an implementation of the well-known use_enable and use_with |
| 14 | # functions for CMake. |
14 | # functions for CMake. |
| 15 | |
15 | |
| 16 | # Original author: Zephyrus (zephyrus@mirach.it) |
16 | # Original author: Zephyrus (zephyrus@mirach.it) |
| 17 | |
17 | |
| 18 | inherit toolchain-funcs multilib |
18 | inherit toolchain-funcs multilib flag-o-matic |
| 19 | |
19 | |
| 20 | DESCRIPTION="Based on the ${ECLASS} eclass" |
20 | DESCRIPTION="Based on the ${ECLASS} eclass" |
| 21 | |
21 | |
| 22 | DEPEND=">=dev-util/cmake-2.4.6" |
22 | DEPEND=">=dev-util/cmake-2.4.6" |
| 23 | |
23 | |