[Fink-devel] /usr/lib/libiconv in Fink's .la files

2009-06-19 Thread Monic Polynomial
Hiya,

I've noticed that a bunch of .la files in /sw/lib specify /usr/lib/ 
libiconv.la in their dependency_libs entry. Is it expected behaviour  
(maybe because of inheritance from libXft.la, libcairo.la,  
libfontconfig.la in /usr/X11/lib) or should they be using Fink's  
libiconv instead?


Cheers,

--
monipol


--
Are you an open source citizen? Join us for the Open Source Bridge conference!
Portland, OR, June 17-19. Two days of sessions, one day of unconference: $250.
Need another reason to go? 24-hour hacker lounge. Register today!
http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.devel


Re: [Fink-devel] Fetching fink binaries from different architectures

2009-06-14 Thread Monic Polynomial
On 14/06/2009, at 10:20, Ebrahim Mayat wrote:
> In my Xcode project I need to link to the universal binary version of
> "libsndfile.a" or even perhaps libsndfile.1.dylib. I figured one way
> could be to use "apt-get " to fetch the libraries from the different
> architectures and the stitch them together using "lipo". Only problem
> is how could I fetch the respective libraries from the architectures
> (i386 and possibly x86_64) that are not native to my ppc machine. This
> will save me lots of time from having to first compile the universal
> library versions of the dependencies of libsndfile1 before I could
> make the universal binary version of libsndfile1.


I'm clueless about building universal libraries. That said, the  
following describes how to obtain and extract binary packages.

You may download Fink's binary packages for 10.5 stable from

http://bindist.finkmirrors.net/bindist/dists/10.5/

You may extract the contents of a .deb file with dpkg-deb:

dpkg-deb --extract package.deb destinationdirectory

Warning: the instructions below use *unofficial* binary distributions  
that are not supported by the Fink project itself.

Todai's binary packages for 10.5 i386 unstable are available in

http://fink.sodan.ecc.u-tokyo.ac.jp/apt/10.5/dists/unstable/main/binary-darwin-i386/

Todai doesn't build x86_64 binary packages yet. Scott does but his  
selection of binary packages are mostly for scientific computing and  
he hasn't provided a libsndfile1-shlibs binary package.

Warning: the instructions above use *unofficial* binary distributions  
that are not supported by the Fink project itself.


Cheers,

--
monipol


--
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables unlimited
royalty-free distribution of the report engine for externally facing 
server and web deployment.
http://p.sf.net/sfu/businessobjects
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.devel


Re: [Fink-devel] Bug in qt4-mac-4.5

2009-06-02 Thread Monic Polynomial
On 02/06/2009, at 12:12, Martin Costabel wrote:
> The most difficult thing was to find out how to print the value of a
> macro at a given moment. From a diving expedition into the depths of  
> the
> docs, I brought home some macros that give the following small example
> program in C:
>
> #include 
> // stringify the value of a macro for printing
> #define str(x) #x
> #define xstr(x) str(x)
> // play with replacing macros
> #define OLD_DEBUG 1
> #define DEBUG OLD_DEBUG
> int main(){
> printf("Before: %s\n", xstr(DEBUG));
> #undef OLD_DEBUG
> printf("After : %s\n", xstr(DEBUG));
> return(0);
> }
>
> If you compile and run this, it prints
>
> costabel% ./a.out
> Before: 1
> After : OLD_DEBUG
>
> I don't know enough to say that there are no analogues of \edef or  
> \let,
> but I haven't come across them yet.


Martin,

You may use GCC flags -E and -dD to achieve that in compile-time  
rather than run-time. For example,

gcc -E -dD program.c -o program.e

outputs program.e, the post-processed version of program.c. -E tells  
gcc to preprocess the file but not compile/build it, and -dD tells gcc  
to output the values of macros.


Cheers,

--
monipol


--
OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
looking to deploy the next generation of Solaris that includes the latest 
innovations from Sun and the OpenSource community. Download a copy and 
enjoy capabilities such as Networking, Storage and Virtualization. 
Go to: http://p.sf.net/sfu/opensolaris-get
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.devel


[Fink-devel] New Fink-related blog

2009-06-01 Thread Monic Polynomial
There's a new blog on the block:

http://finkers.wordpress.com/

Feel free to contribute. Packagers might want to announce packages- 
that-could-use-some-testing, ask for feedback, write tips on Fink, its  
packages, or porting software to Mac OS X. Drop me an e-mail if you  
want to be added as an author.


Cheers,

--
monipol


--
Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT 
is a gathering of tech-side developers & brand creativity professionals. Meet
the minds behind Google Creative Lab, Visual Complexity, Processing, & 
iPhoneDevCamp as they present alongside digital heavyweights like Barbarian 
Group, R/GA, & Big Spaceship. http://p.sf.net/sfu/creativitycat-com 
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.devel


Re: [Fink-devel] twinkle

2009-05-30 Thread Monic Polynomial
On 30/05/2009, at 15:35, Nikhil Kulkarni wrote:
> Hi All,
> We are building fink package of Twinkle VOIP/Chat application. We have
> successfully built the package, i.e. the binary package .deb is  
> built and we
> are able to install the package. But when we run the apllication we  
> are
> getting the below error.
>
> macoss-mac-mini:~ macos$ twinkle
> terminate called after throwing an instance of 'std::string'
> Abort trap
>
> We had got a reply some time back to catch the thrown error but the  
> source
> is written in C and C++. Hence that didnt help.

Why hasn't it helped? You are definitely using C++ because of  
std::string, and at some point in your code (or a library it uses) an  
std::string is being thrown as a C++ exception. You _must_ catch that  
exception with either

catch (std::string s)

or

catch (...)

> Also since the binary package is already built, shall I release the  
> package
> on fink so that someone can try using the application and get us the
> feedback.
>
> Could you please help as we are in the final stage of building the  
> package.

You may submit the package description (and patch, if there is one) to  
Fink's SourceForge.net 'Package Submission' tracker, and state clearly  
in the submission form that you haven't been able to run the program  
and you'd like some help. After that, send the tracker's item URL to  
this list and maybe someone might help you.


Cheers,

--
monipol


--
Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT 
is a gathering of tech-side developers & brand creativity professionals. Meet
the minds behind Google Creative Lab, Visual Complexity, Processing, & 
iPhoneDevCamp as they present alongside digital heavyweights like Barbarian 
Group, R/GA, & Big Spaceship. http://p.sf.net/sfu/creativitycat-com 
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.devel


Re: [Fink-devel] test-pod-pm vs x86_64 10.5 fink

2009-05-19 Thread Monic Polynomial
On 18/05/2009, at 21:23, Jack Howarth wrote:
>  I am finding that while building 'fink -m install gnuplot'
> the test-pod-pm build fails as follows...

(snip)

> Is anyone else seeing this with 'fink -m install test-pod-pm' under  
> x86_64 10.5 fink?


