From 0dd6384c0045389b8be34ef5c1aba9c68cfcc61a Mon Sep 17 00:00:00 2001 From: Andrey Grozin Date: Sun, 17 Feb 2019 18:36:59 +0700 Subject: [PATCH] sci-mathematics/reduce: removed Package-Manager: Portage-2.3.60, Repoman-2.3.12 Signed-off-by: Andrey Grozin --- sci-mathematics/reduce/Manifest | 1 - .../reduce/files/64reduce-gentoo.el | 4 - sci-mathematics/reduce/files/csl | 2 - sci-mathematics/reduce/files/redcsl | 2 - sci-mathematics/reduce/metadata.xml | 15 --- .../reduce/reduce-20110414-r1.ebuild | 94 ------------------- 6 files changed, 118 deletions(-) delete mode 100644 sci-mathematics/reduce/Manifest delete mode 100644 sci-mathematics/reduce/files/64reduce-gentoo.el delete mode 100644 sci-mathematics/reduce/files/csl delete mode 100644 sci-mathematics/reduce/files/redcsl delete mode 100644 sci-mathematics/reduce/metadata.xml delete mode 100644 sci-mathematics/reduce/reduce-20110414-r1.ebuild diff --git a/sci-mathematics/reduce/Manifest b/sci-mathematics/reduce/Manifest deleted file mode 100644 index be492f9c3714..000000000000 --- a/sci-mathematics/reduce/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST reduce-src-20110414.tar.bz2 136783974 BLAKE2B ace4ba8dc131e558b192768f3ae3cd035a36e33b77c57d7b19447d6d798ca4406e14a7938916b1251428d41b14dc8ed6bba6f1e79997bcb2d8997d47270d9496 SHA512 c54c1e069b8dc5aaee2692be26c8932a26d5963adeda56f933e6136c598d7b7e506bce88d7d2eb464ebd9a2dac3cbab2b673e213d8bf52f3ff631c71f9200d11 diff --git a/sci-mathematics/reduce/files/64reduce-gentoo.el b/sci-mathematics/reduce/files/64reduce-gentoo.el deleted file mode 100644 index 2c20bff93ede..000000000000 --- a/sci-mathematics/reduce/files/64reduce-gentoo.el +++ /dev/null @@ -1,4 +0,0 @@ -;; site-init for sci-mathematics/reduce -(add-to-list 'load-path "@SITELISP@") -(autoload 'reduce-mode "reduce-mode" "Major mode for REDUCE code editing" t) -(add-to-list 'auto-mode-alist '("\\.red\\'" . reduce-mode)) diff --git a/sci-mathematics/reduce/files/csl b/sci-mathematics/reduce/files/csl deleted file mode 100644 index 895b6bd8f4a1..000000000000 --- a/sci-mathematics/reduce/files/csl +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/sh -exec /usr/lib/reduce/csl $* diff --git a/sci-mathematics/reduce/files/redcsl b/sci-mathematics/reduce/files/redcsl deleted file mode 100644 index ff40e3e073ab..000000000000 --- a/sci-mathematics/reduce/files/redcsl +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/sh -exec /usr/lib/reduce/reduce $* diff --git a/sci-mathematics/reduce/metadata.xml b/sci-mathematics/reduce/metadata.xml deleted file mode 100644 index 545b13d288c3..000000000000 --- a/sci-mathematics/reduce/metadata.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - sci-mathematics@gentoo.org - Gentoo Mathematics Project - - -A general-purpose computer algebra system. -Powerful, mature and efficient. - - - reduce-algebra - - diff --git a/sci-mathematics/reduce/reduce-20110414-r1.ebuild b/sci-mathematics/reduce/reduce-20110414-r1.ebuild deleted file mode 100644 index 34c8cf564d09..000000000000 --- a/sci-mathematics/reduce/reduce-20110414-r1.ebuild +++ /dev/null @@ -1,94 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit elisp-common multilib - -DESCRIPTION="A general-purpose computer algebra system" -HOMEPAGE=" - http://reduce-algebra.sourceforge.net/ - http://reduce-algebra.com/" -SRC_URI="mirror://sourceforge/${PN}-algebra/${PN}-src-${PV}.tar.bz2" - -SLOT="0" -LICENSE="BSD-2 X? ( LGPL-2.1 )" -KEYWORDS="~amd64 ~x86" -IUSE="doc emacs gnuplot X" - -RDEPEND=" - X? ( - x11-libs/libXrandr - x11-libs/libXcursor - x11-libs/libXft - ) - gnuplot? ( sci-visualization/gnuplot ) - emacs? ( virtual/emacs )" -DEPEND="${RDEPEND}" - -src_configure() { - # If you pass --prefix to this damn configure, - # make (not make install!) will try to install stuff - # into the live file system => sandbox violation - # Therefore, I cannot use econf here - # Also, make calls configure in maintainer mode in subdirs *by design* - # The trunk sucks less => WONTFIX until the next release - ./configure --with-csl $(use_with X gui) || die - # psl build requires Internet connection at build time - # we cannot support it -} - -src_compile() { - emake -j1 STRIP=true - - pushd cslbuild/*/csl/reduce.doc > /dev/null - rm -f *.txt *.tex || die - popd > /dev/null - - if use emacs; then - einfo "Compiling emacs lisp files" - elisp-compile generic/emacs/*.el || die "elisp-compile failed" - fi -} - -src_test() { - emake -j1 testall -} - -src_install() { - local lib="$(get_libdir)" - dodoc README BUILDING DEPENDENCY_TRACKING - pushd bin > /dev/null - cp "${FILESDIR}"/redcsl "${FILESDIR}"/csl . || die - sed -e "s/lib/${lib}/" -i redcsl || die - sed -e "s/lib/${lib}/" -i csl || die - dobin redcsl csl - popd > /dev/null - - pushd cslbuild/*/csl > /dev/null - exeinto /usr/${lib}/${PN} - doexe reduce csl - insinto /usr/$(get_libdir)/${PN} - doins reduce.img csl.img - insinto /usr/share/${PN} - doins -r ${PN}.doc - mv "${D}"usr/share/${PN}/${PN}.doc "${D}"usr/share/${PN}/doc || die - dosym /usr/share/${PN}/doc /usr/${lib}/${PN}/${PN}.doc - if use X; then - doins -r ${PN}.fonts - mv "${D}"usr/share/${PN}/${PN}.fonts "${D}"usr/share/${PN}/fonts || die - dosym /usr/share/${PN}/fonts /usr/${lib}/${PN}/${PN}.fonts - fi - popd > /dev/null - - if use doc; then - dodoc doc/util/r38.pdf - fi - - if use emacs; then - pushd generic/emacs > /dev/null - elisp-install ${PN} *.el *.elc || die "elisp-install failed" - elisp-site-file-install "${FILESDIR}/64${PN}-gentoo.el" - popd > /dev/null - fi -} -- 2.26.2