summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Brinkmann <luckyduck@gentoo.org>2005-04-02 19:46:52 +0000
committerJan Brinkmann <luckyduck@gentoo.org>2005-04-02 19:46:52 +0000
commit8dce3adeb120665055c5b2b9e5719245cef0732c (patch)
tree5719177b34cb140bbe132615eb842d0d4faf3206 /dev-util/checkstyle
parentstable on amd64 and x86 (diff)
downloadgentoo-2-8dce3adeb120665055c5b2b9e5719245cef0732c.tar.gz
gentoo-2-8dce3adeb120665055c5b2b9e5719245cef0732c.tar.bz2
gentoo-2-8dce3adeb120665055c5b2b9e5719245cef0732c.zip
cleanup, removed old revision with a dependency to regexp.
(Portage version: 2.0.51.19)
Diffstat (limited to 'dev-util/checkstyle')
-rw-r--r--dev-util/checkstyle/ChangeLog6
-rw-r--r--dev-util/checkstyle/checkstyle-3.3-r1.ebuild4
-rw-r--r--dev-util/checkstyle/checkstyle-3.3.ebuild52
-rw-r--r--dev-util/checkstyle/files/digest-checkstyle-3.31
4 files changed, 7 insertions, 56 deletions
diff --git a/dev-util/checkstyle/ChangeLog b/dev-util/checkstyle/ChangeLog
index 87af0c7251aa..6454a9750eb9 100644
--- a/dev-util/checkstyle/ChangeLog
+++ b/dev-util/checkstyle/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-util/checkstyle
# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/checkstyle/ChangeLog,v 1.11 2005/03/27 21:15:36 luckyduck Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/checkstyle/ChangeLog,v 1.12 2005/04/02 19:46:52 luckyduck Exp $
+
+ 02 Apr 2005; Jan Brinkmann <luckyduck@gentoo.org> checkstyle-3.3-r1.ebuild,
+ -checkstyle-3.3.ebuild:
+ cleanup, removed old revision with a dependency to regexp.
*checkstyle-3.4-r3 (27 Mar 2005)
diff --git a/dev-util/checkstyle/checkstyle-3.3-r1.ebuild b/dev-util/checkstyle/checkstyle-3.3-r1.ebuild
index fa06e8b6ac7c..ed4cd2e55041 100644
--- a/dev-util/checkstyle/checkstyle-3.3-r1.ebuild
+++ b/dev-util/checkstyle/checkstyle-3.3-r1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/checkstyle/checkstyle-3.3-r1.ebuild,v 1.1 2005/03/27 21:15:36 luckyduck Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/checkstyle/checkstyle-3.3-r1.ebuild,v 1.2 2005/04/02 19:46:52 luckyduck Exp $
inherit java-pkg
@@ -9,7 +9,7 @@ HOMEPAGE="http://checkstyle.sourceforge.net"
SRC_URI="mirror://sourceforge/checkstyle/${PN}-src-${PV}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~x86 ~sparc ~amd64"
+KEYWORDS="x86 ~sparc ~amd64"
IUSE="doc jikes"
S=${WORKDIR}/${PN}-src-${PV}
diff --git a/dev-util/checkstyle/checkstyle-3.3.ebuild b/dev-util/checkstyle/checkstyle-3.3.ebuild
deleted file mode 100644
index 700095ab24c5..000000000000
--- a/dev-util/checkstyle/checkstyle-3.3.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/checkstyle/checkstyle-3.3.ebuild,v 1.8 2005/01/14 19:19:29 luckyduck Exp $
-
-inherit java-pkg
-
-DESCRIPTION="A development tool to help programmers write Java code that adheres to a coding standard."
-HOMEPAGE="http://checkstyle.sourceforge.net"
-SRC_URI="mirror://sourceforge/checkstyle/${PN}-src-${PV}.tar.gz"
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="x86 ~sparc ~amd64"
-IUSE="doc jikes"
-
-S=${WORKDIR}/${PN}-src-${PV}
-
-DEPEND=">=virtual/jdk-1.4
- >=dev-java/ant-1.5
- jikes? ( dev-java/jikes )"
-
-RDEPEND=">=virtual/jre-1.3
- dev-java/antlr
- dev-java/commons-beanutils
- dev-java/commons-cli
- dev-java/commons-collections
- dev-java/commons-logging
- >=dev-java/regexp-1.3-r1"
-
-src_compile() {
- local antflags="compile.checkstyle"
- use doc && antflags="${antflags} javadoc"
- use jikes && antflags="${antflags} -Dbuild.compiler=jikes"
- ant ${antflags} || die "ant :("
-}
-
-src_install() {
- insinto /usr/share/checkstyle
- jar cfm ${P}.jar config/manifest.mf -C target/checkstyle .
- java-pkg_dojar ${P}.jar
- use doc && java-pkg_dohtml -r docs/*
- dodoc README RIGHTS.antlr TODO
- mv docs/checkstyle_checks.xml ${D}/usr/share/checkstyle/checkstyle_checks.xml
- mv docs/sun_checks.xml ${D}/usr/share/checkstyle/sun_checks.xml
- mv contrib ${D}/usr/share/checkstyle
-
- echo '#!/bin/bash' > checkstyle
- echo '' >> checkstyle
- echo '`java-config -J` -cp `java-config -p checkstyle,antlr,commons-beanutils,commons-cli-1,commons-collections,commons-logging,regexp` com.puppycrawl.tools.checkstyle.Main "$@"' >> checkstyle
-
- insinto /usr
- dobin checkstyle
-}
diff --git a/dev-util/checkstyle/files/digest-checkstyle-3.3 b/dev-util/checkstyle/files/digest-checkstyle-3.3
deleted file mode 100644
index e8c6fd42cc1e..000000000000
--- a/dev-util/checkstyle/files/digest-checkstyle-3.3
+++ /dev/null
@@ -1 +0,0 @@
-MD5 034f31ce020fa35b48882b762b4999b2 checkstyle-src-3.3.tar.gz 1277240