diff options
author | Ralph Sennhauser <sera@gentoo.org> | 2014-08-03 10:44:01 +0000 |
---|---|---|
committer | Ralph Sennhauser <sera@gentoo.org> | 2014-08-03 10:44:01 +0000 |
commit | b9ec5b63f161e1906db55c6d4a3b76ed0f73a6a7 (patch) | |
tree | 45c5ddaf4bbf86041ab4d4e879cd2dfeb3091184 /dev-java/commons-daemon | |
parent | Remove old (diff) | |
download | gentoo-2-b9ec5b63f161e1906db55c6d4a3b76ed0f73a6a7.tar.gz gentoo-2-b9ec5b63f161e1906db55c6d4a3b76ed0f73a6a7.tar.bz2 gentoo-2-b9ec5b63f161e1906db55c6d4a3b76ed0f73a6a7.zip |
Remove old
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 3C5CF75A)
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.2.ebuild | 58 | ||||
-rw-r--r-- | dev-java/commons-daemon/commons-daemon-1.0.4.ebuild | 60 | ||||
-rw-r--r-- | dev-java/commons-daemon/commons-daemon-1.0.8.ebuild | 56 |
4 files changed, 6 insertions, 176 deletions
diff --git a/dev-java/commons-daemon/ChangeLog b/dev-java/commons-daemon/ChangeLog index e53dc8e6d016..d29918e8482a 100644 --- a/dev-java/commons-daemon/ChangeLog +++ b/dev-java/commons-daemon/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-java/commons-daemon -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-daemon/ChangeLog,v 1.58 2013/07/08 13:14:42 tomwij Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-daemon/ChangeLog,v 1.59 2014/08/03 10:44:01 sera Exp $ + + 03 Aug 2014; Ralph Sennhauser <sera@gentoo.org> -commons-daemon-1.0.2.ebuild, + -commons-daemon-1.0.4.ebuild, -commons-daemon-1.0.8.ebuild: + Remove old *commons-daemon-1.0.15 (08 Jul 2013) diff --git a/dev-java/commons-daemon/commons-daemon-1.0.2.ebuild b/dev-java/commons-daemon/commons-daemon-1.0.2.ebuild deleted file mode 100644 index 9dae186ef31a..000000000000 --- a/dev-java/commons-daemon/commons-daemon-1.0.2.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# 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.2.ebuild,v 1.7 2010/10/14 16:55:17 ranger 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 - - 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 -} diff --git a/dev-java/commons-daemon/commons-daemon-1.0.4.ebuild b/dev-java/commons-daemon/commons-daemon-1.0.4.ebuild deleted file mode 100644 index ed96e893eb37..000000000000 --- a/dev-java/commons-daemon/commons-daemon-1.0.4.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2011 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.4 2011/03/16 18:31:51 xarthisius 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 -} diff --git a/dev-java/commons-daemon/commons-daemon-1.0.8.ebuild b/dev-java/commons-daemon/commons-daemon-1.0.8.ebuild deleted file mode 100644 index 7c81449d9a9d..000000000000 --- a/dev-java/commons-daemon/commons-daemon-1.0.8.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2012 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.8.ebuild,v 1.2 2012/01/30 13:02:39 sera Exp $ - -EAPI="4" - -WANT_AUTOCONF=2.5 -JAVA_PKG_IUSE="doc examples source" - -inherit eutils autotools java-pkg-2 java-ant-2 - -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="kernel_linux" - -COMMON_DEP=" - kernel_linux? ( sys-libs/libcap )" -DEPEND="${COMMON_DEP} - >=virtual/jdk-1.4" -RDEPEND="${COMMON_DEP} - >=virtual/jre-1.4" - -S="${WORKDIR}/${P}-src" - -java_prepare() { - cd "${S}/src/native/unix" || die - sed -i "s/powerpc/powerpc|powerpc64/g" support/apsupport.m4 || die - eautoconf -} - -src_configure() { - java-ant-2_src_configure - cd "${S}/src/native/unix" || die - default -} - -src_compile() { - java-pkg-2_src_compile - cd "${S}/src/native/unix" || die - default -} - -src_install() { - dobin src/native/unix/jsvc - java-pkg_newjar dist/*.jar - - dodoc README RELEASE-NOTES.txt *.html src/native/unix/CHANGES.txt - use doc && java-pkg_dohtml -r dist/docs/* - use examples && java-pkg_doexamples src/samples - use source && java-pkg_dosrc src/main/java/* -} |