diff options
author | Chris Aniszczyk <zx@gentoo.org> | 2004-04-12 15:49:01 +0000 |
---|---|---|
committer | Chris Aniszczyk <zx@gentoo.org> | 2004-04-12 15:49:01 +0000 |
commit | 856538c5b6691bebefec4eb734c8e40a40d98743 (patch) | |
tree | 5704496847dc68d8d8cd03f70e1bcf75364f66dd /dev-util/gruntspud | |
parent | Version bump. (Manifest recommit) (diff) | |
download | gentoo-2-856538c5b6691bebefec4eb734c8e40a40d98743.tar.gz gentoo-2-856538c5b6691bebefec4eb734c8e40a40d98743.tar.bz2 gentoo-2-856538c5b6691bebefec4eb734c8e40a40d98743.zip |
Clean up.
Diffstat (limited to 'dev-util/gruntspud')
-rw-r--r-- | dev-util/gruntspud/ChangeLog | 5 | ||||
-rw-r--r-- | dev-util/gruntspud/files/digest-gruntspud-0.4.5_beta | 1 | ||||
-rw-r--r-- | dev-util/gruntspud/gruntspud-0.4.5_beta.ebuild | 44 |
3 files changed, 4 insertions, 46 deletions
diff --git a/dev-util/gruntspud/ChangeLog b/dev-util/gruntspud/ChangeLog index dcb375302d7a..97362474dffe 100644 --- a/dev-util/gruntspud/ChangeLog +++ b/dev-util/gruntspud/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-util/gruntspud # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/gruntspud/ChangeLog,v 1.3 2004/04/12 15:48:10 zx Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/gruntspud/ChangeLog,v 1.4 2004/04/12 15:49:01 zx Exp $ + + 12 Apr 2004; Chris Aniszczyk <zx@gentoo.org> gruntspud-0.4.5_beta.ebuild: + Clean up. *gruntspud-0.4.6_beta (12 Apr 2004) diff --git a/dev-util/gruntspud/files/digest-gruntspud-0.4.5_beta b/dev-util/gruntspud/files/digest-gruntspud-0.4.5_beta deleted file mode 100644 index 30688c140c53..000000000000 --- a/dev-util/gruntspud/files/digest-gruntspud-0.4.5_beta +++ /dev/null @@ -1 +0,0 @@ -MD5 3fd9ae53b42fb263208e20530c689273 gruntspud-0.4.5-beta-src.tgz 1993165 diff --git a/dev-util/gruntspud/gruntspud-0.4.5_beta.ebuild b/dev-util/gruntspud/gruntspud-0.4.5_beta.ebuild deleted file mode 100644 index 1addc134df38..000000000000 --- a/dev-util/gruntspud/gruntspud-0.4.5_beta.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2004 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/gruntspud/gruntspud-0.4.5_beta.ebuild,v 1.2 2004/04/12 10:09:47 dholm Exp $ - -inherit java-pkg - -DESCRIPTION="Gruntspud is a graphical CVS client written in Java." -HOMEPAGE="http://gruntspud.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${PN}-${PV/_/-}-src.tgz" -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~x86 ~ppc" -IUSE="" -DEPEND=">=virtual/jdk-1.3 - dev-java/ant - sys-apps/sed - jikes? ( dev-java/jikes )" -RDEPEND=">=virtual/jre-1.3" - -S="${WORKDIR}/${PN}-${PV/_/-}" - -src_unpack() { - unpack ${A} - # Dirty workaround - cd ${S} - sed -i 's:compile_standalone,javahelp:compile_standalone:' build.xml -} - -src_compile() { - local antflags="dist_standalone" - ant ${antflags} || die "compilation problem" -} - -src_install() { - cd ${S}/dist/lib - mv GruntspudSA.jar ${PN}.jar - java-pkg_dojar ${PN}.jar - - echo "#!/bin/sh" > ${PN} - echo "cd /usr/share/${PN}" >> ${PN} - echo "java -jar lib/${PN}.jar" >> ${PN} - dobin ${PN} -} - |