Re: [Fink-devel] Help for Wine update in tracker

2007-09-18 Thread Martin Costabel
Alexander K. Hansen wrote: http://sourceforge.net/tracker/index.php?func=detailaid=1790885group_id=17203atid=414256 I don't have an Intel Mac, so I can't built it. If somebody has a clean-build option to check out BuildDepends / Depends, that would be really good. I've got some crude

Re: [Fink-devel] Help for Wine update in tracker

2007-09-18 Thread Alexander Hansen
On 9/18/07, Martin Costabel [EMAIL PROTECTED] wrote: Alexander K. Hansen wrote: http://sourceforge.net/tracker/index.php?func=detailaid=1790885group_id=17203atid=414256 I don't have an Intel Mac, so I can't built it. If somebody has a clean-build option to check out BuildDepends /

[Fink-devel] How to replace a package?

2007-09-18 Thread Kevin Horton
I intend to take over bluefish, and update it to the latest stable version. But I want to resolve what I perceive as a confusing name of one of the variants. At version 1.0.6, one of the variants is bluefish-gnomevfs2, which is bluefish with gnome2, but without VFS. I want to replace this

Re: [Fink-devel] How to replace a package?

2007-09-18 Thread Alexander K. Hansen
Kevin Horton wrote: I intend to take over bluefish, and update it to the latest stable version. But I want to resolve what I perceive as a confusing name of one of the variants. At version 1.0.6, one of the variants is bluefish-gnomevfs2, which is bluefish with gnome2, but without VFS. I

[Fink-devel] %p in patch file?

2007-09-18 Thread Koen van der Drift
Hi, Is it possible to use %p in a patch file? I vaguely remember a while ago there was a reason not to do this, but I forgot exactly what. I haven't been following the latest developments of the project either, so I don't know if this has been changed. Basically, what I need to do is to

Re: [Fink-devel] %p in patch file?

2007-09-18 Thread John Ridgway
No, you can't use %p in a patch file. The preferred method, apparently, is to put something like: @PREFIX@ in the patch file where you would want %p, then use: PatchScript: sed 's|@PREFIX@|%p|g' %a/%n.patch | patch -p1 in your .info file. See the packaging manual. Peace - John On Sep 18,

Re: [Fink-devel] %p in patch file?

2007-09-18 Thread Alexander K. Hansen
Koen van der Drift wrote: Hi, Is it possible to use %p in a patch file? I vaguely remember a while ago there was a reason not to do this, but I forgot exactly what. I haven't been following the latest developments of the project either, so I don't know if this has been changed.

Re: [Fink-devel] How to replace a package?

2007-09-18 Thread Kevin Horton
On Tue, 18 Sep 2007 10:57:56 -0400 Alexander K. Hansen [EMAIL PROTECTED] wrote: Kevin Horton wrote: I intend to take over bluefish, and update it to the latest stable version. But I want to resolve what I perceive as a confusing name of one of the variants. At version 1.0.6, one of the

Re: [Fink-devel] %p in patch file?

2007-09-18 Thread Alexander K. Hansen
John Ridgway wrote: No, you can't use %p in a patch file. The preferred method, apparently, is to put something like: @PREFIX@ in the patch file where you would want %p, then use: PatchScript: sed 's|@PREFIX@|%p|g' %a/%n.patch | patch -p1 OK, that's righter than what I had. :-) I

Re: [Fink-devel] How to replace a package?

2007-09-18 Thread Alexander K. Hansen
Kevin Horton wrote: On Tue, 18 Sep 2007 10:57:56 -0400 Alexander K. Hansen [EMAIL PROTECTED] wrote: Kevin Horton wrote: I intend to take over bluefish, and update it to the latest stable version. But I want to resolve what I perceive as a confusing name of one of the variants.

Re: [Fink-devel] How to replace a package?

2007-09-18 Thread Alexander K. Hansen
Kevin Horton wrote: On Tue, 18 Sep 2007 11:39:14 -0400 Alexander K. Hansen [EMAIL PROTECTED] wrote: Kevin Horton wrote: On Tue, 18 Sep 2007 10:57:56 -0400 Alexander K. Hansen [EMAIL PROTECTED] wrote: Kevin Horton wrote: I intend to take over bluefish,

Re: [Fink-devel] %p in patch file?

2007-09-18 Thread Alexander K. Hansen
Alexander K. Hansen wrote: John Ridgway wrote: No, you can't use %p in a patch file. The preferred method, apparently, is to put something like: @PREFIX@ in the patch file where you would want %p, then use: PatchScript: sed 's|@PREFIX@|%p|g' %a/%n.patch | patch -p1 OK,

Re: [Fink-devel] %p in patch file?

2007-09-18 Thread Koen van der Drift
oops. No -i: PatchScript: sed -e 's|@PREFIX@|%p|g' %a/%n.patch | patch -p1 Shouldn't barge in on these technical issues when I can't get to my Mac. :-( I'm not at my Mac either right now, but will try this later tonight. Thanks all for the suggestions, - Koen.

Re: [Fink-devel] How to replace a package?

2007-09-18 Thread Kevin Horton
On 18 Sep 2007, at 12:08, Alexander K. Hansen wrote: Kevin Horton wrote: On Tue, 18 Sep 2007 11:39:14 -0400 Alexander K. Hansen [EMAIL PROTECTED] wrote: Kevin Horton wrote: On Tue, 18 Sep 2007 10:57:56 -0400 Alexander K. Hansen [EMAIL PROTECTED] wrote: Kevin Horton wrote: I intend

Re: [Fink-devel] How to replace a package?

2007-09-18 Thread Alexander K. Hansen
Kevin Horton wrote: On 18 Sep 2007, at 12:08, Alexander K. Hansen wrote: Kevin Horton wrote: On Tue, 18 Sep 2007 11:39:14 -0400 Alexander K. Hansen [EMAIL PROTECTED] wrote: Kevin Horton wrote: On Tue, 18 Sep 2007 10:57:56 -0400 Alexander K. Hansen [EMAIL PROTECTED] wrote: Kevin

Re: [Fink-devel] %p in patch file?

2007-09-18 Thread Koen van der Drift
On Sep 18, 2007, at 11:43 AM, Alexander K. Hansen wrote: PatchScript: sed -e 's|@PREFIX@|%p|g' %a/%n.patch | patch -p1 Hmm, since the package is versioned (perlmodule), based on other versioned packages, I changed it slightly to: sed -e 's|@PREFIX@|%p|g' %a/%{ni}.patch | patch -p1 But I

Re: [Fink-devel] %p in patch file?

2007-09-18 Thread Daniel Macks
On Tue, Sep 18, 2007 at 09:22:37PM -0400, Koen van der Drift wrote: On Sep 18, 2007, at 11:43 AM, Alexander K. Hansen wrote: PatchScript: sed -e 's|@PREFIX@|%p|g' %a/%n.patch | patch -p1 Hmm, since the package is versioned (perlmodule), based on other versioned packages, I changed it

Re: [Fink-devel] How to replace a package?

2007-09-18 Thread Martin Costabel
Alexander K. Hansen wrote: Kevin Horton wrote: On 18 Sep 2007, at 12:08, Alexander K. Hansen wrote: Kevin Horton wrote: On Tue, 18 Sep 2007 11:39:14 -0400 Alexander K. Hansen [EMAIL PROTECTED] wrote: Kevin Horton wrote: On Tue, 18 Sep 2007 10:57:56 -0400 Alexander K. Hansen [EMAIL