summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Grozin <grozin@gentoo.org>2018-09-26 16:25:29 +0700
committerAndrey Grozin <grozin@gentoo.org>2018-09-26 16:25:29 +0700
commit344af04fae327b515422a50c247526106549bdaa (patch)
treee900bd2476dda8497860214c238ea8c6d6f3f2e1 /sci-mathematics/wxmaxima/wxmaxima-16.12.2.ebuild
parentwww-client/opera-beta: Old. (diff)
downloadgentoo-344af04fae327b515422a50c247526106549bdaa.tar.gz
gentoo-344af04fae327b515422a50c247526106549bdaa.tar.bz2
gentoo-344af04fae327b515422a50c247526106549bdaa.zip
sci-mathematics/wxmaxima: cleaning old versions
Diffstat (limited to 'sci-mathematics/wxmaxima/wxmaxima-16.12.2.ebuild')
-rw-r--r--sci-mathematics/wxmaxima/wxmaxima-16.12.2.ebuild75
1 files changed, 0 insertions, 75 deletions
diff --git a/sci-mathematics/wxmaxima/wxmaxima-16.12.2.ebuild b/sci-mathematics/wxmaxima/wxmaxima-16.12.2.ebuild
deleted file mode 100644
index 7a474961e662..000000000000
--- a/sci-mathematics/wxmaxima/wxmaxima-16.12.2.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-WX_GTK_VER="3.0"
-
-inherit eutils gnome2-utils wxwidgets fdo-mime
-
-DESCRIPTION="Graphical frontend to Maxima, using the wxWidgets toolkit"
-HOMEPAGE="http://andrejv.github.io/wxmaxima/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-
-DEPEND="
- dev-libs/libxml2:2
- x11-libs/wxGTK:${WX_GTK_VER}"
-RDEPEND="${DEPEND}
- media-fonts/jsmath
- sci-visualization/gnuplot[wxwidgets]
- sci-mathematics/maxima"
-
-src_prepare() {
- local i
-
- # consistent package names
- sed -e "s:\${datadir}/wxMaxima:\${datadir}/${PN}:g" \
- -i Makefile.in data/Makefile.in test/Makefile.in || die "sed failed"
-
- sed -e 's:share/wxMaxima:share/wxmaxima:g' \
- -i src/wxMaxima.cpp src/wxMaximaFrame.cpp src/Dirstructure.cpp src/Dirstructure.h \
- || die "sed failed"
-
- # correct gettext behavior
- if [[ -n "${LINGUAS+x}" ]] ; then
- for i in $(cd "${S}"/locales ; echo *.mo) ; do
- if ! has ${i%.mo} ${LINGUAS} ; then
- sed -i \
- -e "/^WXMAXIMA_LINGUAS/s# ${i%.mo}##" \
- -e "/^WXWIN_LINGUAS/s# ${i%.mo}##" \
- locales/Makefile.in || die
- fi
- done
- fi
-}
-
-src_configure() {
- econf \
- --enable-printing \
- --with-wx-config=${WX_CONFIG}
-}
-
-src_install () {
- default
- doicon -s 128 data/wxmaxima.png
- make_desktop_entry wxmaxima wxMaxima wxmaxima
- dosym /usr/share/${PN}/README /usr/share/doc/${PF}/README
-}
-
-pkg_preinst() {
- gnome2_icon_savelist
-}
-
-pkg_postinst() {
- gnome2_icon_cache_update
- fdo-mime_desktop_database_update
-}
-
-pkg_postrm() {
- gnome2_icon_cache_update
- fdo-mime_desktop_database_update
-}