From 56bd759df1d0c750a065b8c845e93d5dfa6b549d Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Sat, 8 Aug 2015 13:49:04 -0700 Subject: proj/gentoo: Initial commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson X-Thanks: Alec Warner - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring - wrote much python to improve cvs2svn X-Thanks: Rich Freeman - validation scripts X-Thanks: Patrick Lauer - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed --- .../struts-plugins/struts-plugins-2.3.15.2.ebuild | 106 +++++++++++++++++++++ 1 file changed, 106 insertions(+) create mode 100644 dev-java/struts-plugins/struts-plugins-2.3.15.2.ebuild (limited to 'dev-java/struts-plugins/struts-plugins-2.3.15.2.ebuild') diff --git a/dev-java/struts-plugins/struts-plugins-2.3.15.2.ebuild b/dev-java/struts-plugins/struts-plugins-2.3.15.2.ebuild new file mode 100644 index 000000000000..9684ad2e2a0c --- /dev/null +++ b/dev-java/struts-plugins/struts-plugins-2.3.15.2.ebuild @@ -0,0 +1,106 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +JAVA_PKG_IUSE="doc source test" + +inherit java-pkg-2 java-ant-2 + +MY_PN="struts" +MY_P="${MY_PN}-${PV}-src" + +DESCRIPTION="A powerful Model View Controller Framework for JSP/Servlets: Plugins" +SRC_URI="mirror://apache/struts/source/${MY_P}.zip + http://dev.gentoo.org/~tomwij/files/dist/${MY_PN}-build.xml-${PV}.tar.xz + http://dev.gentoo.org/~tomwij/files/dist/${MY_PN}-${PV}-build.xml-classpath.patch" +HOMEPAGE="http://struts.apache.org/index.html" + +LICENSE="Apache-2.0" +SLOT="2" +KEYWORDS="~amd64" + +COMMON_DEPS="dev-java/commons-beanutils:1.7 + dev-java/commons-lang:3.1 + dev-java/commons-io:1 + dev-java/freemarker:2.3 + dev-java/juel:0 + dev-java/ognl:3.0 + dev-java/osgi-core-api:0 + dev-java/struts-core:${SLOT} + dev-java/struts-xwork:${SLOT} + dev-java/velocity:0 + java-virtuals/servlet-api:3.0" + +RDEPEND=">=virtual/jre-1.5 + ${COMMON_DEPS}" + +DEPEND=">=virtual/jdk-1.5 + test? ( dev-java/ant-junit:0 ) + ${COMMON_DEPS}" + +S="${WORKDIR}/${MY_PN}-${PV}/src/plugins" + +JAVA_ANT_REWRITE_CLASSPATH="true" +EANT_GENTOO_CLASSPATH="struts-core-${SLOT},struts-xwork-${SLOT}" +EANT_TEST_GENTOO_CLASSPATH="${EANT_GENTOO_CLASSPATH}" +EANT_BUILD_TARGET="package" +EANT_TEST_TARGET="test" + +# javatemplates/maven-build.xml:149: +# Test org.apache.struts2.views.java.simple.AbstractCommonAttributesTest failed +# Cannot instantiate test case: testRenderTextFieldDynamicAttrs +RESTRICT="test" + +src_unpack() { + unpack ${MY_P}.zip + cd "${WORKDIR}"/${MY_PN}-${PV}/src || die + unpack ${MY_PN}-build.xml-${PV}.tar.xz +} + +java_prepare() { + find . -name '*.jar' -print -delete || die + + epatch "${DISTDIR}"/${MY_PN}-${PV}-build.xml-classpath.patch + epatch "${FILESDIR}"/${MY_PN}-${PV}-build.xml-manifest.patch + epatch "${FILESDIR}"/${MY_PN}-${PV}-build.xml-remove-codebehind.patch + epatch "${FILESDIR}"/${MY_PN}-${PV}-build.xml-remove-portlet.patch + + # Remove tests that don't build due to test files that aren't installed. + rm jfreechart/src/test/java/org/apache/struts2/dispatcher/ChartResultTest.java + + java-pkg_getjars commons-beanutils-1.7,commons-io-1,commons-lang-3.1,freemarker-2.3,juel,ognl-3.0,osgi-core-api,servlet-api-3.0,velocity +} + +src_test() { + EANT_TEST_EXTRA_ARGS="-Dgentoo.test.classpath=$(java-pkg_getjars ${EANT_TEST_GENTOO_CLASSPATH})" + EANT_TEST_EXTRA_ARGS+=" -Djunit.present=true" + + java-pkg-2_src_test +} + +src_install() { + for plugin in $(find . -mindepth 1 -maxdepth 1 -type d | sed 's:./::g' | tr '\n' ' ') ; do + [[ ! -d ${plugin}/target ]] && continue + + einfo "Installing plugin '${plugin}' ..." + java-pkg_newjar ${plugin}/target/${MY_PN}2-${plugin}-plugin-${PV}.jar ${plugin}.jar + + if use doc ; then + java-pkg_dojavadoc ${plugin}/target/site/apidocs + mkdir "${D}"/usr/share/doc/${P}/${plugin} || die + mv "${D}"/usr/share/doc/${P}/{html,${plugin}/html} || die + fi + + use source && java-pkg_dosrc ${plugin}/src/main/java/org + done + + if use doc ; then + rm "${D}"/usr/share/${PN}-${SLOT}/api || die + fi +} + +pkg_postinst() { + elog "The 'codebehind' and 'portlet' plugins are not in this release because they don't build yet." +} -- cgit v1.2.3-65-gdbad