diff options
author | Chris Aniszczyk <zx@gentoo.org> | 2004-04-12 15:48:10 +0000 |
---|---|---|
committer | Chris Aniszczyk <zx@gentoo.org> | 2004-04-12 15:48:10 +0000 |
commit | b9f055823f75598a6593454c16cab32cd5706e63 (patch) | |
tree | 306a67cbc4c2d6492af9216194348f5d0aee6cb5 /dev-util/gruntspud | |
parent | add metadata.xml (vim herd) (Manifest recommit) (diff) | |
download | gentoo-2-b9f055823f75598a6593454c16cab32cd5706e63.tar.gz gentoo-2-b9f055823f75598a6593454c16cab32cd5706e63.tar.bz2 gentoo-2-b9f055823f75598a6593454c16cab32cd5706e63.zip |
Version bump.
Diffstat (limited to 'dev-util/gruntspud')
-rw-r--r-- | dev-util/gruntspud/ChangeLog | 7 | ||||
-rw-r--r-- | dev-util/gruntspud/Manifest | 6 | ||||
-rw-r--r-- | dev-util/gruntspud/files/digest-gruntspud-0.4.6_beta | 1 | ||||
-rw-r--r-- | dev-util/gruntspud/gruntspud-0.4.6_beta.ebuild | 44 |
4 files changed, 55 insertions, 3 deletions
diff --git a/dev-util/gruntspud/ChangeLog b/dev-util/gruntspud/ChangeLog index a882940b23db..dcb375302d7a 100644 --- a/dev-util/gruntspud/ChangeLog +++ b/dev-util/gruntspud/ChangeLog @@ -1,6 +1,11 @@ # 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.2 2004/04/12 10:09:47 dholm Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/gruntspud/ChangeLog,v 1.3 2004/04/12 15:48:10 zx Exp $ + +*gruntspud-0.4.6_beta (12 Apr 2004) + + 12 Apr 2004; Chris Aniszczyk <zx@gentoo.org> gruntspud-0.4.6_beta.ebuild: + Version bump. 12 Apr 2004; David Holm <dholm@gentoo.org> gruntspud-0.4.5_beta.ebuild: Added to ~ppc. diff --git a/dev-util/gruntspud/Manifest b/dev-util/gruntspud/Manifest index 51211dfe1164..eb40f28e0f69 100644 --- a/dev-util/gruntspud/Manifest +++ b/dev-util/gruntspud/Manifest @@ -1,4 +1,6 @@ -MD5 dae347681cb4cd12e02cdbe20434c49b ChangeLog 471 -MD5 288ede4ece5290b83c77bbf4ae03268f gruntspud-0.4.5_beta.ebuild 1068 +MD5 7fe07a2d078660e9209e729a8de9ea2c gruntspud-0.4.5_beta.ebuild 1067 +MD5 4086256113f058de03773f82e3fd6c85 gruntspud-0.4.6_beta.ebuild 1143 +MD5 0dca27936cc60beb7a52565091373ff0 ChangeLog 600 MD5 a6ec7d7724fbd068ffb39b5be56134ed metadata.xml 157 MD5 33dd5837dbf873a7453024f763729f64 files/digest-gruntspud-0.4.5_beta 74 +MD5 5481dcb48a4eb119e5cb97441bed2eb1 files/digest-gruntspud-0.4.6_beta 74 diff --git a/dev-util/gruntspud/files/digest-gruntspud-0.4.6_beta b/dev-util/gruntspud/files/digest-gruntspud-0.4.6_beta new file mode 100644 index 000000000000..34e646407fc4 --- /dev/null +++ b/dev-util/gruntspud/files/digest-gruntspud-0.4.6_beta @@ -0,0 +1 @@ +MD5 3db859ce36b23260c8c57bc3c3547955 gruntspud-0.4.6-beta-src.tgz 2027851 diff --git a/dev-util/gruntspud/gruntspud-0.4.6_beta.ebuild b/dev-util/gruntspud/gruntspud-0.4.6_beta.ebuild new file mode 100644 index 000000000000..9898b77ed34a --- /dev/null +++ b/dev-util/gruntspud/gruntspud-0.4.6_beta.ebuild @@ -0,0 +1,44 @@ +# 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.6_beta.ebuild,v 1.1 2004/04/12 15:48:10 zx 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 || die "sed failed" +} + +src_compile() { + local antflags="dist_standalone" + use jikes && antflags="${antflags} -Dbuild.compiler=jikes" + 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} +} |