diff options
author | Petteri Räty <betelgeuse@gentoo.org> | 2008-04-13 22:08:51 +0000 |
---|---|---|
committer | Petteri Räty <betelgeuse@gentoo.org> | 2008-04-13 22:08:51 +0000 |
commit | 54541c6fe15708d750a4b4e2052582ef74c0502b (patch) | |
tree | f5a21344db7df1c9757a32c045f9dd0dd0e45941 | |
parent | arm/sh stable (diff) | |
download | gentoo-2-54541c6fe15708d750a4b4e2052582ef74c0502b.tar.gz gentoo-2-54541c6fe15708d750a4b4e2052582ef74c0502b.tar.bz2 gentoo-2-54541c6fe15708d750a4b4e2052582ef74c0502b.zip |
Remove old revision.
(Portage version: 2.1.5_rc3)
-rw-r--r-- | dev-java/commons-daemon/ChangeLog | 8 | ||||
-rw-r--r-- | dev-java/commons-daemon/commons-daemon-1.0.1-r1.ebuild | 61 |
2 files changed, 6 insertions, 63 deletions
diff --git a/dev-java/commons-daemon/ChangeLog b/dev-java/commons-daemon/ChangeLog index 9ac06f3acd68..b3f63b033e7c 100644 --- a/dev-java/commons-daemon/ChangeLog +++ b/dev-java/commons-daemon/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-java/commons-daemon -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-daemon/ChangeLog,v 1.33 2007/11/25 12:06:34 nelchael Exp $ +# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-daemon/ChangeLog,v 1.34 2008/04/13 22:08:51 betelgeuse Exp $ + + 13 Apr 2008; Petteri Räty <betelgeuse@gentoo.org> + -commons-daemon-1.0.1-r1.ebuild: + Remove old revision. 25 Nov 2007; Krzysiek Pawlik <nelchael@gentoo.org> commons-daemon-1.0.1-r2.ebuild: diff --git a/dev-java/commons-daemon/commons-daemon-1.0.1-r1.ebuild b/dev-java/commons-daemon/commons-daemon-1.0.1-r1.ebuild deleted file mode 100644 index abea503be619..000000000000 --- a/dev-java/commons-daemon/commons-daemon-1.0.1-r1.ebuild +++ /dev/null @@ -1,61 +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/commons-daemon/commons-daemon-1.0.1-r1.ebuild,v 1.8 2007/01/10 01:34:02 beandog Exp $ - -WANT_AUTOCONF=2.5 -inherit java-pkg-2 java-ant-2 eutils autotools - -DESCRIPTION="Tools to allow java programs to run as unix daemons" -SRC_URI="mirror://apache/jakarta/commons/daemon/source/daemon-${PV}.tar.gz" -HOMEPAGE="http://jakarta.apache.org/commons/daemon/" - -LICENSE="Apache-1.1" -SLOT="0" -KEYWORDS="amd64 ppc ppc64 x86 ~x86-fbsd" -IUSE="doc examples source" - -DEPEND=">=virtual/jdk-1.4 - dev-java/ant-core - source? ( app-arch/zip )" -RDEPEND=">=virtual/jre-1.4" - -S=${WORKDIR}/daemon-${PV} - -src_unpack() { - unpack ${A} - cd "${S}" - - # Submitted upstream to http://bugs.gentoo.org/show_bug.cgi?id=132563 - epatch "${FILESDIR}/1.0.1-as-needed.patch" - - # Fix fbsd building, from upstream svn, #157381 - epatch "${FILESDIR}/1.0.1-fbsd.patch" - - cd "${S}/src/native/unix" - sed -e "s/powerpc/powerpc|powerpc64/g" -i support/apsupport.m4 - eautoconf -} - -src_compile() { - # compile native stuff - cd "${S}/src/native/unix" - econf || die "configure failed" - emake || die "make failed" - - # compile java stuff - cd "${S}" - eant jar $(use_doc) -} - -src_install() { - dobin src/native/unix/jsvc - java-pkg_dojar dist/${PN}.jar - - dodoc README RELEASE-NOTES.txt *.html - use doc && java-pkg_dohtml -r dist/docs/* - if use examples; then - dodir /usr/share/doc/${PF}/examples - cp -R src/samples/* ${D}/usr/share/doc/${PF}/examples - fi - use source && java-pkg_dosrc src/java/* src/native/unix/native -} |