summaryrefslogtreecommitdiff
path: root/sci-libs/vecmath-objectclub
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2020-02-05 18:44:56 +0000
committerV3n3RiX <venerix@redcorelinux.org>2020-02-05 18:44:56 +0000
commit29aabba0ea759c6a2864ff5631735b67ee38e5e0 (patch)
treeab466b4dfa7abecb401b2f8039d08af4689306bb /sci-libs/vecmath-objectclub
parentd42200bec37eef2a7478d88988ff00addd0a9202 (diff)
gentoo resync : 05.02.2020
Diffstat (limited to 'sci-libs/vecmath-objectclub')
-rw-r--r--sci-libs/vecmath-objectclub/Manifest3
-rw-r--r--sci-libs/vecmath-objectclub/metadata.xml17
-rw-r--r--sci-libs/vecmath-objectclub/vecmath-objectclub-1.14.ebuild39
3 files changed, 0 insertions, 59 deletions
diff --git a/sci-libs/vecmath-objectclub/Manifest b/sci-libs/vecmath-objectclub/Manifest
deleted file mode 100644
index dac44dd54980..000000000000
--- a/sci-libs/vecmath-objectclub/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST vecmath1.2-1.14.tar.gz 75291 BLAKE2B 4201dd1f24404e557d79d797e29587fc1351005cfe0da7f396614263d26cc2753385eefdd86437315ca30da2ed4ed34e0aebe700f43d32c3287da8c31173e23d SHA512 b61c60c4c8341327a7494475da380685220a6ecf193f4005bbe9ac2b9c98b5f587607c136ac8ba19425ba57c9d19d2994c1f474ca4cfa3f5a06cebb7d1c5c020
-EBUILD vecmath-objectclub-1.14.ebuild 825 BLAKE2B 1ed12b553da4b2c36ec87a16a728bbbb1db92703a0fca15d899e2b238f12853d91749a5689eac9e7dedf164fbebe73f9d1ee8368dcfd3d1fa5e185ad134ffdff SHA512 b646d86f84f5c893af3a277017b956e0e9fe23c7ff82aa3d790b93beb03e93db017353e852024903215730321fef99c4b3769f3f8743943c7b547eea2b795260
-MISC metadata.xml 743 BLAKE2B 2f80e03c638540f77e30f0b819e4920cfdf0681f016c3821bc4159d08431d896d00c3e195b1b534c07ea3164057c8bfa1e338ecb74d2a296577f2f6f5b803bb3 SHA512 77534c2084b740b4cdbe6ce6cdb9c8f9a57d95324a2a0e2240c5a0b9edf34d7292b047b5c0509135d56a583cf41d0370342c646aaf4275bb66443d6f2a4cf2e2
diff --git a/sci-libs/vecmath-objectclub/metadata.xml b/sci-libs/vecmath-objectclub/metadata.xml
deleted file mode 100644
index 6eb27f16c309..000000000000
--- a/sci-libs/vecmath-objectclub/metadata.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="project">
- <email>sci@gentoo.org</email>
- <name>Gentoo Science Project</name>
-</maintainer>
-<longdescription lang="en">
- This is unofficial implementation(java source code) of the
- javax.vecmath package specified in the Java(TM) 3D API 1.2
- The package includes classes for 3-space vector/point, 4-space vector,
- 4x4, 3x3 matrix, quaternion, axis-angle combination and etc. which are
- often utilized for computer graphics mathematics. Most of the classes
- have single and double precision versions. Generic matrices' LU and SV
- decomposition are also there.
-</longdescription>
-</pkgmetadata>
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
-}