Compiler Question

2009-02-22 Thread punosevac72
I am playing with a peace of software which I would like to port
to OpenBSD. When I run make build I keep getting compiler warning

ChkTeX.o(.text+0x69): In function `AddStars':
: warning: strcpy() is almost always misused, please use strlcpy()
ChkTeX.o(.text+0x7a): In function `AddStars':
: warning: strcat() is almost always misused, please use strlcat()

What would be the proper way to deal with such warning in 
OpenBSD world?

My second question is regarding run dependencies. Namely program
requires lynx, perl, and tex to run. Obviously I am listing tex
but should I list lynx and perl since they are part of the base?

And yes I am reading bsd.port.mk. I am just slow learner.

Best,
Predrag



Re: [NEW] From CPAN: Tcl-0.97

2009-02-22 Thread Dan Cross
On Sun, Feb 15, 2009 at 3:48 PM, Dan Cross  wrote:
> On Sun, Feb 15, 2009 at 3:27 PM, Stuart Henderson  
> wrote:
>> Here's a version using the tcl.port.mk module - see port-modules(5)
>> for more information about the modules.
>>
>> Not really tested here but the regression tests pass.
>
> That's much better.  Thanks, Stuart!

So what's the next step here?  How does one go about getting this
integrated into the source tree?  Thanks!

- Dan C.



Re: net/imspector who may port ??

2009-02-22 Thread irix
Hello Kirill,

Monday, February 23, 2009, 12:35:25 AM, you wrote:

I  try  to  remade  this sample, but 0.8 version dont compile. Maybe
 some bugs in paths for the headers or some else.

KB> Hi. I have this in plans, but i don't know when i'll start this. You can 
get a
KB> template from comixwall.org.

KB> On Sun, February 22, 2009 16:52, irix wrote:
>> Hello Ports,
>>
>>   Who may port this tool ?
>>
>>  IMSpector is an Instant Messenger proxy with monitoring, blocking and
>> content-filtering capabilities.
>>  Currently it supports MSN, Jabber/XMPP, AIM, ICQ, Yahoo, IRC and Gadu-Gadu 
>> to
>> different degrees.
>>  MSN is the principle protocol, as it’s the most popular these days, at least
>> in the UK where I’m based.
>>  The supported platforms are at present Linux and BSD when using the pf
>> firewall, but porting to other UNIXs should be trivial. It is able to log to
>> plain files, as well as several types of SQL database including MySQL, SQLite
>> and PostreSQL.
>>
>>
>>
>>   HomePage www.imspector.org
>>
>>   Last version http://www.imspector.org/downloads/imspector-0.8.tar.gz
>>
>> --
>> Best regards,
>>  irix  mailto:i...@ukr.net
>>
>>






-- 
Best regards,
 irixmailto:i...@ukr.net



Re: net/imspector who may port ??

2009-02-22 Thread Kirill Bychkov
Hi. I have this in plans, but i don't know when i'll start this. You can get a
template from comixwall.org.

On Sun, February 22, 2009 16:52, irix wrote:
> Hello Ports,
>
>   Who may port this tool ?
>
>  IMSpector is an Instant Messenger proxy with monitoring, blocking and
> content-filtering capabilities.
>  Currently it supports MSN, Jabber/XMPP, AIM, ICQ, Yahoo, IRC and Gadu-Gadu to
> different degrees.
>  MSN is the principle protocol, as it’s the most popular these days, at least
> in the UK where I’m based.
>  The supported platforms are at present Linux and BSD when using the pf
> firewall, but porting to other UNIXs should be trivial. It is able to log to
> plain files, as well as several types of SQL database including MySQL, SQLite
> and PostreSQL.
>
>
>
>   HomePage www.imspector.org
>
>   Last version http://www.imspector.org/downloads/imspector-0.8.tar.gz
>
> --
> Best regards,
>  irix  mailto:i...@ukr.net
>
>



Fix build with non-standard paths in ports infrastructure

2009-02-22 Thread Mikolaj Kucharski
[ Second try, this time to the list. I know that we have ports tree
locked, but this change doesn't involve pkgname bump and is very simple.
Please review. Thanks. ]

Hi,

That fixes build for me with custom paths in /etc/mk.conf

-- 
best regards
q#
Index: Makefile
===
RCS file: /cvs/ports/devel/hudson/Makefile,v
retrieving revision 1.3
diff -u -r1.3 Makefile
--- Makefile22 Oct 2008 20:03:08 -  1.3
+++ Makefile16 Feb 2009 08:16:59 -
@@ -41,7 +41,7 @@
 
 do-install:
${INSTALL_DATA_DIR} ${WARDIR}
-   ${INSTALL_DATA} ${PORTSDIR}/distfiles/${DIST_SUBDIR}/hudson.war 
${WARDIR}
+   ${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/hudson.war ${WARDIR}
${INSTALL_DATA} ${FILESDIR}/README.OpenBSD ${WARDIR}
${INSTALL_DATA} ${FILESDIR}/hudson ${WRKDIST}
${SUBST_CMD} ${WRKDIST}/hudson


net/imspector who may port ??

2009-02-22 Thread irix
Hello Ports,

  Who may port this tool ?

 IMSpector is an Instant Messenger proxy with monitoring, blocking and 
content-filtering capabilities.
 Currently it supports MSN, Jabber/XMPP, AIM, ICQ, Yahoo, IRC and Gadu-Gadu to 
different degrees.
 MSN is the principle protocol, as it’s the most popular these days, at least 
in the UK where I’m based.
 The supported platforms are at present Linux and BSD when using the pf 
firewall, but porting to other UNIXs should be trivial. It is able to log to 
plain files, as well as several types of SQL database including MySQL, SQLite 
and PostreSQL.



  HomePage www.imspector.org

  Last version http://www.imspector.org/downloads/imspector-0.8.tar.gz

-- 
Best regards,
 irix  mailto:i...@ukr.net



Re: Differences between ./configure and CONFIGURE_STYLE=gnu

2009-02-22 Thread Azwaw OUSADOU
On Sunday 22 February 2009 01:32:38 Stuart Henderson wrote:
> On 2009/02/22 00:43, Azwaw OUSADOU wrote:
> > Hi,
> >
> > I have some problem with binutils. I'm trying to build binutils for psp
> > but a make configure doesn't work :
>
> we copy in config.guess from /usr/ports/infrastructure/db, you will
> need to adjust that file to take care of the machine name.

Ok thanks, It's working now !

BSDManiak