From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 7907C1387B1 for ; Tue, 22 Sep 2015 08:19:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 545F8E087F; Tue, 22 Sep 2015 08:19:43 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 898A4E087D for ; Tue, 22 Sep 2015 08:19:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 843C6340973 for ; Tue, 22 Sep 2015 08:19:41 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C30FC239 for ; Tue, 22 Sep 2015 08:19:38 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1442907608.6c551d91e87ae3785005be586a3421c8e9aa8be7.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-mathematics/cadabra/ X-VCS-Repository: proj/sci X-VCS-Files: sci-mathematics/cadabra/cadabra-1.33.ebuild sci-mathematics/cadabra/cadabra-1.39.ebuild X-VCS-Directories: sci-mathematics/cadabra/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 6c551d91e87ae3785005be586a3421c8e9aa8be7 X-VCS-Branch: master Date: Tue, 22 Sep 2015 08:19:38 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 2922d259-9c81-4eac-9106-21180a3412db X-Archives-Hash: 79aca9d87070c58de8a8ea384ffc9478 commit: 6c551d91e87ae3785005be586a3421c8e9aa8be7 Author: Justin Lecher gentoo org> AuthorDate: Tue Sep 22 07:40:08 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Tue Sep 22 07:40:08 2015 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=6c551d91 sci-mathematics/cadabra: Fix unknown deps drop old Package-Manager: portage-2.2.21 Signed-off-by: Justin Lecher gentoo.org> sci-mathematics/cadabra/cadabra-1.33.ebuild | 88 ----------------------------- sci-mathematics/cadabra/cadabra-1.39.ebuild | 11 ++-- 2 files changed, 6 insertions(+), 93 deletions(-) diff --git a/sci-mathematics/cadabra/cadabra-1.33.ebuild b/sci-mathematics/cadabra/cadabra-1.33.ebuild deleted file mode 100644 index 5886476..0000000 --- a/sci-mathematics/cadabra/cadabra-1.33.ebuild +++ /dev/null @@ -1,88 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="5" - -inherit eutils texlive-common - -DESCRIPTION="Field-theory motivated computer algebra system" -HOMEPAGE="http://cadabra.phi-sci.com" -SRC_URI="http://cadabra.phi-sci.com/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc examples X test" - -CDEPEND=" - sci-libs/modglue - sci-mathematics/lie - dev-libs/gmp[cxx] - dev-libs/libpcre - X? ( - x11-libs/gtk+:2 - dev-cpp/gtkmm:2.4 - dev-cpp/pangomm:1.4 - app-text/dvipng )" -DEPEND="${CDEPEND} - doc? ( - app-doc/doxygen - dev-texlive/texlive-latexextra - || ( app-text/texlive-core dev-tex/pdftex ) ) - test? ( sys-process/time )" -RDEPEND="${CDEPEND} - virtual/latex-base - dev-texlive/texlive-latexrecommended" - -src_prepare(){ - # fixing the flag mess - epatch "${FILESDIR}/${PN}-1.33-FLAGS.patch" -} - -src_configure(){ - econf $(use_enable X gui) \ - --disable-runtime-dependency-check -} - -src_compile() { - default - - if use doc; then - cd "${S}/doc" - emake - cd doxygen/latex - emake pdf - fi -} - -src_install() { - # cadabra strip binaries unless you are on OS X. - # So faking it to avoid outright stripping. - emake DESTDIR="${D}" DEVDESTDIR="${D}" MACTEST=1 install - - dodoc AUTHORS ChangeLog INSTALL - - if use doc; then - cd "${S}/doc/doxygen" - dohtml html/* - dodoc latex/*.pdf - fi - - if use examples; then - dodoc -r "${S}/examples/" - fi - - rm -rf "${D}/usr/share/TeXmacs" || die -} - -pkg_postinst() { - etexmf-update - elog "This version of the cadabra ebuild is still under development." - elog "Help us improve the ebuild in:" - elog "http://bugs.gentoo.org/show_bug.cgi?id= 194393" -} - -pkg_postrm() { - etexmf-update -} diff --git a/sci-mathematics/cadabra/cadabra-1.39.ebuild b/sci-mathematics/cadabra/cadabra-1.39.ebuild index cdb3661..ce3603b 100644 --- a/sci-mathematics/cadabra/cadabra-1.39.ebuild +++ b/sci-mathematics/cadabra/cadabra-1.39.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -29,7 +29,8 @@ DEPEND="${CDEPEND} doc? ( app-doc/doxygen dev-texlive/texlive-latexextra - || ( app-text/texlive-core dev-tex/pdftex ) ) + app-text/texlive-core + ) test? ( sys-process/time )" RDEPEND="${CDEPEND} virtual/latex-base @@ -49,9 +50,9 @@ src_compile() { default if use doc; then - cd "${S}/doc" + cd "${S}/doc" || die emake - cd doxygen/latex + cd doxygen/latex || die emake pdf fi } @@ -64,7 +65,7 @@ src_install() { dodoc AUTHORS ChangeLog INSTALL if use doc; then - cd "${S}/doc/doxygen" + cd "${S}/doc/doxygen" || die dohtml html/* dodoc latex/*.pdf fi