[Fink-devel] Being Back, doing announcements, Improvements and so on...

2003-02-18 Thread D. Höhn


hallo Gang.

No, I have not been temporarily killed and I have risen from the dead now and
no, you did not manage to get rid of me.

I was on bussiness in Switzerland and I simply happened to come back today.

I would appreciate it, if we could wait until at least Friday for further
annoucements or releases. Not only because Wendsday is a bad day for such
things, but also because I do have to catch up on a lot of things. Seems like
a busy weekend.

Apart from that I am happy to see so much interest lately.

I hope that is ok for you?

-d



---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
Fink-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-devel



Re: [Fink-devel] PDCurses and X11 libraries

2003-02-18 Thread mathias meyer
eric

i waited a little if a more skilled developer would give you some hints but now i have a go. fink developers correct me if i'm wrong here.

your .info file:

Package: PDCurses
Version: 2
Revision: 6

i haven't had a look myself at what version PDCurses is. the version fiel represents the whole number (including revision). the revision field is used for your revisions you make to that .info file. every -info file submitted for the first time or for a new version therefore has a a in there. i guess it would be

Version: 2.6
Revision: 1

Maintainer: eric

your email address goes thete as well once you submit the .info file and are willing to maintain that package.

Maintainer: Eric Oberle [EMAIL PROTECTED]>

ConfigureFlags:  --prefix=/sw
Configurescript: configure %c

these are not necessary as this is the default setting.

InstallScript: make install DESTDIR=%d

same for that.

also be sure to add the right dependancies to your .info file.

When I put that in my local directory as 'PDCurses.info' 

this would be PDCurses-2.6-1.info

getting different results when compiling manually or in the fink environment might be caused by fink's default settings, which are, i think

SetLDFLAGS: -L%p/lib
SetCFLAGS: -I%p/include

try that manually with the setenv/export command and see if you get the same. or the other way round, add the following to your .info file:

NoSetLDFLAGS: true
NoSetCFLAGS: true

there's a useful document at

http://fink.sourceforge.net/doc/packaging/packaging.html>

(hope it's still there, i downloaded a version a while ago.)


mathias


Re: [Fink-devel] guile 1.6.3

2003-02-18 Thread jfm
Hi,

The following info file will bring you substantially further
(I've to leave right now for 2 weeks, so no time to look at
it for the next month or so _ anybody is free to pick it up.)

It still breaks in the subdir libguile with

gcc -r -keep_private_externs -nostdlib -o 
.libs/libguile.12.3.0.dylib-master.o  alist.lo arbiters.lo async.lo 
backtrace.lo boolean.lo chars.lo continuations.lo debug.lo 
deprecation.lo dynl.lo dynwind.lo environments.lo eq.lo error.lo 
eval.lo evalext.lo extensions.lo feature.lo fluids.lo fports.lo gc.lo 
gc_os_dep.lo gdbint.lo gh_data.lo gh_eval.lo gh_funcs.lo gh_init.lo 
gh_io.lo gh_list.lo gh_predicates.lo goops.lo gsubr.lo guardians.lo 
hash.lo hashtab.lo hooks.lo init.lo ioext.lo iselect.lo keywords.lo 
lang.lo list.lo load.lo macros.lo mallocs.lo modules.lo numbers.lo 
objects.lo objprop.lo options.lo pairs.lo ports.lo print.lo procprop.lo 
procs.lo properties.lo random.lo rdelim.lo read.lo root.lo rw.lo 
scmsigs.lo script.lo simpos.lo smob.lo sort.lo srcprop.lo stackchk.lo 
stacks.lo stime.lo strings.lo strop.lo strorder.lo strports.lo 
struct.lo symbols.lo throw.lo values.lo variable.lo vectors.lo 
version.lo vports.lo weaks.lo symbols-deprecated.lo ramap.lo unif.lo 
filesys.lo posix.lo net_db.lo socket.lo regex-posix.lo  gcc 
-dynamiclib  -o .libs/libguile.12.3.0.dylib 
.libs/libguile.12.3.0.dylib-master.o  -L../libguile-ltdl/.libs 
-lguile-ltdl -lm -lc -install_name /sw/lib/libguile.12.dylib 
-compatibility_version 16 -current_version 16.0
ld: Undefined symbols:
_environ
/usr/bin/libtool: internal link edit command failed

The symbol comes from posix.lo and stime.lo ..
No time to hunt further


JF Mertens

_
Package: guile
Version: 1.6.3
Revision: 1
GCC: 3.1
BuildDepends: readline, dlcompat-dev
Source: gnu
UpdateConfigGuess: true
NoSetCPPFLAGS: true
SetCPPFLAGS: -no-cpp-precomp
NosetLDFLAGS: true
NoSetLIBRARY_PATH: true
SetLIBRARY_PATH: %p/lib
NoSetDYLD_LIBRARY_PATH: true
SetDYLD_LIBRARY_PATH: %p/lib
PatchScript: 
 mv libguile/gc_os_dep.c tmp
 sed 's|\/\*\ Determine\ the\ machine\ type\:\ \*\/|# define macosx|g' 
 tmp  libguile/gc_os_dep.c

ConfigureParams: --infodir=%p/share/info
CompileScript: ( export CPATH=%p/include ; ./configure %c ; make )
InstallScript: 
 make install DESTDIR=%d

DocFiles: README COPYING AUTHORS NEWS THANKS
InfoDocs: data-rep.info
#
Description: Embedable Scheme interpreter
DescPort: 
Thread support currently disabled (configure's default).

Needs help to link against the right copy of the libraries. Care must
be taken not to encode the used paths into the produced library.

License: GPL
Homepage: http://www.gnu.org/software/guile/guile.html
Maintainer: None [EMAIL PROTECTED]
___



---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
Fink-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-devel


Re: [Fink-devel] guile 1.6.3

2003-02-18 Thread Peter O'Gorman
Well, that one is easy, either define environ to *_NSGetEnviron() with 
a patch in the right source files, or remove the libtool -no-undefined 
flag, the former is preferable.

If someone does add a new guile to fink, please let me know in advance 
as gnucash will have to be revision upped and made to depend on the new 
version.

Peter

On Wednesday, February 19, 2003, at 12:26  AM, jfm wrote:

ld: Undefined symbols:
_environ
/usr/bin/libtool: internal link edit command failed




---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
Fink-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-devel



Re: [Fink-devel] guile 1.6.3

2003-02-18 Thread David Bacher
Yes, I will volunteer. [Though oddly it seems that people seem to 
request guile just as I'm going out of town :)]

I gave Rick a pre-release of my guile 1.6.1 files, which may have been 
passed on(?), but since I haven't had a chance to
a) test whether it upgrades successfully when guile 1.4.5 is installed
b) update the patch to 1.6.3

In order to make my work more available, I'll create a package 
submission item with the current 1.6.1 info/patch files and work to 
finish a) and b) above.

