summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2020-06-22 01:02:41 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2020-06-22 01:12:52 +0200
commitab590352608362ebabf490c414124ab8025c625a (patch)
tree918bf34f071be419541a0a0c61201a2b1336e054 /sci-visualization
parentnet-im/signal-desktop-bin: remove old version (diff)
downloadgentoo-ab590352608362ebabf490c414124ab8025c625a.tar.gz
gentoo-ab590352608362ebabf490c414124ab8025c625a.tar.bz2
gentoo-ab590352608362ebabf490c414124ab8025c625a.zip
sci-visualization/fityk: Drop 1.2.9, EAPI5--
Package-Manager: Portage-2.3.101, Repoman-2.3.22 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'sci-visualization')
-rw-r--r--sci-visualization/fityk/Manifest1
-rw-r--r--sci-visualization/fityk/fityk-1.2.9.ebuild92
2 files changed, 0 insertions, 93 deletions
diff --git a/sci-visualization/fityk/Manifest b/sci-visualization/fityk/Manifest
index 00001da66de2..76f11e9286ba 100644
--- a/sci-visualization/fityk/Manifest
+++ b/sci-visualization/fityk/Manifest
@@ -1,2 +1 @@
-DIST fityk-1.2.9.tar.bz2 1370476 BLAKE2B 30cc6f640bcf3323d592563ce153a47a0e2770f70d0a0cf8ff6a886b1e86421e370cbc142ed89914eb63ed32e35cc6c67c1297bd8680e022ed58697ebe174e5e SHA512 e6d4846a0690ea5e7b94fc067de48d67d6342ff595844d709af9f3b978bf4bd9d0095ce348716fd0053c5575b4bff5825f8f126a53bf7e11f4e6e8a2cc6ddb1a
DIST fityk-1.3.1.tar.bz2 1518937 BLAKE2B 6eb13646e1b5cf3fb0763bcf3e91a1877d89f14f1b986f1065fd27052e7110b357c99431a326a6c1fa2ba002300912b922cd3d5589ac5da367d2fbcee209f9a2 SHA512 4a7a65691af8b8d5b47461133b7870ea21ea04ac2ee8ee5714a6b9bab2f072baa6b5d8bf011baba09c62a7ce2dc9d60f3040cc6fdb77dc498b6e03a24fc0fe08
diff --git a/sci-visualization/fityk/fityk-1.2.9.ebuild b/sci-visualization/fityk/fityk-1.2.9.ebuild
deleted file mode 100644
index 6f6ef3beea26..000000000000
--- a/sci-visualization/fityk/fityk-1.2.9.ebuild
+++ /dev/null
@@ -1,92 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-WX_GTK_VER="3.0"
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit autotools-utils fdo-mime python-r1 wxwidgets
-
-DESCRIPTION="General-purpose nonlinear curve fitting and data analysis"
-HOMEPAGE="http://fityk.nieto.pl/"
-SRC_URI="https://github.com/wojdyr/${PN}/releases/download/v${PV}/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="gnuplot nlopt readline python static-libs wxwidgets"
-
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-CDEPEND="
- >=sci-libs/xylib-1
- >=dev-lang/lua-5.1:0
- nlopt? ( sci-libs/nlopt )
- python? ( ${PYTHON_DEPS} )
- readline? ( sys-libs/readline:* )
- wxwidgets? ( x11-libs/wxGTK:${WX_GTK_VER} )"
-DEPEND="${CDEPEND}
- dev-libs/boost
- dev-lang/swig"
-RDEPEND="${CDEPEND}
- gnuplot? ( sci-visualization/gnuplot )"
-
-src_prepare() {
- use python && python_copy_sources
- autotools-utils_src_prepare
-}
-
-src_configure() {
- local myeconfargs=(
- --docdir="${EPREFIX}/usr/share/doc/${PF}"
- --disable-xyconvert
- --disable-python
- $(use_enable nlopt)
- $(use_enable wxwidgets GUI)
- $(use_with readline)
- )
- autotools-utils_src_configure
- if use python; then
- myeconfargs=(
- --disable-xyconvert
- --enable-python
- --disable-nlopt
- --disable-GUI
- --without-readline )
- python_foreach_impl autotools-utils_src_configure
- fi
-}
-
-src_compile() {
- autotools-utils_src_compile
- if use python; then
- python_compilation() {
- cd "${BUILD_DIR}"/fityk || die
- einfo "in ${PWD}"
- emake swig/_fityk.la
- }
- python_foreach_impl python_compilation
- fi
-}
-
-src_install() {
- autotools-utils_src_install
- if use python; then
- python_installation() {
- cd "${BUILD_DIR}"/fityk || die
- emake DESTDIR="${D}" install-pyexecLTLIBRARIES
- rm "${D}"/$(python_get_sitedir)/*.la || die
- }
- python_foreach_impl python_installation
- fi
-}
-
-pkg_postinst() {
- fdo-mime_desktop_database_update
-}
-
-pkg_postrm() {
- fdo-mime_desktop_database_update
-}