diff options
author | Mart Raudsepp <leio@gentoo.org> | 2017-02-24 01:13:15 +0200 |
---|---|---|
committer | Mart Raudsepp <leio@gentoo.org> | 2017-02-24 01:13:42 +0200 |
commit | a8cfe88d3f1945e3ca93f885c38a0b21e863cfe1 (patch) | |
tree | c27727951970115e66d266387b0d6613000d06ea /sci-visualization | |
parent | app-shells/rc: install binary in /usr/bin. (diff) | |
download | gentoo-a8cfe88d3f1945e3ca93f885c38a0b21e863cfe1.tar.gz gentoo-a8cfe88d3f1945e3ca93f885c38a0b21e863cfe1.tar.bz2 gentoo-a8cfe88d3f1945e3ca93f885c38a0b21e863cfe1.zip |
sci-visualization/fityk: remove old that use wxGTK:2.9
Acked-by: David Seifert <soap@gentoo.org>
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'sci-visualization')
-rw-r--r-- | sci-visualization/fityk/Manifest | 1 | ||||
-rw-r--r-- | sci-visualization/fityk/fityk-1.2.1.ebuild | 90 |
2 files changed, 0 insertions, 91 deletions
diff --git a/sci-visualization/fityk/Manifest b/sci-visualization/fityk/Manifest index cd2052159d5a..c79942c17343 100644 --- a/sci-visualization/fityk/Manifest +++ b/sci-visualization/fityk/Manifest @@ -1,3 +1,2 @@ -DIST fityk-1.2.1.tar.bz2 1216009 SHA256 b98c88649b72fe7bf34507caf09008090bb13d0167cb1f9d0af6cba0fbb51ee0 SHA512 c81797c8609500ae21842d5d8a0557ded98453946826e6a9dde452af8789eb6ed393162eb3414946599762953e27c8849b827fbb9a53f80330fe244c3881a40c WHIRLPOOL bb76d394ce0a182a30ac1e6dceca67cf603b7789a480e0c5aa11b70e30837c19087e01843356fb778e1999e22d77544da0936c64056b32ad37e9ea34f45252cc DIST fityk-1.2.9.tar.bz2 1370476 SHA256 615f30296e6e6ed0cad3dfe4fd139b552c25437d6afd371652de4bd12c1a89be SHA512 e6d4846a0690ea5e7b94fc067de48d67d6342ff595844d709af9f3b978bf4bd9d0095ce348716fd0053c5575b4bff5825f8f126a53bf7e11f4e6e8a2cc6ddb1a WHIRLPOOL 5f60429565d8a301bcec11be660df9c8cd69b03a94375de14215e74f56b8a878038bb0b9e81658ad5ac4fecd5ff7d127cb6ba992e19a98a21ad49941d42247a5 DIST fityk-1.3.1.tar.bz2 1518937 SHA256 3d88feb96dbdca70fbfb5f8fa994cea01e77723751e5957094ca46a0c6d511fe SHA512 4a7a65691af8b8d5b47461133b7870ea21ea04ac2ee8ee5714a6b9bab2f072baa6b5d8bf011baba09c62a7ce2dc9d60f3040cc6fdb77dc498b6e03a24fc0fe08 WHIRLPOOL cbda2c70beae7ced2b132158fa815dd662500cf83235ea39e12ab31f99fac27af4be3e632f1dc768018fc19c9bc563d62e6a08fea9c4e56d37fc382b509b47a8 diff --git a/sci-visualization/fityk/fityk-1.2.1.ebuild b/sci-visualization/fityk/fityk-1.2.1.ebuild deleted file mode 100644 index bf5d1bc01fc4..000000000000 --- a/sci-visualization/fityk/fityk-1.2.1.ebuild +++ /dev/null @@ -1,90 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -WX_GTK_VER="2.9" -GITHUB_USER="wojdyr" -PYTHON_COMPAT=( python{2_7,3_4} ) - -inherit autotools-utils fdo-mime python-r1 wxwidgets - -DESCRIPTION="General-purpose nonlinear curve fitting and data analysis" -HOMEPAGE="http://fityk.nieto.pl/" -SRC_URI="mirror://github/${GITHUB_USER}/${PN}/${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:0= ) - wxwidgets? ( >=x11-libs/wxGTK-2.9.2:2.9 )" -DEPEND="${CDEPEND} - dev-libs/boost - dev-lang/swig" -RDEPEND="${CDEPEND} - gnuplot? ( sci-visualization/gnuplot )" - -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 - python_copy_sources - if use python; then - python_compilation() { - pushd "${BUILD_DIR}"/fityk - einfo "in ${PWD}" - emake swig/_fityk.la - popd - } - python_foreach_impl python_compilation - fi -} - -src_install() { - autotools-utils_src_install - if use python; then - python_installation() { - pushd "${BUILD_DIR}"/fityk - emake DESTDIR="${D}" install-pyexecLTLIBRARIES - popd - } - python_foreach_impl python_installation - fi -} - -pkg_postinst() { - fdo-mime_desktop_database_update -} - -pkg_postrm() { - fdo-mime_desktop_database_update -} |