diff options
author | Ralph Sennhauser <sera@gentoo.org> | 2014-08-03 13:43:00 +0000 |
---|---|---|
committer | Ralph Sennhauser <sera@gentoo.org> | 2014-08-03 13:43:00 +0000 |
commit | 856ea81fe4cb2eac85f2f2a40a6a265c4d01b373 (patch) | |
tree | 600caa37a084485b55aec6d149c1e5f319cf6717 /dev-java/gjdoc | |
parent | Remove old (diff) | |
download | gentoo-2-856ea81fe4cb2eac85f2f2a40a6a265c4d01b373.tar.gz gentoo-2-856ea81fe4cb2eac85f2f2a40a6a265c4d01b373.tar.bz2 gentoo-2-856ea81fe4cb2eac85f2f2a40a6a265c4d01b373.zip |
Remove old
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 3C5CF75A)
Diffstat (limited to 'dev-java/gjdoc')
-rw-r--r-- | dev-java/gjdoc/ChangeLog | 7 | ||||
-rw-r--r-- | dev-java/gjdoc/gjdoc-0.7.9-r1.ebuild | 72 |
2 files changed, 5 insertions, 74 deletions
diff --git a/dev-java/gjdoc/ChangeLog b/dev-java/gjdoc/ChangeLog index 9e0cdf1d3b98..d8ad1e3a0d7f 100644 --- a/dev-java/gjdoc/ChangeLog +++ b/dev-java/gjdoc/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-java/gjdoc -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/gjdoc/ChangeLog,v 1.49 2012/05/11 02:52:38 aballier Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/gjdoc/ChangeLog,v 1.50 2014/08/03 13:42:59 sera Exp $ + + 03 Aug 2014; Ralph Sennhauser <sera@gentoo.org> -gjdoc-0.7.9-r1.ebuild: + Remove old 11 May 2012; Alexis Ballier <aballier@gentoo.org> gjdoc-0.7.9-r2.ebuild: keyword ~amd64-fbsd diff --git a/dev-java/gjdoc/gjdoc-0.7.9-r1.ebuild b/dev-java/gjdoc/gjdoc-0.7.9-r1.ebuild deleted file mode 100644 index 86fbc07e7476..000000000000 --- a/dev-java/gjdoc/gjdoc-0.7.9-r1.ebuild +++ /dev/null @@ -1,72 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/gjdoc/gjdoc-0.7.9-r1.ebuild,v 1.5 2009/03/24 19:38:04 betelgeuse Exp $ - -EAPI=2 -JAVA_PKG_IUSE="source" - -inherit eutils autotools java-pkg-2 - -DESCRIPTION="A javadoc compatible Java source documentation generator." -HOMEPAGE="http://www.gnu.org/software/cp-tools/" -SRC_URI="mirror://gnu/classpath/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc ppc64 x86 ~x86-fbsd" - -# Possible USE flags. -# -# native: to --enable-native -# doc: to generate javadoc -# debug: There is a debug doclet installed by default but maybe could -# have a wrapper that uses it. -# -IUSE="xmldoclet" - -RDEPEND=">=virtual/jre-1.4 - >=dev-java/antlr-2.7.1:0[java]" - -# Refused to emerge with sun-jdk-1.3* complaining about wanting a bigger stack size -DEPEND="${RDEPEND} - >=virtual/jdk-1.4" - -src_prepare() { - epatch "${FILESDIR}/${PN}-0.7.7-gcp.patch" - epatch "${FILESDIR}/0.7.9-main-execute.patch" - AT_M4DIR="m4" eautoreconf -} - -src_configure() { - # I think that configure will do --enable-native if it finds gcj - # so we'll disable it explicitly - local myc="--with-antlr-jar=$(java-pkg_getjar antlr antlr.jar) --disable-native" - myc="${myc} --disable-dependency-tracking" - - # Does not work with gcc 3.* and without these it tries to use gij - # see bug #116804 for details - - # TODO ideally, would respect JAVACFLAGS - JAVA="java" JAVAC="javac $(java-pkg_javac-args)" \ - econf ${myc} \ - $(use_enable xmldoclet) || die "econf failed" -} - -src_compile() { - default # Don't use from java-pkg-2 -} - -src_install() { - local jars="com-sun-tools-doclets-Taglet gnu-classpath-tools-gjdoc com-sun-javadoc" - for jar in ${jars}; do - java-pkg_newjar ${jar}-${PV}.jar ${jar}.jar - done - - dobin "${FILESDIR}"/gjdoc - dodoc AUTHORS ChangeLog NEWS README || die - - cd "${S}"/docs - emake DESTDIR="${D}" install || die "Failed to install documentation" - - use source && java-pkg_dosrc "${S}/src"/{com,gnu} -} |