diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2009-03-15 16:56:09 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2009-03-15 16:56:09 +0000 |
commit | f88413898b5c7773260827708328023295552007 (patch) | |
tree | 4c7f43be8d02ee51332649de1ad1b05f5464e0dd /dev-util/cmake | |
parent | Marking pam_ssh-1.92 ppc64 for bug 261595 (diff) | |
download | gentoo-2-f88413898b5c7773260827708328023295552007.tar.gz gentoo-2-f88413898b5c7773260827708328023295552007.tar.bz2 gentoo-2-f88413898b5c7773260827708328023295552007.zip |
Remove old.
(Portage version: 2.2_rc25/cvs/Linux x86_64)
Diffstat (limited to 'dev-util/cmake')
-rw-r--r-- | dev-util/cmake/ChangeLog | 6 | ||||
-rw-r--r-- | dev-util/cmake/cmake-2.4.6-r1.ebuild | 73 | ||||
-rw-r--r-- | dev-util/cmake/cmake-2.6.2.ebuild | 113 |
3 files changed, 5 insertions, 187 deletions
diff --git a/dev-util/cmake/ChangeLog b/dev-util/cmake/ChangeLog index f3fd387ac08b..e7cb008458b8 100644 --- a/dev-util/cmake/ChangeLog +++ b/dev-util/cmake/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-util/cmake # Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v 1.87 2009/03/14 15:38:40 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v 1.88 2009/03/15 16:56:09 scarabeus Exp $ + + 15 Mar 2009; Tomas Chvatal <scarabeus@gentoo.org> -cmake-2.4.6-r1.ebuild, + -cmake-2.6.2.ebuild: + Remove old. 14 Mar 2009; Raúl Porcel <armin76@gentoo.org> cmake-2.6.2-r1.ebuild: arm/ia64/s390/sh/sparc stable wrt #259741 diff --git a/dev-util/cmake/cmake-2.4.6-r1.ebuild b/dev-util/cmake/cmake-2.4.6-r1.ebuild deleted file mode 100644 index 47f39316db13..000000000000 --- a/dev-util/cmake/cmake-2.4.6-r1.ebuild +++ /dev/null @@ -1,73 +0,0 @@ -# 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.6-r1.ebuild,v 1.11 2008/02/22 18:00:15 ingmar Exp $ - -inherit elisp-common toolchain-funcs eutils versionator qt3 flag-o-matic - -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="emacs vim-syntax" - -DEPEND="emacs? ( virtual/emacs ) - vim-syntax? ( || ( - app-editors/vim - app-editors/gvim ) )" -RDEPEND="${DEPEND}" - -SITEFILE="50${PN}-gentoo.el" -VIMFILE="${PN}.vim" - -src_compile() { - if [ "$(gcc-major-version)" -eq "3" ] ; then - append-flags "-fno-stack-protector" - fi - - tc-export CC CXX LD - ./bootstrap \ - --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() { - 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} - 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/cmake-2.6.2.ebuild b/dev-util/cmake/cmake-2.6.2.ebuild deleted file mode 100644 index e5eec3617f16..000000000000 --- a/dev-util/cmake/cmake-2.6.2.ebuild +++ /dev/null @@ -1,113 +0,0 @@ -# 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.6.2.ebuild,v 1.2 2008/12/02 23:25:37 scarabeus Exp $ - -EAPI="2" - -inherit elisp-common toolchain-funcs eutils versionator 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 qt4 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[curl] - emacs? ( virtual/emacs ) - qt4? ( || ( ( x11-libs/qt-core:4 - x11-libs/qt-gui:4 ) - >=x11-libs/qt-4.3:4 ) ) - vim-syntax? ( || ( - app-editors/vim - app-editors/gvim ) )" -RDEPEND="${DEPEND}" - -SITEFILE="50${PN}-gentoo.el" -VIMFILE="${PN}.vim" - -S="${WORKDIR}/${MY_P}" - -src_prepare() { - # Link against the shared Python library rather than the static one - epatch "${FILESDIR}/${PN}-FindPythonLibs.patch" -} - -src_configure() { - if [[ "$(gcc-major-version)" -eq "3" ]] ; then - append-flags "-fno-stack-protector" - fi - - tc-export CC CXX LD - - local qt_arg - if use qt4; then - qt_arg="--qt-gui" - else - qt_arg="--no-qt-gui" - fi - - local par_arg - echo $MAKEOPTS | egrep -o '(\-j|\-\-jobs)(=?|[[:space:]]*)[[:digit:]]+' > /dev/null - if [ $? -eq 0 ]; then - par_arg=$(echo $MAKEOPTS | egrep -o '(\-j|\-\-jobs)(=?|[[:space:]]*)[[:digit:]]+' | egrep -o '[[:digit:]]+') - par_arg="--parallel=${par_arg}" - else - par_arg="--parallel=1" - fi -} - -src_compile() { - ./bootstrap \ - --system-libs \ - --prefix=/usr \ - --docdir=/share/doc/${PF} \ - --datadir=/share/${PN} \ - --mandir=/share/man \ - "$qt_arg" \ - "$par_arg" || die "./bootstrap failed" - - emake || die "emake failed." - 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" - 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 -} |