summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVlastimil Babka <caster@gentoo.org>2007-05-03 15:46:58 +0000
committerVlastimil Babka <caster@gentoo.org>2007-05-03 15:46:58 +0000
commitb68237777cf7ea1d265ca3be8640f60f0a30a53b (patch)
tree64c6865306c5a29beed1be6ba9a853b27f084c45 /dev-java/tagunit
parentStable on sparc wrt #176882 (diff)
downloadgentoo-2-b68237777cf7ea1d265ca3be8640f60f0a30a53b.tar.gz
gentoo-2-b68237777cf7ea1d265ca3be8640f60f0a30a53b.tar.bz2
gentoo-2-b68237777cf7ea1d265ca3be8640f60f0a30a53b.zip
Gen-1 punt.
(Portage version: 2.1.2.5)
Diffstat (limited to 'dev-java/tagunit')
-rw-r--r--dev-java/tagunit/ChangeLog5
-rw-r--r--dev-java/tagunit/files/digest-tagunit-1.0.13
-rw-r--r--dev-java/tagunit/tagunit-1.0.1.ebuild45
3 files changed, 4 insertions, 49 deletions
diff --git a/dev-java/tagunit/ChangeLog b/dev-java/tagunit/ChangeLog
index 92edccc0a8bf..ac6fc943e7a8 100644
--- a/dev-java/tagunit/ChangeLog
+++ b/dev-java/tagunit/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-java/tagunit
# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/tagunit/ChangeLog,v 1.15 2007/05/03 14:13:37 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/tagunit/ChangeLog,v 1.16 2007/05/03 15:46:58 caster Exp $
+
+ 03 May 2007; Vlastimil Babka <caster@gentoo.org> -tagunit-1.0.1.ebuild:
+ Gen-1 punt.
03 May 2007; Raúl Porcel <armin76@gentoo.org> tagunit-1.0.1-r1.ebuild:
x86 stable wrt #176412
diff --git a/dev-java/tagunit/files/digest-tagunit-1.0.1 b/dev-java/tagunit/files/digest-tagunit-1.0.1
deleted file mode 100644
index 1713efda9832..000000000000
--- a/dev-java/tagunit/files/digest-tagunit-1.0.1
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 1e70fff14c69887cd7ac554c586cf49d tagunit-1.0.1-src.zip 290460
-RMD160 0b2e281b68576d943de5437b3503bf8fc47ecb8c tagunit-1.0.1-src.zip 290460
-SHA256 5ecac67f63cbcde036caaf08a4dc5d544b644337e9ed0afd7e30117f5a8f940e tagunit-1.0.1-src.zip 290460
diff --git a/dev-java/tagunit/tagunit-1.0.1.ebuild b/dev-java/tagunit/tagunit-1.0.1.ebuild
deleted file mode 100644
index 802217ff1d7b..000000000000
--- a/dev-java/tagunit/tagunit-1.0.1.ebuild
+++ /dev/null
@@ -1,45 +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/tagunit/tagunit-1.0.1.ebuild,v 1.12 2007/01/28 20:52:04 wltjr Exp $
-
-inherit java-pkg
-
-DESCRIPTION="TagUnit is a tag library for testing custom tags within JSP pages."
-SRC_URI="mirror://sourceforge/${PN}/${P}-src.zip"
-HOMEPAGE="http://www.tagunit.org"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="x86 amd64 ~ppc"
-IUSE="doc jikes source"
-
-RDEPEND=">=virtual/jre-1.3
- =dev-java/servletapi-2.4*"
-
-DEPEND=">=virtual/jdk-1.3
- ${RDEPEND}
- app-arch/unzip
- >=dev-java/ant-core-1.6
- jikes? ( >=dev-java/jikes-1.17 )
- source? ( app-arch/zip )"
-
-S="${WORKDIR}/${P}-src/tagunit-core"
-
-src_compile() {
- echo ${PV} > ../version.txt
- mkdir ../lib
-
- local antflags="build"
- antflags="${antflags} -lib $(java-pkg_getjars servletapi-2.4)"
- use doc && antflags="${antflags} javadoc"
- use jikes && antflags="${antflags} -Dbuild.compiler=jikes"
- ant ${antflags} || die "compilation failed"
-}
-
-src_install() {
- java-pkg_dojar lib/${PN}.jar
- cd ${S}/..
- dodoc changes.txt readme.txt
- use doc && java-pkg_dohtml -r doc/api/*
- use source && java-pkg_dosrc tagunit-core/src/*
-}