blob: 5232141ebb7a1f1fe74266dd5827f5e78a6a9a33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/cmake-2.4.2.ebuild,v 1.2 2006/05/25 03:02:59 flameeyes Exp $
inherit toolchain-funcs eutils versionator
DESCRIPTION="Cross platform Make"
HOMEPAGE="http://www.cmake.org/"
SRC_URI="http://www.cmake.org/files/v$(get_version_component_range 1-2)/${P}.tar.gz"
LICENSE="CMake"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ~mips ~ppc ~sparc ~x86 ~x86-fbsd"
IUSE=""
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-rpath-fix.patch"
}
src_compile() {
cd ${S}
tc-export CC CXX LD
./bootstrap \
--prefix=/usr \
--docdir=/share/doc/${PN} \
--datadir=/share/${PN} \
--mandir=/share/man || die "./bootstrap failed"
emake || die
}
src_test() {
einfo "Self tests broken"
make test || \
einfo "note test failure on qtwrapping was expected - nature of portage rather than a true failure"
}
src_install() {
make install DESTDIR=${D} || die "install failed"
mv ${D}usr/share/doc/cmake ${D}usr/share/doc/${PF}
}
|