diff options
Diffstat (limited to 'dev-java/fop/fop-0.93.ebuild')
-rw-r--r-- | dev-java/fop/fop-0.93.ebuild | 105 |
1 files changed, 0 insertions, 105 deletions
diff --git a/dev-java/fop/fop-0.93.ebuild b/dev-java/fop/fop-0.93.ebuild deleted file mode 100644 index 42f3ad23d900..000000000000 --- a/dev-java/fop/fop-0.93.ebuild +++ /dev/null @@ -1,105 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/fop/fop-0.93.ebuild,v 1.5 2007/05/12 14:02:42 corsair Exp $ - -# TODO: hyphenation support doesn't seem to be built correctly, because there's no xml in hyph dir -# but upstream binary distro contains only fop.jar, no hyph nor sandbox -# TODO: if 'doc' use flag is used then should build also extra docs ('docs' ant target), currently it cannot -# be built as it needs forrest which we do not have -# TODO: package and use optional dependency jeuclid - -JAVA_PKG_IUSE="doc examples source test" -WANT_ANT_TASKS="ant-trax" -inherit eutils java-pkg-2 java-ant-2 - -DESCRIPTION="Formatting Objects Processor is a print formatter driven by XSL" -HOMEPAGE="http://xmlgraphics.apache.org/fop/" -SRC_URI="mirror://apache/xmlgraphics/${PN}/${P}-src.tar.gz" -LICENSE="Apache-2.0" -SLOT="0" -# doesn't work with java.awt.headless -RESTRICT="test" -KEYWORDS="~amd64 ~ia64 ~ppc64 ~x86" -IUSE="jai jimi" - -COMMON_DEPEND=" - >=dev-java/avalon-framework-4.2 - >=dev-java/batik-1.6 - dev-java/commons-io - dev-java/commons-logging - =dev-java/servletapi-2.2* - >=dev-java/xmlgraphics-commons-1.1 - jai? ( dev-java/sun-jai-bin ) - jimi? ( dev-java/sun-jimi )" - -RDEPEND=">=virtual/jre-1.4 - dev-java/ant-core - ${COMMON_DEPEND}" - -DEPEND=">=virtual/jdk-1.4 - =dev-java/eclipse-ecj-3.2* - ${COMMON_DEPEND}" -# test? ( -# =dev-java/junit-3.8* -# dev-java/xmlunit -# )" - -src_unpack() { - unpack "${A}" - cd "${S}" - - # automagic is bad - java-ant_ignore-system-classes || die - - cd "${S}/lib" - rm -v *.jar || die - - java-pkg_jarfrom ant-core ant.jar - java-pkg_jarfrom avalon-framework-4.2 avalon-framework.jar \ - avalon-framework-4.2.0.jar - java-pkg_jarfrom batik-1.6 batik-all.jar batik-all-1.6.jar - java-pkg_jarfrom commons-io-1 commons-io.jar commons-io-1.1.jar - java-pkg_jarfrom commons-logging commons-logging.jar \ - commons-logging-1.0.4.jar - java-pkg_jarfrom servletapi-2.2 servlet.jar servlet-2.2.jar - java-pkg_jarfrom xmlgraphics-commons-1 xmlgraphics-commons.jar \ - xmlgraphics-commons-1.1.jar - - use jai && java-pkg_jar-from sun-jai-bin - use jimi && java-pkg_jar-from sun-jimi -} - -src_compile() { - # because I killed the automagic tests; all our JDK's have JCE - local af="-Djdk14.present=true -Djce.present=true" - use jai && af="${af} -Djai.present=true" - use jimi && af="${af} -Djimi.present=true" - - export ANT_OPTS="-Xmx256M" - java-pkg_force-compiler ecj-3.2 - eant ${af} package $(use_doc javadocs) -} - -src_test() { - if use test ; then - cd "${S}/lib" - java-pkg_jar-from xmlunit-1 - java-pkg_jar-from junit - cd "${S}" - fi - - ANT_OPTS="-Xmx1g -Djava.awt.headless=true" eant -Djunit.fork=off junit -} - -src_install() { - java-pkg_dojar build/fop*.jar - - # doesn't support everything upstream launcher does... - java-pkg_dolauncher ${PN} --main org.apache.fop.cli.Main - - dodoc NOTICE README - - use doc && java-pkg_dojavadoc build/javadocs - use examples && java-pkg_doexamples examples/* conf - use source && java-pkg_dosrc src/java/org src/java-1.4/* src/sandbox/org -} |