aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Mokrejs <mmokrejs@fold.natur.cuni.cz>2019-03-25 12:50:28 +0100
committerMartin Mokrejs <mmokrejs@fold.natur.cuni.cz>2019-03-25 12:50:28 +0100
commita12a2d7f3f65eb66e44d3fc907f4b24e85ef201a (patch)
tree2e50205383240ccaee058f8a937372f71848828d /dev-java/htsjdk/htsjdk-2.1.0.ebuild
parentsci-biology/gffread: bump to 0.11.0, drop old patch, use sed hackery (diff)
downloadsci-a12a2d7f3f65eb66e44d3fc907f4b24e85ef201a.tar.gz
sci-a12a2d7f3f65eb66e44d3fc907f4b24e85ef201a.tar.bz2
sci-a12a2d7f3f65eb66e44d3fc907f4b24e85ef201a.zip
dev-java/htsjdk: drop old 2.1.0 version
Diffstat (limited to 'dev-java/htsjdk/htsjdk-2.1.0.ebuild')
-rw-r--r--dev-java/htsjdk/htsjdk-2.1.0.ebuild47
1 files changed, 0 insertions, 47 deletions
diff --git a/dev-java/htsjdk/htsjdk-2.1.0.ebuild b/dev-java/htsjdk/htsjdk-2.1.0.ebuild
deleted file mode 100644
index c94f79781..000000000
--- a/dev-java/htsjdk/htsjdk-2.1.0.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-JAVA_PKG_IUSE="doc source"
-
-inherit java-pkg-2 java-ant-2
-
-DESCRIPTION="Java API for high-throughput sequencing data (HTS) formats"
-HOMEPAGE="https://samtools.github.io/htsjdk/"
-SRC_URI="https://github.com/samtools/htsjdk/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-IUSE=""
-KEYWORDS="~amd64 ~x86"
-
-CDEPEND="dev-java/commons-jexl:2
- dev-java/commons-compress:0
- dev-java/commons-logging:0"
-
-DEPEND=">=virtual/jdk-1.8
- ${CDEPEND}"
-RDEPEND=">=virtual/jre-1.8
- ${CDEPEND}"
-
-EANT_BUILD_TARGET="all"
-EANT_NEEDS_TOOLS="true"
-JAVA_ANT_REWRITE_CLASSPATH="true"
-EANT_GENTOO_CLASSPATH="commons-jexl-2,commons-compress,commons-logging"
-
-java_prepare() {
- default
- rm -v lib/{commons-compress,commons-jexl,commons-logging}*.jar || die
-}
-
-src_install() {
- cd dist || die
-
- for i in *.jar; do
- java-pkg_newjar $i ${i/-[0-9]*.jar/.jar}
- done
-
- use source && java-pkg_dosrc "${S}"/src/java/*
- use doc && java-pkg_dojavadoc "${S}"/javadoc
-}