-dave

On Monday, February 17, 2003, at 06:11 AM, David R. Morrison wrote:

According to the package database, guile does not have a Fink 
maintainer
right now... does someone wish to volunteer?

  -- Dave


---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
Fink-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-devel




---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
Fink-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-devel



[Fink-devel] Re: gtkhtml

2003-02-18 Thread Masanori Sekino
I'm working on gnome-core-shlibs and gtkhtml things now. It will fixed 
in one or two days.


On 2003.2.17, at 11:10  AM, Max Horn wrote:

I just wanted to build gtkhtml to look into the issues mentioned in 
the evolution dependency collisions thread. I was quite surprised by 
the result: it wants to install both the gnome 1 and gnome 2 packages, 
e.g. both gnome-vfs-dev and gnome-vfs2-dev.

That seems to be very odd to me. Especially since gtkhtml1.1 
(properly) only needs gnome 1 things. For gnome2, gtkhtml was replaced 
by libgtkhtml2 i think. Masanori?

Anyway, I can't build gtkhtml/gtkhtml1.1 here right now, I just lack 
the diskspace to first build all of Gnome 1  2. So could somebody 
else send me a list of the files contained in the packages (i.e. not 
the -shlibs/-dev splitoffs but rather the master packages)?


Max


---
Masanori Sekino
mailto:[EMAIL PROTECTED]



---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
Fink-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-devel



[Fink-devel] doxygen update - it should fix the png-problems

2003-02-18 Thread thomas kotzian
Hello!

