summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetteri Räty <betelgeuse@gentoo.org>2008-03-25 19:46:52 +0000
committerPetteri Räty <betelgeuse@gentoo.org>2008-03-25 19:46:52 +0000
commita58b94abe4dd736bba40b9fe1c9086d8aa5dc102 (patch)
treebfcc19910a9980307bb69088d14436dc53cab508 /dev-java
parentamd64 stable (diff)
downloadgentoo-2-a58b94abe4dd736bba40b9fe1c9086d8aa5dc102.tar.gz
gentoo-2-a58b94abe4dd736bba40b9fe1c9086d8aa5dc102.tar.bz2
gentoo-2-a58b94abe4dd736bba40b9fe1c9086d8aa5dc102.zip
Delete old version.
(Portage version: 2.1.4.4)
Diffstat (limited to 'dev-java')
-rw-r--r--dev-java/commons-attributes/ChangeLog8
-rw-r--r--dev-java/commons-attributes/commons-attributes-2.1-r1.ebuild53
2 files changed, 6 insertions, 55 deletions
diff --git a/dev-java/commons-attributes/ChangeLog b/dev-java/commons-attributes/ChangeLog
index 6a3de87cda97..1ca268f9d2dc 100644
--- a/dev-java/commons-attributes/ChangeLog
+++ b/dev-java/commons-attributes/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-java/commons-attributes
-# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-attributes/ChangeLog,v 1.8 2007/11/12 23:49:23 betelgeuse Exp $
+# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-attributes/ChangeLog,v 1.9 2008/03/25 19:46:52 betelgeuse Exp $
+
+ 25 Mar 2008; Petteri Räty <betelgeuse@gentoo.org>
+ -commons-attributes-2.1-r1.ebuild:
+ Delete old version.
*commons-attributes-2.2 (12 Nov 2007)
diff --git a/dev-java/commons-attributes/commons-attributes-2.1-r1.ebuild b/dev-java/commons-attributes/commons-attributes-2.1-r1.ebuild
deleted file mode 100644
index d734d15b0cb8..000000000000
--- a/dev-java/commons-attributes/commons-attributes-2.1-r1.ebuild
+++ /dev/null
@@ -1,53 +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-attributes/commons-attributes-2.1-r1.ebuild,v 1.4 2007/04/25 21:31:21 caster Exp $
-
-JAVA_PKG_IUSE="doc source"
-inherit eutils java-pkg-2 java-ant-2
-
-DESCRIPTION="Commons Attributes enables Java programmers to use C#/.Net-style attributes in their code."
-HOMEPAGE="http://jakarta.apache.org/commons/attributes/"
-SRC_URI="mirror://apache/jakarta/commons/attributes/source/${P}-src.tgz"
-
-LICENSE="Apache-2.0"
-SLOT="2"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-COMMON_DEP="dev-java/xjavadoc
- dev-java/gjdoc
- dev-java/ant-core"
-DEPEND=">=virtual/jdk-1.4
- ${COMMON_DEP}"
-RDEPEND=">=virtual/jre-1.4
- ${COMMON_DEP}"
-
-src_unpack() {
- mkdir ${S}
- cd ${S}
- unpack ${A}
-
- epatch ${FILESDIR}/${P}-gentoo.patch
-
- mkdir -p target/classes/org/apache/commons/attributes
- # This file is missing from upstream's release
- # and is needed to use the ant task.
- cp ${FILESDIR}/anttasks.properties target/classes/org/apache/commons/attributes/
-
- mkdir -p target/lib
- cd target/lib
- java-pkg_jar-from xjavadoc
- java-pkg_jar-from ant-core ant.jar
- java-pkg_jar-from gjdoc
-}
-
-src_install() {
- java-pkg_newjar target/${PN}-api-${PV}.jar ${PN}-api.jar
- java-pkg_newjar target/${PN}-compiler-${PV}.jar ${PN}-compiler.jar
-
- dodoc NOTICE.txt RELEASE.txt
- dohtml README.html
-
- use doc && java-pkg_dojavadoc dist/docs/api
- use source && java-pkg_dosrc api/src/java/org compiler/src/java/org
-}