Same here (x86_64 10.5).


--
monipol


--
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables 
unlimited royalty-free distribution of the report engine 
for externally facing server and web deployment. 
http://p.sf.net/sfu/businessobjects
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.devel


Re: [Fink-devel] liboil

2009-05-19 Thread Monic Polynomial
On 18/05/2009, at 21:45, Jack Howarth wrote:
>  Argh. Didn't we fix this before? The liboil package is still
> setting CXX and CC to the explicit compiler paths which
> breaks the x86_64 fink builds on 10.5.


Since liboil-0.3 has a maintainer, I'm CC'ing him.


--
monipol


--
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables 
unlimited royalty-free distribution of the report engine 
for externally facing server and web deployment. 
http://p.sf.net/sfu/businessobjects
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.devel


Re: [Fink-devel] Is it possible to parse %f?

2009-05-16 Thread Monic Polynomial
On 16/05/2009, at 18:59, Benjamin Reed wrote:
> On 5/16/09 1:31 PM, Daniel Macks wrote:
>
>> I think that would handle dependency formats ("foo (>= 1.0-2)") not
>> %f. Maybe Engine::expand_packages? I think that's what processes the
>> packages specified on fink commandline.
>
> I thought without a >= or whatever, it just gives you the latest
> version.  That's what it uses when going through the dep loop.
>
> That said, yeah, you don't want to "expand percents" yourself, just  
> ask
> the API for the latest package with the name you're parsing.


The problem being I don't know the package name in advance but only  
its fullname (%f) instead as sent by Fink::PkgVersion::phase_activate().


Cheers,

--
monipol


--
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables 
unlimited royalty-free distribution of the report engine 
for externally facing server and web deployment. 
http://p.sf.net/sfu/businessobjects
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.devel


Re: [Fink-devel] Is it possible to parse %f?

2009-05-16 Thread Monic Polynomial
On 16/05/2009, at 14:31, Daniel Macks wrote:
> On Sat, May 16, 2009 at 12:48:42PM -0400, Benjamin Reed wrote:
>> On 5/16/09 12:07 PM, Monic Polynomial wrote:
>>> I'm developing a Fink notification plugin and I need to parse the  
>>> list
>>> of package names that the plugin receives from Fink.
>>> Fink::PkgVersion::phase_activate() sends a notification whose
>>> description contains the packages formatted as
>>> Fink::PkgVersion::get_fullname(), the same as %f.
>>
>> Generally you'll use Fink::Package's get_matching_versions:
>>
>>   get_matching_versions
>> my @pvs = $po?>get_matching_versions($spec);
>> my @pvs = $po?>get_matching_versions($spec,  
>> @choose_from);
>>
>>   Find all versions of this package which satisfy the given
>>   Debian version specification. See
>>   Fink::Services::version_cmp for details on version
>>   specifications.
>
> I think that would handle dependency formats ("foo (>= 1.0-2)") not
> %f. Maybe Engine::expand_packages? I think that's what processes the
> packages specified on fink commandline.


Fink::Engine::expand_packages() did the trick - it calls  
Fink::PkgVersion::match_package(), which plays with the various  
possibilities of splitting the fullname using '-' as a field separator  
until it finds a package name known by Fink (recall that both the name  
and the version may contain '-').


Cheers,

--
monipol


--
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables 
unlimited royalty-free distribution of the report engine 
for externally facing server and web deployment. 
http://p.sf.net/sfu/businessobjects
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.devel


Re: [Fink-devel] Is it possible to parse %f?

2009-05-16 Thread Monic Polynomial
On 16/05/2009, at 12:21, Daniel Macks wrote:
> On Sat, May 16, 2009 at 10:35:29AM -0300, Monic Polynomial wrote:
>> %f is the full package name (%n-%v-%r), where %n is the package name,
>> %v is its version, and %r its revision. Is it possible to parse %f  
>> and
>> split it into its three components?
>
> No.
>
> Not sure what you're trying to accomplish, but there's probably a  
> better way.


I'm developing a Fink notification plugin and I need to parse the list  
of package names that the plugin receives from Fink.  
Fink::PkgVersion::phase_activate() sends a notification whose  
description contains the packages formatted as  
Fink::PkgVersion::get_fullname(), the same as %f.

I understand that Fink's notification system is primarily intended to  
output human-readable strings and hence get_fullname() shouldn't  
normally be an issue, but it is a problem for my plugin. :)


Cheers,

--
monipol


--
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables 
unlimited royalty-free distribution of the report engine 
for externally facing server and web deployment. 
http://p.sf.net/sfu/businessobjects
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.devel


[Fink-devel] Is it possible to parse %f?

2009-05-16 Thread Monic Polynomial
%f is the full package name (%n-%v-%r), where %n is the package name,  
%v is its version, and %r its revision. Is it possible to parse %f and  
split it into its three components?


Cheers,

--
monipol


--
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables 
unlimited royalty-free distribution of the report engine 
for externally facing server and web deployment. 
http://p.sf.net/sfu/businessobjects
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.devel


Re: [Fink-devel] No acknowledgement of file upload

2009-05-12 Thread Monic Polynomial
On 12/05/2009, at 09:52, Ebrahim Mayat wrote:
> I have uploaded (twice recently) an updated info file for a new
> package submission (ID 2727140) without receiving any acknowledgement.
> Since this was not the case in the past, I wondered if this was the
> new procedure.


There are two issues here:

* Whenever you submit a package, please set Group: to Undergoing  
Validation (this is described in the 'Add new' SourceForge.net page  
for the Package Submissions tracker). This field is used by committers  
to list which (potentially new) packages should be validated and, if  
everything is ok, committed to Fink;

* As of late, Fink has had scarce resources to process package  
submissions. _Sometimes_ contacting one committer directly (probably  
someone that packages similar/related software) speeds up this process.


Cheers,

--
monipol


--
The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
production scanning environment may not be a perfect world - but thanks to
Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
Series Scanner you'll get full speed at 300 dpi even with all image 
processing features enabled. http://p.sf.net/sfu/kodak-com
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.devel


Re: [Fink-devel] [RFC] test finkinfo for TeX Live

2009-05-06 Thread Monic Polynomial
On 06/05/2009, at 14:34, Tomoaki Okayama wrote:
> In order to checkout the experimental tree, please do:
>
> $ cvs -d :pserver:anonym...@fink.cvs.sourceforge.net:/cvsroot/fink  
> checkout -P experimental


Under which directory should I checkout this tree? /sw/fink/dists/ 
local/main? Would it be possible to configure Fink to automatically  
selfupdate it?


--
monipol


--
The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
production scanning environment may not be a perfect world - but thanks to
Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
Series Scanner you'll get full speed at 300 dpi even with all image 
processing features enabled. http://p.sf.net/sfu/kodak-com
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.devel


Re: [Fink-devel] [RFC] test finkinfo for TeX Live