I put my newest release of doxygen (1.0-rc3) rev. 2 into the 
package-submission tracker.
Everyone having problems with compiling doxygen: please test it. (i 
can't test it because my system works anyway)

greetings,
thomas
--
thomas kotzian, [EMAIL PROTECTED]



---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
Fink-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-devel


Re: [Fink-devel] PDCurses and X11 libraries

2003-02-18 Thread Martin Costabel


Package: PDCurses


Don't use uppercase letters in package names, please.

--
Martin




---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
Fink-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-devel



[Fink-devel] linc1 problem

2003-02-18 Thread Chuck Robey
I have been on a longish job on a Sun, so I ignored my Powerbook for long
enough so that catchup on fink is more than trivial -- you see, I use the
Powerbook/fink environment in accessing a lot of other things, and
sometimes I pollute my environment a little, which can screw up fink (as I
guess any fink developer could tell you).

This makes me a little wary of sending in fixes I come around with.  It's
entirely possible that they're really caused by my environment.  Anyhow,
one I hit up against was linc1 trying to install a file index.sgml which
didn't exist in subdir linc-0.5.5/docs/html, but the Makefile insisted on
installing anyhow.  Since index.html is already installed, index.sgml is
pretty redundant, so I stuck in the little patch I have copied here:

--- linc-0.5.5/docs/Makefile.in.origTue Feb 18 01:44:13 2003
+++ linc-0.5.5/docs/Makefile.in Tue Feb 18 01:42:00 2003
@@ -338,8 +338,6 @@
echo '-- Installing '$$i ; \
$(INSTALL_DATA) $$i $(DESTDIR)$(TARGET_DIR); \
  done; \
- echo '-- Installing $(srcdir)/html/index.sgml' ; \
- $(INSTALL_DATA) $(srcdir)/html/index.sgml $(DESTDIR)$(TARGET_DIR); \
fi)

 #

I'm going to cover a different problem I'm having now with mozilla in a
separate mail.


Chuck Robey | Interests include C  Java programming, FreeBSD,
[EMAIL PROTECTED]   | electronics, communications, and SF/Fantasy.

New Year's Resolution:  I will not sphroxify gullible people into looking up
fictitious words in the dictionary.




---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
Fink-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-devel



[Fink-devel] A suggestion for the fink package Manager

2003-02-18 Thread David
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Hello.
I would like to add the fink packager manager itself as a project to 
Freshmeat. I know that we are already present with the distribution but 
the package manager itself might be interesting to others as well. Not 
only because the release circle is faster and thus we will be on the 
front-page more often, but also because it might attract some 
developers to look at that code and only that code.

 We could also supply daily-snapshots that way.

Any objections?

- -d


- - Deep into that darkness peering, long I stood there wondering, 
fearing,
- -  Doubting, dreaming dreams no mortal ever dared to dream to dream 
before.. Edgar Allen Poe - The Raven
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (Darwin)

iD8DBQE+UqKTiW/Ta/pxHPQRA3RGAKCy0C4aLruC2//YeI8moFNiLxaLVwCfaf0P
2maktAJwrrWiCSWlN3ZQpVA=
=lEvw
-END PGP SIGNATURE-



---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
Fink-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-devel


[Fink-devel] m3/cvsup ported

2003-02-18 Thread Ben Hines
cvsup and modula3 have been ported to OS X:

http://groups.google.com/groups?q=comp.lang.modula3

Anyone care to have a crack at packaging it? This is a high demand app. 
(could also speed fink selfupdate-cvses massively (20x), if we could 
use cvsup. :)

-Ben



---
This SF.net email is sponsored by: SlickEdit Inc. Develop an edge.
The most comprehensive and flexible code editor you can use.
Code faster. C/C++, C#, Java, HTML, XML, many more. FREE 30-Day Trial.
www.slickedit.com/sourceforge
___
Fink-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-devel


Re: [Fink-devel] linc1 problem

2003-02-18 Thread Chuck Robey
On Tue, 18 Feb 2003, Ben Hines wrote:


 On Tuesday, February 18, 2003, at 12:46  PM, Chuck Robey wrote:

  ntirely possible that they're really caused by my environment.  Anyhow,
  one I hit up against was linc1 trying to install a file index.sgml
  which
  didn't exist in subdir linc-0.5.5/docs/html, but the Makefile insisted
  on
  installing anyhow.  Since index.html is already installed, index.sgml
  is
 

 index.sgml was missing for you because you need to update doxygen
 first, which was crashing earlier in the compile output.

I guess I was thinking it was like any other make, where the first error
kills things.  OK, that's rather good because it's another error I won't
make again for fink.  Particularly useful comment, thanks.


 -Ben




Chuck Robey | Interests include C  Java programming, FreeBSD,
[EMAIL PROTECTED]   | electronics, communications, and SF/Fantasy.

New Year's Resolution:  I will not sphroxify gullible people into looking up
fictitious words in the dictionary.




---
This SF.net email is sponsored by: SlickEdit Inc. Develop an edge.
The most comprehensive and flexible code editor you can use.
Code faster. C/C++, C#, Java, HTML, XML, many more. FREE 30-Day Trial.
www.slickedit.com/sourceforge
___
Fink-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-devel