summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalph Sennhauser <sera@gentoo.org>2012-01-20 13:26:19 +0000
committerRalph Sennhauser <sera@gentoo.org>2012-01-20 13:26:19 +0000
commitfabf299b112906698295c5881b67e0c7310a904f (patch)
tree87acfc6a7e45bee56022921ce6ef949b94d765eb /dev-java
parentStable for AMD64, wrt bug #397849 (diff)
downloadgentoo-2-fabf299b112906698295c5881b67e0c7310a904f.tar.gz
gentoo-2-fabf299b112906698295c5881b67e0c7310a904f.tar.bz2
gentoo-2-fabf299b112906698295c5881b67e0c7310a904f.zip
Remove old. Gets rid of dependency on dev-java/servletapi. #Bug 398689
(Portage version: 2.1.10.44/cvs/Linux x86_64)
Diffstat (limited to 'dev-java')
-rw-r--r--dev-java/javahelp/ChangeLog7
-rw-r--r--dev-java/javahelp/javahelp-2.0.02_p46.ebuild87
2 files changed, 5 insertions, 89 deletions
diff --git a/dev-java/javahelp/ChangeLog b/dev-java/javahelp/ChangeLog
index 0ce08f9e7e6f..0ad2a9008703 100644
--- a/dev-java/javahelp/ChangeLog
+++ b/dev-java/javahelp/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-java/javahelp
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/javahelp/ChangeLog,v 1.20 2011/12/27 18:46:17 halcy0n Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-java/javahelp/ChangeLog,v 1.21 2012/01/20 13:26:19 sera Exp $
+
+ 20 Jan 2012; Ralph Sennhauser <sera@gentoo.org> -javahelp-2.0.02_p46.ebuild:
+ Remove old. Gets rid of dependency on dev-java/servletapi. #Bug 398689
27 Dec 2011; Mark Loeser <halcy0n@gentoo.org> javahelp-2.0.02_p46.ebuild,
javahelp-2.0.05_p63.ebuild:
diff --git a/dev-java/javahelp/javahelp-2.0.02_p46.ebuild b/dev-java/javahelp/javahelp-2.0.02_p46.ebuild
deleted file mode 100644
index cc03eac646e6..000000000000
--- a/dev-java/javahelp/javahelp-2.0.02_p46.ebuild
+++ /dev/null
@@ -1,87 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/javahelp/javahelp-2.0.02_p46.ebuild,v 1.12 2011/12/27 18:46:17 halcy0n Exp $
-
-WANT_ANT_TASKS="ant-nodeps"
-JAVA_PKG_IUSE="doc examples source"
-
-inherit versionator java-pkg-2 java-ant-2
-
-DESCRIPTION="The JavaHelp system online help system"
-HOMEPAGE="https://javahelp.dev.java.net/"
-
-MY_PV="${PV/_p/_svn}"
-MY_PN="${PN}2"
-SRC_URI="https://${PN}.dev.java.net/files/documents/5985/47404/${MY_PN}-src-${MY_PV}.zip"
-
-LICENSE="GPL-2-with-linking-exception"
-SLOT="0"
-KEYWORDS="amd64 ppc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris"
-
-COMMON_DEP="
- =dev-java/servletapi-2.4*"
-RDEPEND="
- >=virtual/jre-1.4
- ${COMMON_DEP}"
-DEPEND="
- >=virtual/jdk-1.4
- app-arch/unzip
- ${COMMON_DEP}
- "
-
-S="${WORKDIR}/${MY_PN}-${MY_PV}/"
-BDIR="${S}/javahelp_nbproject"
-
-src_unpack() {
- unpack "${A}"
- # jdic does not currently build out of the box against the browsers we have
- cd "${S}/jhMaster/JavaHelp/src/new/" || die
- rm -v javax/help/plaf/basic/BasicNativeContentViewerUI.java || die
- cd "${BDIR}/lib" || die
- java-pkg_jar-from servletapi-2.4
- java-pkg_filter-compiler jikes
-}
-
-_eant() {
- cd ${BDIR} || die
- eant \
- -Dservlet-jar="$(java-pkg_getjar servletapi-2.4 servlet-api.jar)" \
- -Djsp-jar="$(java-pkg_getjar servletapi-2.4 jsp-api.jar)" \
- -Djdic-jar-present=true \
- -Djdic-zip-present=true \
- -Dtomcat-zip-present=true \
- -Dservlet-jar-present=true \
- ${@}
-}
-
-src_compile() {
- _eant release $(use_doc)
-}
-
-#Does not actually run anything
-#src_test() {
-# _eant test
-#}
-
-src_install() {
- cd jhMaster/JavaHelp || die
- dodoc README || die
- dohtml *.{html,css} || die
- java-pkg_dojar "${BDIR}"/dist/lib/*.jar
- java-pkg_dolauncher jhsearch \
- --main com.sun.java.help.search.QueryEngine
- java-pkg_dolauncher jhindexer \
- --main com.sun.java.help.search.Indexer
- use doc && java-pkg_dojavadoc "${BDIR}/dist/lib/javadoc"
- cd "${S}"
- use source && java-pkg_dosrc \
- ./jhMaster/JSearch/*/com \
- ./jhMaster/JavaHelp/src/*/{javax,com}
- use examples && java-pkg_doexamples jhMaster/JavaHelp/demos
-}
-
-pkg_postinst() {
- elog "Native browser integration is disabled because it needs jdic"
- elog "which does not build out of the box. See"
- elog "https://bugs.gentoo.org/show_bug.cgi?id=53897 for progress"
-}