[FYI: http://www.macplus.org/magplus/article.php?id_article=5557
While this method isn't the one i'd have used, that's another option]

> >>>Worked for me with fink's man 1.5k.
> >According to http://fink.sourceforge.net/pdb/package.php/man, the man
> >package is on 0.4.1 and 10.1 only.
> >But i got this on 10.2/unstable on my machine.
> It is not in the 10.2-gcc3.3 unstable tree, so I'll guess it does not 
> work on 10.3 too (problem with libc and glibc as far as I've read in 
> catopen).

Did you try it? These problems shouldn't be hard to fix.

> Morevover it conflicts with manconf I use.

Reading the manconf description, you could remove it :)
http://fink.sourceforge.net/pdb/package.php/manconf

> >----8<----8<----8<----8<----
> >#!/bin/sh
> >
> >MANLANGDIRS=". fr es"
> >
> >for d in ($MANLANGDIRS); do
> >  echo $d;
> >done
> >---->8---->8---->8---->8----
> >
> >That should do the trick.
> May I really do that:
> for d in ($MANLANGDIRS); do
> install-$dman1: $($dman1_MANS) ...
> done
> 
> I seriously doubt it. But, well, as I've already said, I'm far from 
> being an expert.

[I'm not fond of Makefiles myself ;)]

You could do something like that in the code that generates your
Makefile, but it would complicate things.

You can simply do:

----8<----8<----8<----8<----
# Set your man languages here
MANLANGDIRS=". fr es"

# Install the man pages
install_man:
        for d in ($MANLANGDIRS); do
                # Code for installing the man pages for each language
        done
---->8---->8---->8---->8----

-- 
Bertrand
                            Pike Language - http://pike.ida.liu.se/
                        Caudium WebServer - http://caudium.net/
                            CAMAS WebMail - http://caudium.net/camas/


-------------------------------------------------------
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
_______________________________________________
Fink-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-devel

Reply via email to