summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2020-02-03 07:00:04 +0100
committerMichał Górny <mgorny@gentoo.org>2020-02-03 07:03:30 +0100
commit765fd34f5b58a9b9bf31b5002515314e5aee2879 (patch)
tree95f89d04f1d4c1609cad9eaaca45478f7b828873 /sci-libs/vecmath-objectclub/vecmath-objectclub-1.14.ebuild
parentapp-benchmarks/spew: Remove last-rited pkg (diff)
downloadgentoo-765fd34f5b58a9b9bf31b5002515314e5aee2879.tar.gz
gentoo-765fd34f5b58a9b9bf31b5002515314e5aee2879.tar.bz2
gentoo-765fd34f5b58a9b9bf31b5002515314e5aee2879.zip
sci-libs/vecmath-objectclub: Remove last-rited pkg
Closes: https://bugs.gentoo.org/568364 Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'sci-libs/vecmath-objectclub/vecmath-objectclub-1.14.ebuild')
-rw-r--r--sci-libs/vecmath-objectclub/vecmath-objectclub-1.14.ebuild39
1 files changed, 0 insertions, 39 deletions
diff --git a/sci-libs/vecmath-objectclub/vecmath-objectclub-1.14.ebuild b/sci-libs/vecmath-objectclub/vecmath-objectclub-1.14.ebuild
deleted file mode 100644
index 8d0a0986818f..000000000000
--- a/sci-libs/vecmath-objectclub/vecmath-objectclub-1.14.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit java-pkg-2
-
-MY_PN="${PN/-objectclub/1.2}"
-
-DESCRIPTION="Unofficial free implementation of Sun javax.vecmath by Kenji Hiranabe"
-HOMEPAGE="http://www.objectclub.jp/download/vecmath_e"
-SRC_URI="http://www.objectclub.jp/download/files/vecmath/${MY_PN}-${PV}.tar.gz"
-
-LICENSE="HPND"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE=""
-
-DEPEND=">=virtual/jdk-1.4"
-RDEPEND=">=virtual/jre-1.4"
-
-S="${WORKDIR}/${MY_PN}-${PV}"
-
-src_prepare() {
- mkdir classes
-}
-
-src_compile() {
- find javax/ -name "*.java" > "${T}/src.list"
- ejavac -d "${S}/classes" "@${T}/src.list"
-
- cd classes
- jar -cf "${S}"/${PN}.jar * || die "failed to create jar"
-}
-
-src_install() {
- java-pkg_dojar ${PN}.jar
- dodoc README
-}