diff options
author | Vlastimil Babka <caster@gentoo.org> | 2010-11-13 22:34:00 +0000 |
---|---|---|
committer | Vlastimil Babka <caster@gentoo.org> | 2010-11-13 22:34:00 +0000 |
commit | 529e0f761d4efa85c97510da32ce9ca65ec67758 (patch) | |
tree | 3f7cdb7b767fd178b0a592ae5a00030a160c1bfd /dev-java/commons-daemon | |
parent | Added virtualx eclass, may help with bug 331043 (diff) | |
download | historical-529e0f761d4efa85c97510da32ce9ca65ec67758.tar.gz historical-529e0f761d4efa85c97510da32ce9ca65ec67758.tar.bz2 historical-529e0f761d4efa85c97510da32ce9ca65ec67758.zip |
Version bump.
Package-Manager: portage-2.2.0_alpha4/cvs/Linux x86_64
Diffstat (limited to 'dev-java/commons-daemon')
-rw-r--r-- | dev-java/commons-daemon/ChangeLog | 8 | ||||
-rw-r--r-- | dev-java/commons-daemon/commons-daemon-1.0.4.ebuild | 60 |
2 files changed, 67 insertions, 1 deletions
diff --git a/dev-java/commons-daemon/ChangeLog b/dev-java/commons-daemon/ChangeLog index f7d36d981a9c..bab0190f86e6 100644 --- a/dev-java/commons-daemon/ChangeLog +++ b/dev-java/commons-daemon/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-java/commons-daemon # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-daemon/ChangeLog,v 1.40 2010/10/17 12:25:14 caster Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-daemon/ChangeLog,v 1.41 2010/11/13 22:29:56 caster Exp $ + +*commons-daemon-1.0.4 (13 Nov 2010) + + 13 Nov 2010; Vlastimil Babka <caster@gentoo.org> + +commons-daemon-1.0.4.ebuild: + Version bump. 17 Oct 2010; Vlastimil Babka <caster@gentoo.org> -files/1.0.1-as-needed.patch, -commons-daemon-1.0.1-r2.ebuild, diff --git a/dev-java/commons-daemon/commons-daemon-1.0.4.ebuild b/dev-java/commons-daemon/commons-daemon-1.0.4.ebuild new file mode 100644 index 000000000000..f329d31d1bf9 --- /dev/null +++ b/dev-java/commons-daemon/commons-daemon-1.0.4.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-daemon/commons-daemon-1.0.4.ebuild,v 1.1 2010/11/13 22:29:56 caster Exp $ + +EAPI="2" +WANT_AUTOCONF=2.5 +JAVA_PKG_IUSE="doc examples source" + +inherit java-pkg-2 java-ant-2 eutils autotools + +DESCRIPTION="Tools to allow java programs to run as unix daemons" +SRC_URI="mirror://apache/commons/daemon/source/${P}-src.tar.gz" +HOMEPAGE="http://commons.apache.org/daemon/" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd" +IUSE="" + +DEPEND=">=virtual/jdk-1.4" +RDEPEND=">=virtual/jre-1.4" + +S=${WORKDIR}/${P}-src + +java_prepare() { + # https://issues.apache.org/jira/browse/DAEMON-154 + find . -name "*.o" -delete -print || die + + rm src/samples/build/classes/*.class || die + + cd "${S}/src/native/unix" + sed -e "s/powerpc/powerpc|powerpc64/g" -i support/apsupport.m4 + eautoconf +} + +src_configure() { + java-ant-2_src_configure + cd "${S}/src/native/unix" + econf || die "configure failed" +} + +src_compile() { + # compile native stuff + cd "${S}/src/native/unix" + emake || die "make failed" + + # compile java stuff + cd "${S}" + java-pkg-2_src_compile +} + +src_install() { + dobin src/native/unix/jsvc || die + java-pkg_newjar dist/*.jar + + dodoc README RELEASE-NOTES.txt *.html || die + use doc && java-pkg_dohtml -r dist/docs/* + use examples && java-pkg_doexamples src/samples + use source && java-pkg_dosrc src/java/* src/native/unix/native +} |