2009-05-06 Thread Monic Polynomial
On 06/05/2009, at 13:52, Tomoaki Okayama wrote:
> I renewed
> * libkpathsea4.info
> and newly made
> * texlive-texmf.info (based on tetex-texmf.info)
> * texlive.info   (based on tetex.info)
> in order to switch from teTeX to TeX Live. These are committed to
> the repository: experimental/todai/ecc-10.4/main/finkinfo/text/.
>
> I've already tested them and the build has been successfully
> completed in a clean environment. However, I'm not sure for the
> other environment. So if you have a time, please test them. Your
> reports, advices and comments are greatly appreciated.
>
> The packaging way is almost the same as before, with a exception
> that tetex doesn't conflict with (oncoming) ptex. I'm now working
> on the ptex issues.


What is the procedure to enable the experimental tree?


--
monipol


--
The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
production scanning environment may not be a perfect world - but thanks to
Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
Series Scanner you'll get full speed at 300 dpi even with all image 
processing features enabled. http://p.sf.net/sfu/kodak-com
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.devel


[Fink-devel] Fwd: Fink build error: stegdetect-0.6-3 on Intel OS 10.5.6

2009-04-29 Thread Monic Polynomial
FYI

Begin forwarded message:

> From: James Gibbs 
> Date: 24 de abril de 2009 22h17min50s GMT-03:00
> To: Monic Polynomial 
> Subject: Re: Fink build error: stegdetect-0.6-3 on Intel OS 10.5.6
>
> I'm afraid I haven't worked on stegdetect or any other fink project  
> for years. You will have to get help from the mailing list.
>
> On Apr 23, 2009, at 2:22 PM, Monic Polynomial wrote:
>
>> (detected via Todai's build logs)
>>
>> stegdetect-0.6-3 fails to build on Intel OS 10.5.6.
>>
>> $ fink -V | head -n 2
>> Package manager version: 0.29.2
>> Distribution version: selfupdate-rsync Thu Apr 23 15:07:00 2009,  
>> 10.5, i386
>>
>> $ fink --build-as-nobody rebuild stegdetect
>>
>> (...)
>>
>> gcc -DHAVE_CONFIG_H -I. -I. -I.   -DMAGIC='"/sw/share/stegdetect/ 
>> magic"'  -g -O2 -c magic.c
>> In file included from magic.c:2:
>> magic.inc:1: error: missing terminating " character
>> In file included from magic.c:2:
>> magic.inc:2:3: error: invalid preprocessing directive #Magic
>> magic.c:3: error: 'n' undeclared here (not in a function)
>> make[2]: *** [magic.o] Error 1
>> make[1]: *** [all-recursive] Error 1
>> make: *** [all-recursive-am] Error 2
>> ### execution of make failed, exit code 2
>> ### execution of /var/tmp/tmp.4.hEUnfF failed, exit code 2
>> Removing runtime build-lock...
>> Removing build-lock package...
>> /sw/bin/dpkg-lockwait -r fink-buildlock-stegdetect-0.6-3
>> (Reading database ... 58913 files and directories currently  
>> installed.)
>> Removing fink-buildlock-stegdetect-0.6-3 ...
>> Failed: phase compiling: stegdetect-0.6-3 failed
>>
>>
>> This build error has been reproduced on my box. If you want to  
>> check Todai's full build log, it's available at
>> http://fink.sodan.ecc.u-tokyo.ac.jp/build-10.5-i386/2009-04-20/stegdetect.err.gz


--
Register Now & Save for Velocity, the Web Performance & Operations 
Conference from O'Reilly Media. Velocity features a full day of 
expert-led, hands-on workshops and two days of sessions from industry 
leaders in dedicated Performance & Operations tracks. Use code vel09scf 
and Save an extra 15% before 5/3. http://p.sf.net/sfu/velocityconf
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.devel


[Fink-devel] Fwd: Fink build error: advancemenu-2.3.7-1012 on Intel OS 10.5.6

2009-04-29 Thread Monic Polynomial
FYI

Begin forwarded message:

> From: James Gibbs 
> Date: 24 de abril de 2009 22h19min34s GMT-03:00
> To: Monic Polynomial 
> Subject: Re: Fink build error: advancemenu-2.3.7-1012 on Intel OS  
> 10.5.6
>
> OK, I knew I had two fink messages to respond to, but I hadn't  
> realized they were both from you. Sorry I couldn't help you.
>
> James
>
> On Apr 20, 2009, at 8:29 AM, Monic Polynomial wrote:
>
>> (detected via Todai’s build logs)
>>
>> advancemenu-2.3.7-1012 fails to build on Intel OS 10.5.6.
>>
>> $ fink -V | head -n 2
>> Package manager version: 0.29.2
>> Distribution version: selfupdate-rsync Mon Apr 20 07:43:04 2009,  
>> 10.5, i386
>>
>> $ fink --build-as-nobody rebuild advancemenu
>>
>> (...)
>>
>> obj/menu/darwin/blend/linux/target.o
>> advance/linux/target.c:31:1: warning: "_GNU_SOURCE" redefined
>> :1:1: warning: this is the location of the previous  
>> definition
>> advance/linux/target.c: In function 'target_wrap':
>> advance/linux/target.c:576: warning: pointer targets in passing  
>> argument 2 of 'stoken' differ in signedness
>> advance/linux/target.c: In function 'target_signal':
>> advance/linux/target.c:698: error: request for member 'gregs' in  
>> something not a structure or union
>> advance/linux/target.c:698: error: 'REG_EIP' undeclared (first use  
>> in this function)
>> advance/linux/target.c:698: error: (Each undeclared identifier is  
>> reported only once
>> advance/linux/target.c:698: error: for each function it appears in.)
>> advance/linux/target.c:816: error: request for member 'gregs' in  
>> something not a structure or union
>> advance/linux/target.c:816: error: 'REG_EAX' undeclared (first use  
>> in this function)
>> advance/linux/target.c:816: error: request for member 'gregs' in  
>> something not a structure or union
>> advance/linux/target.c:816: error: 'REG_EBX' undeclared (first use  
>> in this function)
>> advance/linux/target.c:816: error: request for member 'gregs' in  
>> something not a structure or union
>> advance/linux/target.c:816: error: 'REG_ECX' undeclared (first use  
>> in this function)
>> advance/linux/target.c:816: error: request for member 'gregs' in  
>> something not a structure or union
>> advance/linux/target.c:816: error: 'REG_EDX' undeclared (first use  
>> in this function)
>> advance/linux/target.c:816: error: request for member 'gregs' in  
>> something not a structure or union
>> advance/linux/target.c:816: error: 'REG_ESI' undeclared (first use  
>> in this function)
>> advance/linux/target.c:816: error: request for member 'gregs' in  
>> something not a structure or union
>> advance/linux/target.c:816: error: 'REG_EDI' undeclared (first use  
>> in this function)
>> advance/linux/target.c:817: error: request for member 'gregs' in  
>> something not a structure or union
>> advance/linux/target.c:817: error: 'REG_EBP' undeclared (first use  
>> in this function)
>> advance/linux/target.c:817: error: request for member 'gregs' in  
>> something not a structure or union
>> advance/linux/target.c:817: error: 'REG_ESP' undeclared (first use  
>> in this function)
>> advance/linux/target.c:817: error: request for member 'gregs' in  
>> something not a structure or union
>> advance/linux/target.c:817: error: request for member 'gregs' in  
>> something not a structure or union
>> advance/linux/target.c:817: error: 'REG_EFL' undeclared (first use  
>> in this function)
>> advance/linux/target.c:817: error: request for member 'gregs' in  
>> something not a structure or union
>> advance/linux/target.c:817: error: 'REG_ERR' undeclared (first use  
>> in this function)
>> advance/linux/target.c:817: error: request for member 'gregs' in  
>> something not a structure or union
>> advance/linux/target.c:817: error: 'REG_TRAPNO' undeclared (first  
>> use in this function)
>> make: *** [obj/menu/darwin/blend/linux/target.o] Error 1
>> ### execution of make failed, exit code 2
>> ### execution of /var/tmp/tmp.4.3XpLST failed, exit code 2
>> Removing runtime build-lock...
>> Removing build-lock package...
>> /sw/bin/dpkg-lockwait -r fink-buildlock-advancemenu-2.3.7-1012
>> (Reading database ... 113773 files and directories curr

[Fink-devel] Fink build error: wwwoffle-2.7h-2 on Intel OS 10.5.6

2009-04-23 Thread Monic Polynomial
(detected via Todai's build logs)

wwwoffle-2.7h-2 fails to build on Intel OS 10.5.6.

$ fink -V | head -n 2
Package manager version: 0.29.2
Distribution version: selfupdate-rsync Thu Apr 23 15:07:00 2009, 10.5,  
i386

$ which flex; flex --version
/usr/bin/flex
flex 2.5.33

$ fink --build-as-nobody rebuild wwwoffle

(...)

[ ! "flex" = "flex" ] || flex -i -L -pp -B -F -8 -s -Phtml_yy html.l
[   "flex" = "flex" ] || flex -i -L  -Phtml_yy html.l
gcc -c -g -O2 html.c -o html.o
lex.html_yy.c:5591:30: error: macro "html_yywrap" passed 1 arguments,  
but takes just 0
make[1]: *** [html.o] Error 1
make: *** [compile] Error 2
### execution of make failed, exit code 2
### execution of /var/tmp/tmp.4.Tga0xh failed, exit code 2
Removing runtime build-lock...
Removing build-lock package...
/sw/bin/dpkg-lockwait -r fink-buildlock-wwwoffle-2.7h-2
(Reading database ... 74248 files and directories currently installed.)
Removing fink-buildlock-wwwoffle-2.7h-2 ...
Failed: phase compiling: wwwoffle-2.7h-2 failed


This build error has been reproduced on my box. If you want to check  
Todai's full build log, it's available at
http://fink.sodan.ecc.u-tokyo.ac.jp/build-10.5-i386/2009-04-20/wwwoffle.err.gz


Cheers,

--
monipol


--
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensign option that enables unlimited
royalty-free distribution of the report engine for externally facing 
server and web deployment.
http://p.sf.net/sfu/businessobjects
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.devel


[Fink-devel] Fink build error: tk-tablematrix-pm586-1.2-2 on Intel OS 10.5.6

2009-04-23 Thread Monic Polynomial
(detected via Todai's build logs)

tk-tablematrix-pm586-1.2-2 fails to build on Intel OS 10.5.6.

$ fink -V | head -n 2
Package manager version: 0.29.2
Distribution version: selfupdate-rsync Thu Apr 23 15:07:00 2009, 10.5,  
i386

$ which perl5.8.6
/sw/bin/perl5.8.6

$ fink --build-as-nobody rebuild tk-tablematrix-pm586

(...)

Test Compiling -DTIMEOFDAY_DOTS config/tod.c
Problem gettimeofday()
Using -L/usr/X11R6/lib to find /usr/X11R6/lib/libX11.la
Using -I/usr/X11R6/include to find /usr/X11R6/include/X11/Xlib.h
### execution of perl5.8.6 failed, exit code 10
### execution of /var/tmp/tmp.2.HS6qef failed, exit code 10
Removing runtime build-lock...
Removing build-lock package...
/sw/bin/dpkg-lockwait -r fink-buildlock-tk-tablematrix-pm586-1.2-2
(Reading database ... 73253 files and directories currently installed.)
Removing fink-buildlock-tk-tablematrix-pm586-1.2-2 ...
Failed: phase compiling: tk-tablematrix-pm586-1.2-2 failed


This build error has been reproduced on my box. If you want to check  
Todai's full build log, it's available at
http://fink.sodan.ecc.u-tokyo.ac.jp/build-10.5-i386/2009-04-20/tk-tablematrix-pm586.err.gz


Cheers,

--
monipol


--
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensign option that enables unlimited
royalty-free distribution of the report engine for externally facing 
server and web deployment.
http://p.sf.net/sfu/businessobjects
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.devel


[Fink-devel] Fink build error: silc-client-1.0.1-102 on Intel OS 10.5.6

2009-04-23 Thread Monic Polynomial
(detected via Todai's build logs)

silc-client-1.0.1-102 fails to build on Intel OS 10.5.6 if perl5.8.8  
is installed but perl5.8.6 isn't.

I'm sending this to -devel because I can't reach the maintainer,  
William Dell Wisner, at the e-mail address listed in the package  
description (NXDOMAIN).

$ fink -V | head -n 2
Package manager version: 0.29.2
Distribution version: selfupdate-rsync Thu Apr 23 11:43:26 2009, 10.5,  
i386

$ fink show-deps silc-client
Information about 8738 packages read in 1 seconds.

 From /sw/fink/dists/unstable/crypto/finkinfo/silc-client.info:

BuildDepends: fink (>= 0.24.12), glib, perl586-core | perl588-core
PatchScript: <<
   ...
   make perlpath=perl5.8.6
<<

$ fink --build-as-nobody rebuild silc-client

(...)

Making all in perl
cat ../../docs/signals.txt | perl5.8.6 ./get-signals.pl > perl-signals- 
list.h
/bin/sh: perl5.8.6: command not found
make[4]: *** [perl-signals-list.h] Error 127
make[3]: *** [all-recursive] Error 1
make[2]: *** [all-recursive] Error 1
make[1]: *** [all] Error 2
make: *** [all-recursive] Error 1
### execution of make failed, exit code 2
### execution of /var/tmp/tmp.4.nVDDfc failed, exit code 2
Removing runtime build-lock...
Removing build-lock package...
/sw/bin/dpkg-lockwait -r fink-buildlock-silc-client-1.0.1-102
(Reading database ... 58611 files and directories currently installed.)
Removing fink-buildlock-silc-client-1.0.1-102 ...
Failed: phase compiling: silc-client-1.0.1-102 failed


This build error has been reproduced on my box. If you want to check  
Todai's full build log, it's available at
http://fink.sodan.ecc.u-tokyo.ac.jp/build-10.5-i386/2009-04-20/silc-client.err.gz


Cheers,

--
monipol


--
Stay on top of everything new and different, both inside and 
around Java (TM) technology - register by April 22, and save
$200 on the JavaOne (SM) conference, June 2-5, 2009, San Francisco.
300 plus technical and hands-on sessions. Register today. 
Use priority code J9JMT32. http://p.sf.net/sfu/p
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.devel


[Fink-devel] Fink build error: sendfile-2.1a-1005 on Intel OS 10.5.6

2009-04-23 Thread Monic Polynomial
(detected via Todai's build logs)

sendfile-2.1a-1005 fails to build on Intel OS 10.5.6.

$ fink -V | head -n 2
Package manager version: 0.29.2
Distribution version: selfupdate-rsync Thu Apr 23 11:43:26 2009, 10.5,  
i386

$ fink --build-as-nobody rebuild sendfile

(...)

cc -O2 -I/sw/include -DHAVE_STRERROR -DDARWIN -c sendfiled.c
sendfiled.c: In function 'msg2tty':
sendfiled.c:2473: warning: 'utmp' is deprecated (declared at /usr/ 
include/utmp.h:97)
sendfiled.c:2543: error: 'struct utmp' has no member named 'ut_user'
sendfiled.c:2544: error: 'struct utmp' has no member named 'ut_type'
sendfiled.c:2544: error: 'USER_PROCESS' undeclared (first use in this  
function)
sendfiled.c:2544: error: (Each undeclared identifier is reported only  
once
sendfiled.c:2544: error: for each function it appears in.)
make[1]: *** [sendfiled.o] Error 1
make: *** [all] Error 2
### execution of make failed, exit code 2
### execution of /var/tmp/tmp.5.HFssvW failed, exit code 2
Removing runtime build-lock...
Removing build-lock package...
/sw/bin/dpkg-lockwait -r fink-buildlock-sendfile-2.1a-1005
(Reading database ... 60509 files and directories currently installed.)
Removing fink-buildlock-sendfile-2.1a-1005 ...
Failed: phase compiling: sendfile-2.1a-1005 failed


This build error was reproduced on my box. If you want to check  
Todai's full build log, it's available at
http://fink.sodan.ecc.u-tokyo.ac.jp/build-10.5-i386/2009-04-20/sendfile.err.gz


Cheers,

--
monipol


--
Stay on top of everything new and different, both inside and 
around Java (TM) technology - register by April 22, and save
$200 on the JavaOne (SM) conference, June 2-5, 2009, San Francisco.
300 plus technical and hands-on sessions. Register today. 
Use priority code J9JMT32. http://p.sf.net/sfu/p
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.devel


[Fink-devel] Fink build error: openmcu-2.2.1-3 on Intel OS 10.5.6

2009-04-23 Thread Monic Polynomial
(detected via Todai’s build logs)

openmcu-2.2.1-3 fails to build on Intel OS 10.5.6.

$ fink -V | head -n 2
Package manager version: 0.29.2
Distribution version: selfupdate-rsync Thu Apr 23 07:48:43 2009, 10.5,  
i386

$ fink --build-as-nobody rebuild openmcu

(...)

gunzip -c ../openmcu_2.2.1-1.diff.gz | sed -e '0,/@DPATCH@/d' -e  
'\Xdebian/controlX,$d' -e 's,^[+],,' | patch -p1
missing header for unified diff at line 3 of patch
patching file debian/patches/00list
patch:  malformed patch at line 4: compilation_fixes_backport

### execution of gunzip failed, exit code 2
### execution of /var/tmp/tmp.11.O24s79 failed, exit code 2
Removing runtime build-lock...
Removing build-lock package...
/sw/bin/dpkg-lockwait -r fink-buildlock-openmcu-2.2.1-3
(Reading database ... 11244 files and directories currently installed.)
Removing fink-buildlock-openmcu-2.2.1-3 ...
Failed: phase patching: openmcu-2.2.1-3 failed


This build error has been reproduced on my box. If you want to check  
Todai’s full build log, it’s available at
http://fink.sodan.ecc.u-tokyo.ac.jp/build-10.5-i386/2009-04-16/openmcu.err.gz


Cheers,

--
monipol


--
Stay on top of everything new and different, both inside and 
around Java (TM) technology - register by April 22, and save
$200 on the JavaOne (SM) conference, June 2-5, 2009, San Francisco.
300 plus technical and hands-on sessions. Register today. 
Use priority code J9JMT32. http://p.sf.net/sfu/p
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.devel


[Fink-devel] Fink fetch error: ncl-4.2.0.a032-2

2009-04-22 Thread Monic Polynomial
(detected via Todai’s build logs)

Fink is not able to fetch ncl-4.2.0.a032-2.

$ fink -V | head -n 2
Package manager version: 0.29.2
Distribution version: selfupdate-rsync Wed Apr 22 20:01:31 2009, 10.5,  
i386

$ fink fetch ncl
wget -U 'fink/0.29.2' --verbose --passive-ftp 
http://ngwww.ucar.edu/ngbin/ncl-4.2.0.a032.Panther_GNU_MAC.tar.gz
--2009-04-22 20:13:01--  
http://ngwww.ucar.edu/ngbin/ncl-4.2.0.a032.Panther_GNU_MAC.tar.gz
Resolving ngwww.ucar.edu... 128.117.225.25
Connecting to ngwww.ucar.edu|128.117.225.25|:80... connected.
HTTP request sent, awaiting response... 404 Not Found
2009-04-22 20:13:01 ERROR 404: Not Found.

### execution of wget failed, exit code 1
Downloading the file "ncl-4.2.0.a032.Panther_GNU_MAC.tar.gz" failed.
Failed: file download failed for ncl-4.2.0.a032.Panther_GNU_MAC.tar.gz  
of package ncl-4.2.0.a032-2


Cheers,

--
monipol


--
Stay on top of everything new and different, both inside and 
around Java (TM) technology - register by April 22, and save
$200 on the JavaOne (SM) conference, June 2-5, 2009, San Francisco.
300 plus technical and hands-on sessions. Register today. 
Use priority code J9JMT32. http://p.sf.net/sfu/p
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.devel


[Fink-devel] Fink build error: hashcash-1.22-1 on Intel OS 10.5.6

2009-04-22 Thread Monic Polynomial
(detected via Todai’s build logs)

hashcash-1.22-1 fails to build on Intel OS 10.5.6.

$ fink -V | head -n 2
Package manager version: 0.29.2
Distribution version: selfupdate-rsync Wed Apr 22 15:43:59 2009, 10.5,  
i386

$ fink --build-as-nobody rebuild hashcash

(...)

make "CFLAGS= -DREGEXP_POSIX -O3 -funroll-loops -fno-inline -mcpu=750 - 
faltivec " build
gcc -DREGEXP_POSIX -O3 -funroll-loops -fno-inline -mcpu=750 -faltivec   
-I/sw/include  -c -o hashcash.o hashcash.c
cc1: error: invalid option 'cpu=750'
make[1]: *** [hashcash.o] Error 1
make: *** [g3-osx] Error 2
### execution of make failed, exit code 2
### execution of /var/tmp/tmp.2.kb9UGp failed, exit code 2
Removing runtime build-lock...
Removing build-lock package...
/sw/bin/dpkg-lockwait -r fink-buildlock-hashcash-1.22-1
(Reading database ... 148315 files and directories currently installed.)
Removing fink-buildlock-hashcash-1.22-1 ...
Failed: phase compiling: hashcash-1.22-1 failed


This build error has been reproduced on by box. If you want to check  
Todai’s full build log, it’s available at
http://fink.sodan.ecc.u-tokyo.ac.jp/build-10.5-i386/2009-04-16/hashcash.err.gz


Cheers,

--
monipol


--
Stay on top of everything new and different, both inside and 
around Java (TM) technology - register by April 22, and save
$200 on the JavaOne (SM) conference, June 2-5, 2009, San Francisco.
300 plus technical and hands-on sessions. Register today. 
Use priority code J9JMT32. http://p.sf.net/sfu/p
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.devel


[Fink-devel] Fink build error: ejabberd-1.0.0-1 on Intel OS 10.5.6

2009-04-22 Thread Monic Polynomial
(detected via Todai’s build logs)

ejabberd-1.0.0-1 fails to build on Intel OS 10.5.6.

$ fink -V | head -n 2
Package manager version: 0.29.2
Distribution version: selfupdate-rsync Wed Apr 22 08:57:12 2009, 10.5,  
i386

$ fink --build-as-nobody rebuild ejabberd

(...)

/sw/bin/erlc -W  ejabberd_s2s_in.erl
./ejabberd_s2s_in.erl:556: undefined macro ''id-at-commonName''
./ejabberd_s2s_in.erl:250: function get_cert_domains/1 undefined
make: *** [ejabberd_s2s_in.beam] Error 1
### execution of /var/tmp/tmp.0.yO2t7j failed, exit code 2
### execution of /var/tmp/tmp.2.vMtzKC failed, exit code 2
Removing runtime build-lock...
Removing build-lock package...
/sw/bin/dpkg-lockwait -r fink-buildlock-ejabberd-1.0.0-1
(Reading database ... 135780 files and directories currently installed.)
Removing fink-buildlock-ejabberd-1.0.0-1 ...
Failed: phase compiling: ejabberd-1.0.0-1 failed


This build error has been reproduced on my box. If you want to check  
Todai’s full build log, it’s available at
http://fink.sodan.ecc.u-tokyo.ac.jp/build-10.5-i386/2009-04-16/ejabberd.err.gz


Cheers,

--
monipol


--
Stay on top of everything new and different, both inside and 
around Java (TM) technology - register by April 22, and save
$200 on the JavaOne (SM) conference, June 2-5, 2009, San Francisco.
300 plus technical and hands-on sessions. Register today. 
Use priority code J9JMT32. http://p.sf.net/sfu/p
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.devel


[Fink-devel] Fink build error: jags-0.22.1-1001 on Intel OS 10.5.6

2009-04-22 Thread Monic Polynomial
(detected via Todai’s build logs)

jags-0.22.1-1001 fails to build on Intel OS 10.5.6.

$ fink -V | head -n 2
Package manager version: 0.29.2
Distribution version: selfupdate-rsync Wed Apr 22 08:57:12 2009, 10.5,  
i386

$ fink --build-as-nobody rebuild jags

(...)

g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/sw/include/gtk-1.2 -I/sw/include/ 
glib-1.2 -I/sw/lib/glib/include -I/usr/X11R6/include -Wall  -I/sw/ 
include  -g -O2 -c -o jagsmountwith.o `test -f 'jagsmountwith.cpp' ||  
echo './'`jagsmountwith.cpp
jagsmountwith.cpp:27: error: invalid conversion from 'void*' to  
'GtkWidget*'
jagsmountwith.cpp:28: error: invalid conversion from 'void*' to  
'GtkWidget*'
jagsmountwith.cpp:29: error: invalid conversion from 'void*' to  
'GtkWidget*'
jagsmountwith.cpp:30: error: invalid conversion from 'void*' to  
'JagsMenuBar*'
jagsmountwith.cpp:31: error: invalid conversion from 'void*' to  
'JagsConfig*'
jagsmountwith.cpp:32: error: invalid conversion from 'void*' to 'Mount*'
jagsmountwith.cpp:34: error: invalid conversion from 'void*' to  
'JagsMntsWindow*'
jagsmountwith.cpp: In function 'gint on_mount_with_ok(GtkWidget*,  
JagsMountWith*)':
jagsmountwith.cpp:188: error: invalid conversion from 'void*' to  
'gchar*'
jagsmountwith.cpp:188: error:   initializing argument 3 of 'gint  
Mount::addMount(gchar*, gchar*, gchar*, gchar*, gchar*, gchar*)'
jagsmountwith.cpp:188: error: invalid conversion from 'void*' to  
'gchar*'
jagsmountwith.cpp:188: error:   initializing argument 4 of 'gint  
Mount::addMount(gchar*, gchar*, gchar*, gchar*, gchar*, gchar*)'
jagsmountwith.cpp: In function 'gint on_mount_with_cancel(GtkWidget*,  
JagsMountWith*)':
jagsmountwith.cpp:221: error: invalid conversion from 'void*' to  
'gchar*'
make[2]: *** [jagsmountwith.o] Error 1
make[1]: *** [all-recursive] Error 1
make: *** [all] Error 2
### execution of make failed, exit code 2
### execution of /var/tmp/tmp.2.i3dTVc failed, exit code 2
Removing runtime build-lock...
Removing build-lock package...
/sw/bin/dpkg-lockwait -r fink-buildlock-jags-0.22.1-1001
(Reading database ... 127365 files and directories currently installed.)
Removing fink-buildlock-jags-0.22.1-1001 ...
Failed: phase compiling: jags-0.22.1-1001 failed


This build error has been reproduced on my box. If you want to check  
Todai’s full build log, it’s available at
http://fink.sodan.ecc.u-tokyo.ac.jp/build-10.5-i386/2009-04-16/jags.err.gz


Cheers,

--
monipol


--
Stay on top of everything new and different, both inside and 
around Java (TM) technology - register by April 22, and save
$200 on the JavaOne (SM) conference, June 2-5, 2009, San Francisco.
300 plus technical and hands-on sessions. Register today. 
Use priority code J9JMT32. http://p.sf.net/sfu/p
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.devel


[Fink-devel] Fink build error: decoders-4.1.4-3 on Intel OS 10.5.6

2009-04-21 Thread Monic Polynomial
(detected via Todai’s build logs)

decoders-4.1.4-3 fails to build on Intel OS 10.5.6.

$ fink -V | head -n 2
Package manager version: 0.29.2
Distribution version: selfupdate-rsync Tue Apr 21 09:32:58 2009, 10.5,  
i386

$ fink --build-as-nobody rebuild decoders
Can't resolve dependency "system-perl586" for package  
"decoders-4.1.4-3" (no matching packages/versions found)
Exiting with failure.


Cheers,

--
monipol


--
Stay on top of everything new and different, both inside and 
around Java (TM) technology - register by April 22, and save
$200 on the JavaOne (SM) conference, June 2-5, 2009, San Francisco.
300 plus technical and hands-on sessions. Register today. 
Use priority code J9JMT32. http://p.sf.net/sfu/p
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.devel


[Fink-devel] Fink build error: cdat-4.0-1012 on Intel OS 10.5.6

2009-04-21 Thread Monic Polynomial
(detected via Todai’s build logs)

cdat-4.0-1012 fails to build on Intel 10.5.6.

$ fink -V | head -n 2
Package manager version: 0.29.2
Distribution version: selfupdate-rsync Tue Apr 21 06:40:03 2009, 10.5,  
i386

$ fink --build-as-nobody rebuild cdat
Can't resolve dependency "pyfort-py24" for package "cdat-4.0-1012" (no  
matching packages/versions found)
Exiting with failure.

 From pyfort-py.info (also maintained by None http://p.sf.net/sfu/p
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.devel


[Fink-devel] Fink build error: amiwm-0.20pl48-2 on Intel OS 10.5.6

2009-04-21 Thread Monic Polynomial
(detected via Todai’s build logs)

amiwm-0.20pl48-2 fails to build on Intel OS 10.5.6

$ fink -V | head -n 2
Package manager version: 0.29.2
Distribution version: selfupdate-rsync Tue Apr 21 06:40:03 2009, 10.5,  
i386

$ which flex
/usr/bin/flex

$ flex --version
flex 2.5.33

$ which gcc
/usr/bin/gcc

$ gcc --version | head -n 1
i686-apple-darwin9-gcc-4.0.1 (GCC) 4.0.1 (Apple Inc. build 5490)

$ fink --build-as-nobody rebuild amiwm

(...)

flex -t lex.l > lex.c
gcc -c -I/sw/include -I. -I./libami -DSTDC_HEADERS=1 - 
DHAVE_SYS_WAIT_H=1 -DHAVE_FCNTL_H=1 -DHAVE_LIMITS_H=1 - 
DHAVE_SYS_TIME_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYS_SELECT_H=1 - 
DHAVE_SYS_RESOURCE_H=1 -DHAVE_SYS_STAT_H=1 - 
DHAVE_X11_EXTENSIONS_SHAPE_H=1 -DTIME_WITH_SYS_TIME=1 - 
DHAVE_ALLOCA_H=1 -DHAVE_ALLOCA=1 -DRETSIGTYPE=void -DHAVE_WAIT3=1 - 
DHAVE_SELECT=1 -DHAVE_STRDUP=1 -DHAVE_WAITPID=1 -DHAVE_XSHAPE=1 - 
DBSD_STYLE_GETTIMEOFDAY=1 -DLAME_ENDIAN=1  -g -O2  -I/usr/X11/include  
lex.c
:500:25: error: macro "yywrap" passed 1 arguments, but takes  
just 0
make: *** [lex.o] Error 1
### execution of make failed, exit code 2
### execution of /var/tmp/tmp.2.B5Dhd0 failed, exit code 2
Removing runtime build-lock...
Removing build-lock package...
/sw/bin/dpkg-lockwait -r fink-buildlock-amiwm-0.20pl48-2
(Reading database ... 118358 files and directories currently installed.)
Removing fink-buildlock-amiwm-0.20pl48-2 ...
Failed: phase compiling: amiwm-0.20pl48-2 failed


This build error has been reproduced on my box. If you want to check  
Todai’s full build log, it’s available at
http://fink.sodan.ecc.u-tokyo.ac.jp/build-10.5-i386/2009-04-16/amiwm.err.gz


Cheers,

--
monipol


--
Stay on top of everything new and different, both inside and 
around Java (TM) technology - register by April 22, and save
$200 on the JavaOne (SM) conference, June 2-5, 2009, San Francisco.
300 plus technical and hands-on sessions. Register today. 
Use priority code J9JMT32. http://p.sf.net/sfu/p
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.devel


[Fink-devel] Removal of micq from Fink?

2009-04-20 Thread Monic Polynomial
Having detected a build error in micq-0.4.10.1-1, I contacted the  
maintainer listed in the package description, Rüdiger. His reply:

‘Please also note that the current version of climm is 0.6.4; mICQ  
0.4.10 is more than 6 years old. Obviously, there cannot be any  
support for this anymore. (...) See, I never had a Mac. However, as I  
kept incorporating the changes for Fink into mICQ, they set me as the  
maintainer (don't ask me what their rationale was...). (...) If  
someone shows up to make packages, then I'll re-add it to this list -  
if not, then not. Mac OS users probably aren't the main audience  
anyway.’

I guess we should remove micq from Fink. Anyone interested in  
packaging climm?


--
monipol


--
Stay on top of everything new and different, both inside and 
around Java (TM) technology - register by April 22, and save
$200 on the JavaOne (SM) conference, June 2-5, 2009, San Francisco.
300 plus technical and hands-on sessions. Register today. 
Use priority code J9JMT32. http://p.sf.net/sfu/p
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.devel


[Fink-devel] Fink build error: mtools-4.0.1-1 on Intel OS 10.5.6

2009-04-20 Thread Monic Polynomial
(detected by Todai’s build logs)

mtools-4.0.1-1 fails to build on Intel OS 10.5.6.

$ fink -V | head -n 2
Package manager version: 0.29.2
Distribution version: selfupdate-rsync Mon Apr 20 07:43:04 2009, 10.5,  
i386

$ xcodebuild -version | head -n 1
Xcode 3.1.2

$ fink install mtools

(...)

gcc -L/sw/lib   floppyd.o -o floppyd  -L/usr/X11/lib -R/usr/X11/lib - 
lSM -lICE -lX11
Undefined symbols:
   "_XauFileName", referenced from:
   _alarm_signal in floppyd.o
   _cleanup in floppyd.o
   _serve_client in floppyd.o
   _serve_client in floppyd.o
   _serve_client in floppyd.o
   _serve_client in floppyd.o
ld: symbol(s) not found
collect2: ld returned 1 exit status
make: *** [floppyd] Error 1
### execution of make failed, exit code 2
Removing runtime build-lock...
Removing build-lock package...
/sw/bin/dpkg-lockwait -r fink-buildlock-mtools-4.0.1-1
(Reading database ... 101372 files and directories currently installed.)
Removing fink-buildlock-mtools-4.0.1-1 ...
Failed: phase compiling: mtools-4.0.1-1 failed

Adding

SetLDFLAGS: -L/usr/X11/lib -lXau

to mtools.info fixes the build error.


--
monipol


--
Stay on top of everything new and different, both inside and 
around Java (TM) technology - register by April 22, and save
$200 on the JavaOne (SM) conference, June 2-5, 2009, San Francisco.
300 plus technical and hands-on sessions. Register today. 
Use priority code J9JMT32. http://p.sf.net/sfu/p
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.devel


Re: [Fink-devel] source files on really slow servers

2009-04-19 Thread Monic Polynomial
On 19/04/2009, at 12:06, Jack Howarth wrote:
> Yuck. This source code is restricted so we can't host it and it will
> be a huge pain to have to deal with every user complaining that they
> can't download the source. Certainly we must have some other option
> available on the info file level? It seem like overkill to force the
> user to change timeouts or download methods system wide for just a
> single slow server.


IMHO a system-wide change from curl to wget is a minor annoyance if an  
annoyance at all.


--
monipol


--
Stay on top of everything new and different, both inside and 
around Java (TM) technology - register by April 22, and save
$200 on the JavaOne (SM) conference, June 2-5, 2009, San Francisco.
300 plus technical and hands-on sessions. Register today. 
Use priority code J9JMT32. http://p.sf.net/sfu/p
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.devel


Re: [Fink-devel] source files on really slow servers

2009-04-19 Thread Monic Polynomial
On 19/04/2009, at 12:00, Monic Polynomial wrote:
> There is no option in fink.conf to specify connection timeouts.
> However, you may specify a different connection timeout in /sw/lib/
> perl5/Fink/NetAccess.pm at your own risk.


My bad, checking NetAccess.pm again I found a /sw/etc/fink.conf option  
named DownloadTimeout that is valid for curl only. It is equivalent to  
the --max-time option in curl:

-m/--max-time 
   Maximum time in seconds that you allow the  whole   
operation  to
   take.   This is useful for preventing your batch jobs  
from hang-
   ing for hours due to slow networks or links  going   
down.   This
   doesn't  work  fully  in win32 systems.  See also the -- 
connect-
   timeout option.

The option that cannot be changed via fink.conf, also valid for curl  
only, is

--connect-timeout 
   Maximum time in seconds that you allow  the   
connection  to  the
   server  to  take.   This  only limits the connection  
phase, once
   curl has connected this option is of no more use. See   
also  the
   -m/--max-time option.


--
monipol


--
Stay on top of everything new and different, both inside and 
around Java (TM) technology - register by April 22, and save
$200 on the JavaOne (SM) conference, June 2-5, 2009, San Francisco.
300 plus technical and hands-on sessions. Register today. 
Use priority code J9JMT32. http://p.sf.net/sfu/p
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.devel


Re: [Fink-devel] source files on really slow servers

2009-04-19 Thread Monic Polynomial
On 19/04/2009, at 11:54, Jack Howarth wrote:

(...)
> succeeds. Do we have any settings in fink to change the timeout of  
> the curl download or specify
> that a particular file should be downloaded with wget instead?


You may specify

DownloadMethod: wget

in /sw/etc/fink.conf.

There is no option in fink.conf to specify connection timeouts.  
However, you may specify a different connection timeout in /sw/lib/ 
perl5/Fink/NetAccess.pm at your own risk.


--
monipol


--
Stay on top of everything new and different, both inside and 
around Java (TM) technology - register by April 22, and save
$200 on the JavaOne (SM) conference, June 2-5, 2009, San Francisco.
300 plus technical and hands-on sessions. Register today. 
Use priority code J9JMT32. http://p.sf.net/sfu/p
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.devel


Re: [Fink-devel] Adding a key-value pair to an Info.plist file using the command line

2009-03-30 Thread Monic Polynomial
On 30/03/2009, at 18:07, Ebrahim Mayat wrote:
>
> On Monday, March 30, 2009, at 09:53AM, "Monic Polynomial"  > wrote:
>
>> Is it possible that Info.plist already exists or are you always
>> creating a new one?
>>
> Monic ???

Yep. I like when the leading coefficient is 1.

> Yes, Info.plist already exists. Thanks for showing me the error of  
> my ways.
>
>> As far as I understand, your sed command actually "erases" the line
>> "CFBundlIconFile application.icns" – the
>> first expression between forward slashes is what sed should look for
>> and the second expression is what sed should replace with, which is
>> null in your example.
>
> Yes, absolutely. I guess my biological RAM was exhausted and the old  
> hard disk was outputting some garbage ;-)


Pogma told me there’s a command-line utility called PlistBuddy that is  
able to edit .plist files. It’s located in /usr/libexec.


--
monipol


--
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.devel


Re: [Fink-devel] Adding a key-value pair to an Info.plist file using the command line

2009-03-30 Thread Monic Polynomial
On 29/03/2009, at 18:10, Ebrahim Mayat wrote:
> I would like to add the key-value pair for the *.icns file into the
> Info.plist file of an application bundle.

(snip)

> touch application.app/Contents/Info.plist

Is it possible that Info.plist already exists or are you always  
creating a new one?

> sed -e "s/CFBundleIconFile<\/key> application.icns<\/
> string>//" application.app/Contents/Info.plist
>
> The last command only adds the following lines to Info.plist:
>
> 
>   CFBundleIconFile
>   
>
> i.e. the name "application.icns" is not inserted.


As far as I understand, your sed command actually "erases" the line  
"CFBundlIconFile application.icns" – the  
first expression between forward slashes is what sed should look for  
and the second expression is what sed should replace with, which is  
null in your example.

Which package are you working on?


--
monipol


--
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.devel


Re: [Fink-devel] Porting Jürgen Riegels C++ FreeCAD to Leopard

2009-03-05 Thread Monic Polynomial
On 05/03/2009, at 09:31, Tobias Krieger wrote:
(...)
> Is there some intro on how to port or do you have any tips, ideas?  
> (We have
> found the Apple Document "How to port ..." but this is very very  
> basic).


There's a Porting Unix software to Darwin and Mac OS X document on  
Fink's Web site; it might be useful.

http://www.finkproject.org/doc/porting/index.php


--
MP

--
Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA
-OSBC tackles the biggest issue in open source: Open Sourcing the Enterprise
-Strategies to boost innovation and cut costs with open source participation
-Receive a $600 discount off the registration fee with the source code: SFAD
http://p.sf.net/sfu/XcvMzF8H
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.devel