summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGerhard Bräunlich <wippbox@gmx.net>2017-01-14 15:18:08 +0100
committerJames Le Cuirot <chewi@gentoo.org>2017-01-15 23:00:00 +0000
commitd8cf0b51f7c564e22dd7fad314586724aabce169 (patch)
tree29787ca0685e625c16af54af5c74416885418005 /sci-visualization
parentsci-visualization/gcalc: EAPI bump 4 -> 6 (diff)
downloadgentoo-d8cf0b51f7c564e22dd7fad314586724aabce169.tar.gz
gentoo-d8cf0b51f7c564e22dd7fad314586724aabce169.tar.bz2
gentoo-d8cf0b51f7c564e22dd7fad314586724aabce169.zip
sci-visualization/gcalc: Removing EAPI 4 build
Package-Manager: portage-2.3.0 Closes: https://github.com/gentoo/gentoo/pull/3471
Diffstat (limited to 'sci-visualization')
-rw-r--r--sci-visualization/gcalc/gcalc-3.1_rc1.ebuild42
1 files changed, 0 insertions, 42 deletions
diff --git a/sci-visualization/gcalc/gcalc-3.1_rc1.ebuild b/sci-visualization/gcalc/gcalc-3.1_rc1.ebuild
deleted file mode 100644
index 0ee0c5e512ea..000000000000
--- a/sci-visualization/gcalc/gcalc-3.1_rc1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="4"
-
-inherit eutils java-pkg-2
-
-MY_P="GCalc-${PV/_/-}"
-DESCRIPTION="Java Mathematical Graphing System"
-HOMEPAGE="http://gcalc.net/"
-SRC_URI="http://gcalc.net/files/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-KEYWORDS="~amd64"
-IUSE=""
-SLOT="0"
-
-RDEPEND=">=virtual/jre-1.4
- !!sci-mathematics/gcalc"
-DEPEND=">=virtual/jdk-1.4"
-
-S="${WORKDIR}/${MY_P}"
-
-java_prepare() {
- find -name '*.jar' -exec rm -v {} + || die
-}
-
-src_compile() {
- cd src || die
- ejavac $(find . -name '*.java')
-
- jar cf ${PN}.jar resources pluginlist.xml $(find . -name '*.class') || die
-}
-
-src_install() {
- java-pkg_dojar src/${PN}.jar
- java-pkg_dolauncher gcalc --main net.gcalc.calc.GCalc
-
- newicon src/resources/gicon.png ${PN}.png || die
- make_desktop_entry ${PN} "GCalc Java Mathematical Graphing System"
-}