diff options
author | Ingmar Vanhassel <ingmar@gentoo.org> | 2008-01-14 07:33:56 +0000 |
---|---|---|
committer | Ingmar Vanhassel <ingmar@gentoo.org> | 2008-01-14 07:33:56 +0000 |
commit | 2c09e0a0d7a73bda29911f8f8cb8702738ec8f85 (patch) | |
tree | 5f401c86e4ab1780072b2aba06126097236aaf1b /dev-util/cmake | |
parent | initial import, thanks to people in bug #153027 (diff) | |
download | gentoo-2-2c09e0a0d7a73bda29911f8f8cb8702738ec8f85.tar.gz gentoo-2-2c09e0a0d7a73bda29911f8f8cb8702738ec8f85.tar.bz2 gentoo-2-2c09e0a0d7a73bda29911f8f8cb8702738ec8f85.zip |
Bump to latest RC.
(Portage version: 2.1.4)
Diffstat (limited to 'dev-util/cmake')
-rw-r--r-- | dev-util/cmake/ChangeLog | 8 | ||||
-rw-r--r-- | dev-util/cmake/cmake-2.4.8_rc12.ebuild | 105 | ||||
-rw-r--r-- | dev-util/cmake/files/digest-cmake-2.4.8_rc12 | 3 |
3 files changed, 115 insertions, 1 deletions
diff --git a/dev-util/cmake/ChangeLog b/dev-util/cmake/ChangeLog index 6adb54a36002..6bd144f87087 100644 --- a/dev-util/cmake/ChangeLog +++ b/dev-util/cmake/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-util/cmake # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v 1.67 2008/01/13 15:16:39 philantrop Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v 1.68 2008/01/14 07:33:55 ingmar Exp $ + +*cmake-2.4.8_rc12 (14 Jan 2008) + + 14 Jan 2008; Ingmar Vanhassel <ingmar@gentoo.org> + +cmake-2.4.8_rc12.ebuild: + Bump to latest RC. 13 Jan 2008; Wulf C. Krueger <philantrop@gentoo.org> cmake-2.4.7-r2.ebuild: diff --git a/dev-util/cmake/cmake-2.4.8_rc12.ebuild b/dev-util/cmake/cmake-2.4.8_rc12.ebuild new file mode 100644 index 000000000000..8f0c60f6854d --- /dev/null +++ b/dev-util/cmake/cmake-2.4.8_rc12.ebuild @@ -0,0 +1,105 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/cmake-2.4.8_rc12.ebuild,v 1.1 2008/01/14 07:33:55 ingmar Exp $ + +inherit elisp-common toolchain-funcs eutils versionator qt3 flag-o-matic + +MY_PV="${PV/rc/RC-}" +MY_P="${PN}-$(replace_version_separator 3 - ${MY_PV})" + +DESCRIPTION="Cross platform Make" +HOMEPAGE="http://www.cmake.org/" +SRC_URI="http://www.cmake.org/files/v$(get_version_component_range 1-2)/${MY_P}.tar.gz" + +LICENSE="CMake" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd" +IUSE="emacs vim-syntax" + +DEPEND=">=net-misc/curl-7.16.4 + >=dev-libs/expat-2.0.1 + >=dev-libs/libxml2-2.6.28 + >=dev-libs/xmlrpc-c-1.06.09 + emacs? ( virtual/emacs ) + vim-syntax? ( || ( + app-editors/vim + app-editors/gvim ) )" +RDEPEND="${DEPEND}" + +SITEFILE="50${PN}-gentoo.el" +VIMFILE="${PN}.vim" + +S="${WORKDIR}/${MY_P}" + +pkg_setup() { + if ! built_with_use dev-libs/xmlrpc-c libwww && ! built_with_use dev-libs/xmlrpc-c curl ; then + echo + eerror "${PN} requires dev-libs/xmlrpc-c to be built with either the 'libwww' or" + eerror "the 'curl' USE flag or both enabled." + eerror "Please re-emerge dev-libs/xmlrpc-c with USE=\"libwww\" or USE=\"curl\"." + echo + die "Please re-emerge dev-libs/xmlrpc-c with USE=\"libwww\" or USE=\"curl\"." + fi +} + +src_unpack() { + unpack ${A} + cd "${S}" + + # Upstream's version is broken. Reported in upstream bugs 3498, 3637, 4145. + # Fixed version kindly provided on 4145 by Axel Roebel. + cp "${FILESDIR}/FindSWIG.cmake" "${S}/Modules/" +} + +src_compile() { + if [[ "$(gcc-major-version)" -eq "3" ]] ; then + append-flags "-fno-stack-protector" + fi + + tc-export CC CXX LD + + append-ldflags -Wl,--no-as-needed + + ./bootstrap \ + --system-libs \ + --prefix=/usr \ + --docdir=/share/doc/${PN} \ + --datadir=/share/${PN} \ + --mandir=/share/man || die "./bootstrap failed" + emake || die + if use emacs; then + elisp-compile Docs/cmake-mode.el || die "elisp compile failed" + fi +} + +src_test() { + emake test || \ + einfo "note test failure on qtwrapping was expected - nature of portage rather than a true failure" +} + +src_install() { + emake install DESTDIR="${D}" || die "install failed" + mv "${D}usr/share/doc/cmake" "${D}usr/share/doc/${PF}" + if use emacs; then + elisp-install ${PN} Docs/cmake-mode.el Docs/cmake-mode.elc || die "elisp-install failed" + elisp-site-file-install "${FILESDIR}/${SITEFILE}" + fi + if use vim-syntax; then + insinto /usr/share/vim/vimfiles/syntax + doins "${S}"/Docs/cmake-syntax.vim + + insinto /usr/share/vim/vimfiles/indent + doins "${S}"/Docs/cmake-indent.vim + + insinto /usr/share/vim/vimfiles/ftdetect + doins "${FILESDIR}/${VIMFILE}" + fi +} + +pkg_postinst() { + use emacs && elisp-site-regen +} + +pkg_postrm() { + use emacs && elisp-site-regen +} diff --git a/dev-util/cmake/files/digest-cmake-2.4.8_rc12 b/dev-util/cmake/files/digest-cmake-2.4.8_rc12 new file mode 100644 index 000000000000..ccb6d3fa54c4 --- /dev/null +++ b/dev-util/cmake/files/digest-cmake-2.4.8_rc12 @@ -0,0 +1,3 @@ +MD5 a848e4fc817a5286d9b9458dce12deca cmake-2.4.8-RC-12.tar.gz 2607758 +RMD160 760061564b47dffd63b222b52928fe0f622852e4 cmake-2.4.8-RC-12.tar.gz 2607758 +SHA256 425716211540e8d960a46955643ff5dff5cad93f2343a3d87f3383fc388f0bba cmake-2.4.8-RC-12.tar.gz 2607758 |