public inbox for eclipse@sourceware.org
 help / color / mirror / Atom feed
* ant support?
@ 2003-08-04 16:23 Marc Boorshtein
  2003-08-04 17:26 ` Tom Tromey
  0 siblings, 1 reply; 5+ messages in thread
From: Marc Boorshtein @ 2003-08-04 16:23 UTC (permalink / raw)
  To: eclipse

I got it up and running, seems to be working except for one thing, ant
doen't work (neither the view or the launch utility).  Anyone have luck
with this?

thanks
-- 
Marc Boorshtein <marc.boorshtein@octetstring.com>
OctetString

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: ant support?
  2003-08-04 16:23 ant support? Marc Boorshtein
@ 2003-08-04 17:26 ` Tom Tromey
  2003-08-04 17:43   ` Marc Boorshtein
  0 siblings, 1 reply; 5+ messages in thread
From: Tom Tromey @ 2003-08-04 17:26 UTC (permalink / raw)
  To: Marc Boorshtein; +Cc: eclipse

>>>>> "Marc" == Marc Boorshtein <marc.boorshtein@octetstring.com> writes:

Marc> I got it up and running, seems to be working except for one
Marc> thing, ant doen't work (neither the view or the launch utility).
Marc> Anyone have luck with this?

There's a bug fix for this that I checked in (here), but not in time
for this particular release.  The patch is available though:

https://bugs.eclipse.org/bugs/show_bug.cgi?id=40972

This fixes some of the ant problems anyway.
Apply this patch to eclipse and rebuild the RPM.

Tom

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: ant support?
  2003-08-04 17:26 ` Tom Tromey
@ 2003-08-04 17:43   ` Marc Boorshtein
  2003-08-04 18:54     ` Tom Tromey
  0 siblings, 1 reply; 5+ messages in thread
From: Marc Boorshtein @ 2003-08-04 17:43 UTC (permalink / raw)
  To: tromey; +Cc: eclipse

ok, thanks!  this might sound like a dumb question, but how do I apply
this patch?  I've never worked with patches and rpms.

Thanks
Marc Boorshtein

On Mon, 2003-08-04 at 13:19, Tom Tromey wrote:
> >>>>> "Marc" == Marc Boorshtein <marc.boorshtein@octetstring.com> writes:
> 
> Marc> I got it up and running, seems to be working except for one
> Marc> thing, ant doen't work (neither the view or the launch utility).
> Marc> Anyone have luck with this?
> 
> There's a bug fix for this that I checked in (here), but not in time
> for this particular release.  The patch is available though:
> 
> https://bugs.eclipse.org/bugs/show_bug.cgi?id=40972
> 
> This fixes some of the ant problems anyway.
> Apply this patch to eclipse and rebuild the RPM.
> 
> Tom
-- 
Marc Boorshtein <marc.boorshtein@octetstring.com>
OctetString

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: ant support?
  2003-08-04 17:43   ` Marc Boorshtein
@ 2003-08-04 18:54     ` Tom Tromey
  2003-08-04 18:56       ` Marc Boorshtein
  0 siblings, 1 reply; 5+ messages in thread
From: Tom Tromey @ 2003-08-04 18:54 UTC (permalink / raw)
  To: Marc Boorshtein; +Cc: eclipse

>>>>> "Marc" == Marc Boorshtein <marc.boorshtein@octetstring.com> writes:

Marc> ok, thanks!  this might sound like a dumb question, but how do I
Marc> apply this patch?  I've never worked with patches and rpms.

Hmm, there's no simple way to explain it.  In the below I assume
you're going to go out on the net (or man pages or whatever) and read
up about rpmbuild, patch, etc.

The simplest thing to do is to make a new eclipse source file and
then rebuild.

So first, install (rpm -i) prepare the SRPM (rpmbuild -bp).

The new eclipse build directory will be ../BUILD/eclipse-something.

Go to the ant plugin subdirectory: plugins/org.eclipse.ant.core.
Apply the patch with "patch -p0 < patch-file".
Now go back to the eclipse build directory (../..).

Run:

./build -bc /usr/share/java/libgcj-3.5-tree-ssa.jar -arch x86 -os linux -ws gtk -target makeSourceTarball

This will make a new eclipse-src.tar.gz file (in "..").
Copy this over the eclipse-src.tar.gz in SOURCES.

Now go to SPECS and do a full eclipse build ("rpmbuild -ba
eclipse-blahblah.spec").


I know that's pretty brief, but I don't have time to go into all the
details.  I'm afraid you'll have to do a lot of the legwork on your
own.

For this to work you'll need the ant RPM (and all its dependencies)
installed.  You'll also need gcc-ssa and friends.

Tom

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: ant support?
  2003-08-04 18:54     ` Tom Tromey
@ 2003-08-04 18:56       ` Marc Boorshtein
  0 siblings, 0 replies; 5+ messages in thread
From: Marc Boorshtein @ 2003-08-04 18:56 UTC (permalink / raw)
  To: tromey; +Cc: eclipse

its a great start, thanks!


On Mon, 2003-08-04 at 14:47, Tom Tromey wrote:
> >>>>> "Marc" == Marc Boorshtein <marc.boorshtein@octetstring.com> writes:
> 
> Marc> ok, thanks!  this might sound like a dumb question, but how do I
> Marc> apply this patch?  I've never worked with patches and rpms.
> 
> Hmm, there's no simple way to explain it.  In the below I assume
> you're going to go out on the net (or man pages or whatever) and read
> up about rpmbuild, patch, etc.
> 
> The simplest thing to do is to make a new eclipse source file and
> then rebuild.
> 
> So first, install (rpm -i) prepare the SRPM (rpmbuild -bp).
> 
> The new eclipse build directory will be ../BUILD/eclipse-something.
> 
> Go to the ant plugin subdirectory: plugins/org.eclipse.ant.core.
> Apply the patch with "patch -p0 < patch-file".
> Now go back to the eclipse build directory (../..).
> 
> Run:
> 
> ./build -bc /usr/share/java/libgcj-3.5-tree-ssa.jar -arch x86 -os linux -ws gtk -target makeSourceTarball
> 
> This will make a new eclipse-src.tar.gz file (in "..").
> Copy this over the eclipse-src.tar.gz in SOURCES.
> 
> Now go to SPECS and do a full eclipse build ("rpmbuild -ba
> eclipse-blahblah.spec").
> 
> 
> I know that's pretty brief, but I don't have time to go into all the
> details.  I'm afraid you'll have to do a lot of the legwork on your
> own.
> 
> For this to work you'll need the ant RPM (and all its dependencies)
> installed.  You'll also need gcc-ssa and friends.
> 
> Tom
-- 
Marc Boorshtein <marc.boorshtein@octetstring.com>
OctetString

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2003-08-04 18:56 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-08-04 16:23 ant support? Marc Boorshtein
2003-08-04 17:26 ` Tom Tromey
2003-08-04 17:43   ` Marc Boorshtein
2003-08-04 18:54     ` Tom Tromey
2003-08-04 18:56       ` Marc Boorshtein

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).