diff options
Diffstat (limited to 'dev-util/cmake/cmake-2.4.3.ebuild')
-rw-r--r-- | dev-util/cmake/cmake-2.4.3.ebuild | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/dev-util/cmake/cmake-2.4.3.ebuild b/dev-util/cmake/cmake-2.4.3.ebuild deleted file mode 100644 index ca5f7d50a76e..000000000000 --- a/dev-util/cmake/cmake-2.4.3.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# 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.3.ebuild,v 1.9 2006/12/08 01:09:52 jer 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 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd" -IUSE="" - -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} -} |