FreeBSD Port: rtorrent-0.7.4

2007-09-10 Thread Søren Schrøder
rtorrent/libtorrent updatede to .7 (.8 unstable)

* libtorrent-0.11.7.tar.gz
* rtorrent-0.7.7.tar.gz

configures when OPENSSL libs is specified:

OPENSSL_LIBS="-L/usr/lib -ssl -crypto"
OPENSSL_CFLAGS="-I/usr/include"

compiles clean, works fine on my box ( 6.2-RELEASE-p4 )

Thanks for maintaining the port


-- 
Søren Schrøder, Technical Innovation, Cybercity.
"Obey gravity - It's the LAW!" 
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Upgrading to squid-2.6.15 is not recommended.

2007-09-10 Thread Sergey Matveychuk

Thomas-Martin Seck wrote:

* RW <[EMAIL PROTECTED]> [gmane.os.freebsd.devel.ports]:


The squid site is recommending that people skip 2.6.15 and go straight
to 2.6.16


The Squid maintainer can not resist to recommend that people look
at what the FreeBSD port of Squid-2.6.STABLE15 actually delivers. :-)



I'd like to thank Thomas-Martin Seck for maintaining squid ports. It's 
the one of little numbers ports those I'm sure work and stable after 
upgrade. Really great work!


--
Dixi.
Sem.
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: FreeBSD Port: exim-4.67

2007-09-10 Thread Sergey Matveychuk

Maxim Sirenko wrote:
That's ok, but why these changes are not reflected on the main FreeBSD 
site???

http://www.freebsd.org/cgi/ports.cgi?query=exim&stype=name



Use http://www.freshports.org site to see the freshest ports upgrades.

--
Dixi.
Sem.
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


A new version of Tools/scripts/plist

2007-09-10 Thread Martin Tournoij
I've written a replacement for /ports/Tools/scripts/plist, the reason
this is a complete rewrite rather than an update is because I'm not
familair with ruby, and writing a new version in python was faster.

Problems/additions in this rewrite:
- Automaticlly replace the default PLIST_SUB values.

- Sensible sorting of the directory list, the current plist put
directory's in ths order:
share/someport/
share/someport/adir/
share/someport/adir/foobar
Which is the reverse of what it should be.

- There are a number of directory's which are always created but
should not be added to the pkg-plist, I have no idea where these
directory's come from, see the comment on line 49 of my script.

I wrote this script for personal purposes, but why not let other
people benefit, maybe it can be placed in Tools/scripts? Either
replacing the current plist or alongside it.

Script is attached in this email, or you can view it online if you
like:
http://www.rwxrwxrwx.net/plist.py.txt

Regards,
Martin Tournoij
#!/usr/bin/env python
# vim: set fileencoding=utf-8 :
# -*- coding: utf-8 -*-
#
# $Carpetsmoker: ports/Scripts/plist.py,v 1.2 2007/09/10 08:02:53 carpetsmoker 
Exp $
#
# Make a pkg-plist.
# Maintained by Martin Tournoij <[EMAIL PROTECTED]>
#
# No boring license info, this file is released in public domain, feel
# free to do whatever you want with it (although eating it neither
# supported nor recommended).
#

import re, os, sys
from optparse import OptionParser

def GetMtree(mtree, prefix): #{{{
''' Read mtree file 
Arguments:
mtree - Location to a mtree file
prefix - prefixed to all entries (Should be a pathname)

Returns a list.
'''
list = [ ]
prev_prefix = ''
mtree = open(mtree)

# Skip entries which are unimportant to us.
for line in mtree:
if line[0] == '#' or line[0] == '/' or line == '.\n' or line == 
'\n':
continue

# Remove all flags, we don't need them.
r = re.compile('\s+[\w\=]*$')
line = r.sub('', line.lstrip())
line = line.strip()

if line == '..':
(cur_prefix, a) = os.path.split(prev_prefix)
prev_prefix = cur_prefix
else:
cur_prefix = os.path.join(prev_prefix, line)
prev_prefix = cur_prefix
list.append(cur_prefix)

mtree.close()
# XXX: This is a list of files that seem to be created always, but
# how and where?
# /etc/mtree/BSD.x11.dist lists some of the X11 related dirs, but
# also many other dirs which are not created, and I can't find any
# reference to the other files in either /etc/mtree/ or /ports/Mk/
# We will add them manually for now.
list.extend ([
'include/X11',
'include/X11/bitmaps',
'lib/X11',
'lib/X11/app-defaults',
'lib/X11/fonts',
'lib/X11/fonts/local',
'share/locale/be',
'share/locale/be/LC_MESSAGES',
'share/locale/ca',
'share/locale/ca/LC_MESSAGES',
'share/locale/cs',
'share/locale/cs/LC_MESSAGES',
'share/locale/de_AT',
'share/locale/de_AT/LC_MESSAGES',
'share/locale/el',
'share/locale/el/LC_MESSAGES',
'share/locale/en_AU',
'share/locale/en_AU/LC_MESSAGES',
'share/locale/fa_IR',
'share/locale/fa_IR/LC_MESSAGES',
'share/locale/fi',
'share/locale/fi/LC_MESSAGES',
'share/locale/fr_FR',
'share/locale/fr_FR/LC_MESSAGES',
'share/locale/gl',
'share/locale/gl/LC_MESSAGES',
'share/locale/ko',
'share/locale/ko/LC_MESSAGES',
'share/locale/li',
'share/locale/li/LC_MESSAGES',
'share/locale/ne',
'share/locale/ne/LC_MESSAGES',
'share/locale/nn',
'share/locale/nn/LC_MESSAGES',
'share/locale/no',
'share/locale/no/LC_MESSAGES',
'share/locale/pl',
'share/locale/pl/LC_MESSAGES',
'share/locale/pt',
'share/locale/pt/LC_MESSAGES',
'share/locale/ro',
'share/locale/ro/LC_MESSAGES',
'share/locale/sk',
'share/locale/sk/LC_MESSAGES',
'share/locale/sl',
'share/locale/sl/LC_MESSAGES',
'share/locale/sr',
'share/locale/sr/LC_MESSAGES',
'share/locale/tg',
  

Current unassigned ports problem reports

2007-09-10 Thread FreeBSD bugmaster
Current FreeBSD problem reports
The following is a listing of current problems submitted by FreeBSD users. 
These represent problem reports covering all versions including experimental 
development code and obsolete releases. 
Bugs can be in one of several states:

o - open
A problem report has been submitted, no sanity checking performed.

a - analyzed
The problem is understood and a solution is being sought.

f - feedback
Further work requires additional information from the
 originator or the community - possibly confirmation of
 the effectiveness of a proposed solution.

p - patched
A patch has been committed, but some issues (MFC and / or
 confirmation from originator) are still open.

r - repocopy
The resolution of the problem report is dependent on
 a repocopy operation within the CVS repository which
 is awaiting completion.

s - suspended
The problem is not being worked on, due to lack of information
 or resources.  This is a prime candidate
 for somebody who is looking for a project to do.
 If the problem cannot be solved at all,
 it will be closed, rather than suspended.

c - closed
A problem report is closed when any changes have been integrated,
 documented, and tested -- or when fixing the problem is abandoned.
Critical problems
Serious problems

S Tracker  Resp.  Description

o ports/95541 net/djbdns WITH_IPV6 queries ip6.int
o ports/106369vpnd caused kernel panic with ppp mode
o ports/106372vpnd can't run with slip mode
f ports/108077www/linux-flashplugin9 crashes linux-firefox
f ports/108413net/vnc does not works.
f ports/108606Courier MTA terminates abnormaly after installation
f ports/112083mail/qsheff overwrites configuration upon upgrade
o ports/112385sysutils/lookupd on Kernel 64
f ports/112698www/opera's spell-check doesn't work
f ports/112921x11-wm/Beryl not loading focus and keybinding settings
f ports/113139sysutils/ucspi-tcp runtime crash on amd64 w/ fix
f ports/113144print/ghostscript-gnu dumps core with several output d
f ports/115209editors/emacs: info files are not installed correctly
o ports/115443net-mgmt/nagios-plugins - incorrect library path in pe
f ports/115568mail/mailscanner: automatic virus pattern update does 
f ports/115767net/silc-client 1.1.1 contains a bug which causes conn
f ports/115818Executable clash between databases/grass and ruby gems
f ports/115905net/silc-client 1.1.1 does not build with converters/r
f ports/115939mail/nmh:  needs CFLAGS=-O
f ports/115967enable chrooted net/isc-dhcp3-server on the FreeBSD 7.
o ports/116166math/scilab: Scilab 4.1.1 exits with corrupt stack.
f ports/116222editors/emacs: files installed with wrong owner
o ports/116251building biology/platon fails

23 problems total.

Non-critical problems

S Tracker  Resp.  Description

o ports/94921 isakmpd fails on amd64
o ports/100896[new ports] emulators/vmware-server-guestd1 emulators/
f ports/101166bittorrent-curses only works under English locales.
o ports/103395security/gnome-ssh-askpass interferes with gnome-scree
o ports/107354net/icmpinfo: icmpinfo -vvv does not recocnize any ICM
f ports/107621net/proxychains doens't compile on 4 and 5
f ports/107937jailed net/isc-dhcp3-server wouldn't run with an immut
f ports/108723kxgenerator never worked for me
f ports/109041security/tinyca doesn't allow for user installed OpenS
f ports/110320[security/vpnc] rc script returns 0 on failure
o ports/110326 ports  Use TCL/TK 8.4: games/tvp
f ports/111399print/ghostscript-gpl: ghostscript-gpl WITH_FT_BRIDGE 
f ports/111456[UPDATE] finance/pfpro updated distinfo
o ports/112499Add a necessary runtime library for audio/mbrola to ru
f ports/112876audio/xmcd - compile problems after xorg 7.2 upgrade (
f ports/112887net/nxserver 1.4.0_1 fails to compile after upgrading 
f ports/113335biology/linux-foldingathome needs to run as root?
f ports/113423Update for ports net/freenx to version 0.6.0
o ports/113538databases/unixODBC fails to copy required INI files fo
f ports/113750update science/kst to 1.4.0
o ports/113827when trying to play midis using audio/playmidi "/dev/s
o ports/114031[PATCH] editors/xemacs-devel - stop XEmacs from corrup
f ports/114053Port graphics/gnash is out of date
o ports/114122New port: russian/stardict2-dict-eng_RU, Russian 

FreeBSD Port: py24-libxml2-2.6.30

2007-09-10 Thread Laurent DAVERIO
Hi,

I'd like to report a small bug in the above port : when building the
package for Python 2.4, FreeBSD will attempt to use Python2.5 no matter
what : setting PYTHON_VERSION=python2.4 either from the command line or
in /etc/make.conf is not taken into account.

- On a machine with Python 2.5 installed, the files will be installed is
/usr/local/lib/python2.5/site-packages/ instead of
/usr/local/lib/python2.4/site-packages/

- On a machine with Python2.5 not installed, nothing is built/installed.

I'm enclosing the outputs of the make command for these two situations,
hoping that you'll find them useful.

I've also submitted the bug report to the FreeBSD Gnats database, it has
been registered as ports/116256.

Thanks and regards,

Laurent.

-- 

Laurent DAVERIO
Centre de Recherche en Informatique
de l'École Nationale Supérieure des Mines de Paris (CRI-ENSMP)
35, Rue Saint-Honoré
77305 FONTAINEBLEAU CEDEX
FRANCE   Tel:(+33|0) 1.64.69.48.37
 Fax:(+33|0) 1.64.69.48.47
 E-mail: [EMAIL PROTECTED]
 http://daverio.net/
 La Page Trad : http://trad.org/


Script started on Mon Sep 10 13:30:11 2007
]0;[EMAIL PROTECTED]: /usr/ports/textproc/[EMAIL PROTECTED] py-libxml2]# uname 
-a
FreeBSD pise.cri.ensmp.fr 6.2-STABLE FreeBSD 6.2-STABLE #0: Thu Jan 25 19:15:50 
UTC 2007 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/SMP  i386
]0;[EMAIL PROTECTED]: /usr/ports/textproc/[EMAIL PROTECTED] py-libxml2]# make
===>  Extracting for py24-libxml2-2.6.30
=> MD5 Checksum OK for gnome2/libxml2-2.6.30.tar.gz.
=> SHA256 Checksum OK for gnome2/libxml2-2.6.30.tar.gz.
===>  Patching for py24-libxml2-2.6.30
===>  Applying FreeBSD patches for py24-libxml2-2.6.30
===>   py24-libxml2-2.6.30 depends on file: /usr/local/bin/python2.4 - found
===>   py24-libxml2-2.6.30 depends on executable: gmake - found
===>   py24-libxml2-2.6.30 depends on executable: pkg-config - found
===>   py24-libxml2-2.6.30 depends on shared library: iconv.3 - found
===>   py24-libxml2-2.6.30 depends on shared library: xml2.5 - found
===>  Configuring for py24-libxml2-2.6.30
checking build system type... i386-portbld-freebsd6.2
checking host system type... i386-portbld-freebsd6.2
checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel
checking whether build environment is sane... yes
checking for gawk... no
checking for mawk... no
checking for nawk... nawk
checking whether gmake sets $(MAKE)... yes
checking for gcc... cc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether cc accepts -g... yes
checking for cc option to accept ANSI C... none needed
checking for style of include used by gmake... GNU
checking dependency style of cc... gcc3
checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel
checking how to run the C preprocessor... cc -E
checking for rm... /bin/rm
checking for mv... /bin/mv
checking for tar... /usr/bin/tar
checking for perl... /usr/bin/perl
checking for wget... /usr/local/bin/wget
checking for xmllint... /usr/local/bin/xmllint
checking for xsltproc... /usr/bin/xsltproc
checking for function prototypes... yes
checking for egrep... grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for string.h... (cached) yes
checking for a sed that does not truncate output... /usr/bin/sed
checking for ld used by cc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
checking how to recognise dependent libraries... pass_all
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking whether we are using the GNU C++ compiler... yes
checking whether c++ accepts -g... yes
checking dependency style of c++... gcc3
checking how to run the C++ preprocessor... c++ -E
checking for g77... no
checking for f77... f77
checking whether we are using the GNU Fortran 77 compiler... yes
checking whether f77 accepts -g... yes
checking the maximum length of command line arguments... (cached) 262144
checking command to parse /usr/bin/nm -B output from cc object... ok
checking for objdir... .libs
checking for ar... ar
checking for ranlib... ranlib
checking for strip... strip
checking if cc supports -fno-rtti -fno-ex

Re: bsd.port.options.mk status

2007-09-10 Thread Gabor Kovesdan

Dmitry Marakasov escribió:

Hi!

CHANGES of 20060930 state that exeperimental bsd.port.options.mk has
been added for OPTIONS to be able to influence dependencies. I need that
feature for some of my ports, so I wanted to know what's the status for
it?

.include  doesn't work, but using full path works,
and makes it possible to use things like USE_QT_VER or USE_SDL
conditionally depending on what OPTIONS are set.

So, is it possible to use this feature, or are there still any issues
not allowing use of options.mk in ports?

  
I don't know the answer either, I just want to add to the topic, that it 
would be really nice if
someone with the knowledge could add some pieces of info about this to 
PH, so that

we avoid the future confusions.

TIA,

--
Gabor Kovesdan
FreeBSD Volunteer

EMAIL: [EMAIL PROTECTED] .:|:. [EMAIL PROTECTED]
WEB:   http://people.FreeBSD.org/~gabor .:|:. http://kovesdan.org

___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


FreeBSD Port: nntpcache-3.0.2_6

2007-09-10 Thread Reinhard Haller
Hi,

are there known open issues regarding nntpcache 3.0.2_6 on amd64 (7.0
current)?

Using tcpdump I discovered that instead of "article " "(null)" is sent
to the
Newsserver trying to retrieve an article.

Any suggestions?

Thanks
Reinhard Haller

- 
Dipl. Inform. Reinhard Haller
INTERACTIVE Computer Systems GmbH
Gesellschaft für Systemtechnik

Hermann-Hesse-Str. 5
85551 Kirchheim b. München

Tel.: 089/904885-0
Mob.: 0171/8022551
Fax: 089/904885-22

mailto: [EMAIL PROTECTED]

Angaben gemäß EHUG:
Geschäftsführer: Reinhard Haller
eingetragen: Amtsgericht München, HRB 70987
USt-ID: DE129385991


___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: bsd.port.options.mk status

2007-09-10 Thread Dmitry Marakasov
* Pav Lucistnik ([EMAIL PROTECTED]) wrote:

> > > It's possible to use this feature, but only on -CURRENT and -STABLE
> > > FreeBSD systems newer than certain date. No existing release supports it
> > > - it will be supported in upcoming 6.3 and 7.0.
> > Erm, isn't ports code (more or less) release-independent? What's missing
> > in existing FreeBSD versions that's needed to support options.mk?
> The make only looks into /usr/share/mk for includes, until told
> otherwise. bsd.port.options.mk is included before bsd.port.pre.mk, so it
> can't be found. Base system was modified to install stub of the same
> name into /usr/share/mk to workaround this problem.
Understood. Then we really have to wait till 5.5 and 6.2 EOL to use
options.mk... That's a bit strange to wait multiple years for an
useful feature, aren't there any workaround planned?

> > 8-[   ]
> > Then what am I to do if I need, say:
> > 
> > OPTIONS= EDITOR "Qt4 editor"
> > 
> > .if defined WITH_EDITOR
> > USE_QT_VER= 4
> > MAKE_ARGS+= UIC=${UIC} MOC=${MOC}
> > .endif
> > 
> > I'll have to not use OPTIONS in this case, am I right?
> Or try experimenting with manual inclusion of bsd.kde.mk, or check if
> bsd.kde.mk provide advance inclusion mechanism (WANT_FOO usually).

> > Well, ../../Mk/bsd.port.options.mk should go then?
> That will eliminate possibility of using your port standalone, outside
> ports tree. 
Including ${PORTSDIR}/Mk/bsd.foo.mk after bsd.port.pre.mk is
the only solution then (assuming that corresponding WANT_FOO is
missing). Ok, many thanks for help.

-- 
Best regards,
  Dmitry Marakasov   mailto:[EMAIL PROTECTED]
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: FreeBSD Port: rtorrent-0.7.4

2007-09-10 Thread Florent Thoumie

Søren Schrøder wrote:

rtorrent/libtorrent updatede to .7 (.8 unstable)

* libtorrent-0.11.7.tar.gz
* rtorrent-0.7.7.tar.gz

configures when OPENSSL libs is specified:

OPENSSL_LIBS="-L/usr/lib -ssl -crypto"
OPENSSL_CFLAGS="-I/usr/include"

compiles clean, works fine on my box ( 6.2-RELEASE-p4 )


I've updated those ports to their latest versions.

--
Florent Thoumie
[EMAIL PROTECTED]
FreeBSD Committer
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: bsd.port.options.mk status

2007-09-10 Thread Pav Lucistnik
Dmitry Marakasov píše v po 10. 09. 2007 v 19:26 +0400:
> * Pav Lucistnik ([EMAIL PROTECTED]) wrote:
> 
> > > > It's possible to use this feature, but only on -CURRENT and -STABLE
> > > > FreeBSD systems newer than certain date. No existing release supports it
> > > > - it will be supported in upcoming 6.3 and 7.0.
> > > Erm, isn't ports code (more or less) release-independent? What's missing
> > > in existing FreeBSD versions that's needed to support options.mk?
> > The make only looks into /usr/share/mk for includes, until told
> > otherwise. bsd.port.options.mk is included before bsd.port.pre.mk, so it
> > can't be found. Base system was modified to install stub of the same
> > name into /usr/share/mk to workaround this problem.
> Understood. Then we really have to wait till 5.5 and 6.2 EOL to use
> options.mk... That's a bit strange to wait multiple years for an
> useful feature, aren't there any workaround planned?

The question is, are there any workarounds possible?

-- 
Pav Lucistnik <[EMAIL PROTECTED]>
  <[EMAIL PROTECTED]>

It whines, glows and fades...


signature.asc
Description: Toto je digitálně	 podepsaná část	 zprávy


Re: bsd.port.options.mk status

2007-09-10 Thread Jeremy Messenger

On Mon, 10 Sep 2007 11:58:34 -0500, Pav Lucistnik <[EMAIL PROTECTED]> wrote:


Dmitry Marakasov píše v po 10. 09. 2007 v 19:26 +0400:

* Pav Lucistnik ([EMAIL PROTECTED]) wrote:

> > > It's possible to use this feature, but only on -CURRENT and  
-STABLE
> > > FreeBSD systems newer than certain date. No existing release  
supports it

> > > - it will be supported in upcoming 6.3 and 7.0.
> > Erm, isn't ports code (more or less) release-independent? What's  
missing

> > in existing FreeBSD versions that's needed to support options.mk?
> The make only looks into /usr/share/mk for includes, until told
> otherwise. bsd.port.options.mk is included before bsd.port.pre.mk, so  
it

> can't be found. Base system was modified to install stub of the same
> name into /usr/share/mk to workaround this problem.
Understood. Then we really have to wait till 5.5 and 6.2 EOL to use
options.mk... That's a bit strange to wait multiple years for an
useful feature, aren't there any workaround planned?


The question is, are there any workarounds possible?


Create a port of that, the old FreeBSD versions depend on it to install in  
/usr/share/mk. I kind of don't like it, but it looks like it's only a  
solution if it has to be in /usr/share/mk.


Cheers,
Mezz


--
[EMAIL PROTECTED]  -  [EMAIL PROTECTED]
FreeBSD GNOME Team  -  FreeBSD Multimedia Hat (ports, not src)
http://www.FreeBSD.org/gnome/  -  [EMAIL PROTECTED]
http://wiki.freebsd.org/multimedia  -  [EMAIL PROTECTED]
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


INDEX build failed for 5.x

2007-09-10 Thread Erwin Lansing
INDEX build failed with errors:
Generating INDEX-5 - please wait..pkg_info: not found
pkg_info: not found
pkg_info: not found
"Makefile", line 60: warning: "/usr/sbin/pkg_info -O 
x11-servers/XFree86-4-Server 2>/dev/null | /usr/bin/grep Server- || 
/usr/sbin/pkg_info -O x11-servers/xorg-server 2>/dev/null | /usr/bin/grep 
server- || /usr/sbin/pkg_info -qO x11-servers/xorg-server-snap 2>/dev/null" 
returned non-zero status
"/a/erwin/tindex/ports/x11/nvidia-driver-71xx/../nvidia-driver/Makefile", line 
60: warning: "/usr/sbin/pkg_info -O x11-servers/XFree86-4-Server 2>/dev/null | 
/usr/bin/grep Server- || /usr/sbin/pkg_info -O x11-servers/xorg-server 
2>/dev/null | /usr/bin/grep server- || /usr/sbin/pkg_info -qO 
x11-servers/xorg-server-snap 2>/dev/null" returned non-zero status
"/a/erwin/tindex/ports/x11/nvidia-driver-96xx/../nvidia-driver/Makefile", line 
60: warning: "/usr/sbin/pkg_info -O x11-servers/XFree86-4-Server 2>/dev/null | 
/usr/bin/grep Server- || /usr/sbin/pkg_info -O x11-servers/xorg-server 
2>/dev/null | /usr/bin/grep server- || /usr/sbin/pkg_info -qO 
x11-servers/xorg-server-snap 2>/dev/null" returned non-zero status
 Done.
Warning: Duplicate INDEX entry: cedet-emacs22-1.0.p4

Committers on the hook:
acm clement dryice flz mezz sat sem tmclaugh 

Most recent CVS update was:
U LEGAL
U devel/cedet/Makefile
U devel/cedet/distinfo
U devel/cedet/pkg-plist
U devel/cedet/files/patch-info
U devel/ecb/Makefile
U editors/xxe/Makefile
U editors/xxe/Makefile.inc
U editors/xxe/distinfo
U editors/xxe/pkg-plist
U mail/exim-doc-html/Makefile
U mail/exim-doc-html/distinfo
U net-p2p/deluge/Makefile
U net-p2p/deluge/distinfo
U net-p2p/deluge/pkg-plist
U net-p2p/libtorrent/Makefile
U net-p2p/libtorrent/distinfo
U net-p2p/libtorrent-devel/Makefile
U net-p2p/libtorrent-devel/distinfo
U net-p2p/rtorrent/Makefile
U net-p2p/rtorrent/distinfo
U net-p2p/rtorrent-devel/Makefile
U net-p2p/rtorrent-devel/distinfo
U textproc/translate-toolkit/Makefile
U www/apache20/Makefile
U www/apache20/files/apache2.sh.in
U www/jesred/Makefile
U www/jesred/files/patch-rewrite.c
U www/vee/Makefile
U www/vee/distinfo
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: bsd.port.options.mk status

2007-09-10 Thread Pav Lucistnik
Jeremy Messenger píše v po 10. 09. 2007 v 12:07 -0500:
> On Mon, 10 Sep 2007 11:58:34 -0500, Pav Lucistnik <[EMAIL PROTECTED]> wrote:
> 
> > Dmitry Marakasov píše v po 10. 09. 2007 v 19:26 +0400:
> >> * Pav Lucistnik ([EMAIL PROTECTED]) wrote:
> >>
> >> > > > It's possible to use this feature, but only on -CURRENT and  
> >> -STABLE
> >> > > > FreeBSD systems newer than certain date. No existing release  
> >> supports it
> >> > > > - it will be supported in upcoming 6.3 and 7.0.
> >> > > Erm, isn't ports code (more or less) release-independent? What's  
> >> missing
> >> > > in existing FreeBSD versions that's needed to support options.mk?
> >> > The make only looks into /usr/share/mk for includes, until told
> >> > otherwise. bsd.port.options.mk is included before bsd.port.pre.mk, so  
> >> it
> >> > can't be found. Base system was modified to install stub of the same
> >> > name into /usr/share/mk to workaround this problem.
> >> Understood. Then we really have to wait till 5.5 and 6.2 EOL to use
> >> options.mk... That's a bit strange to wait multiple years for an
> >> useful feature, aren't there any workaround planned?
> >
> > The question is, are there any workarounds possible?
> 
> Create a port of that, the old FreeBSD versions depend on it to install in  
> /usr/share/mk. I kind of don't like it, but it looks like it's only a  
> solution if it has to be in /usr/share/mk.

Doesn't solve anything. The files get installed _after_ they are needed.

-- 
Pav Lucistnik <[EMAIL PROTECTED]>
  <[EMAIL PROTECTED]>

The number you dialed is imaginary.
Please turn your phone by 90 degrees and try again.


signature.asc
Description: Toto je digitálně	 podepsaná část	 zprávy


Re: bsd.port.options.mk status

2007-09-10 Thread Dmitry Marakasov
* Pav Lucistnik ([EMAIL PROTECTED]) wrote:

> > Understood. Then we really have to wait till 5.5 and 6.2 EOL to use
> > options.mk... That's a bit strange to wait multiple years for an
> > useful feature, aren't there any workaround planned?
> The question is, are there any workarounds possible?
Well... The first thing that comes into my mind is a port that does:

do-install:
@if [ ! -e /usr/share/mk/bsd.port.options.mk ]; then \
${CP} ${PORTSDIR}/Mk/bsd.port.options.mk /usr/share/mk; \
fi

This port should be automatically added to EXTRACT_DEPENDS from
bsd.port.mk on specific FreeBSD versions (similar to how ports-mgmt/pkg_install
is added to depends on some FreeBSD versions now):

.if ((${OSVERSION} < ...) ...)
EXTRACT_DEPENDS+=   
/usr/share/Mk/bsd.port.options.mk:${PORTSDIR}/ports-mgmt/options_mk
.fi

Of course, this won't help if one tries to install port that includes
bsd.port.options.mk right away, but:
1) We can wait some time before submitting options.mk-including ports
2) Even if we don't, I think there's high probability that this fix
is installed for most users, so they won't even notice any problems, as
any port install/update will also install the fix.
3) Note in CHANGES for lucky ones who encounter `Could not find
bsd.port.options.mk' error, with trivial fix.

-- 
Best regards,
  Dmitry Marakasov   mailto:[EMAIL PROTECTED]
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: A new version of Tools/scripts/plist

2007-09-10 Thread Jeremy Messenger
On Mon, 10 Sep 2007 03:31:08 -0500, Martin Tournoij  
<[EMAIL PROTECTED]> wrote:



I've written a replacement for /ports/Tools/scripts/plist, the reason
this is a complete rewrite rather than an update is because I'm not
familair with ruby, and writing a new version in python was faster.

Problems/additions in this rewrite:
- Automaticlly replace the default PLIST_SUB values.

- Sensible sorting of the directory list, the current plist put
directory's in ths order:
share/someport/
share/someport/adir/
share/someport/adir/foobar
Which is the reverse of what it should be.

- There are a number of directory's which are always created but
should not be added to the pkg-plist, I have no idea where these
directory's come from, see the comment on line 49 of my script.

I wrote this script for personal purposes, but why not let other
people benefit, maybe it can be placed in Tools/scripts? Either
replacing the current plist or alongside it.

Script is attached in this email, or you can view it online if you
like:
http://www.rwxrwxrwx.net/plist.py.txt


I haven't use it, but I noticed that the mtree needs to be update to  
/usr/ports/Templates/BSD.local.dist and we don't use BSD.x11.dist any  
longer. I think it's safe for you to remove that workaround. I think you  
should go with 'make -V MTREE_FILE' instead of hardcore.


You can check auto-plist[1] that I have written to get idea/copy and  
improvement in your one.


[1] http://www.marcuscom.com:8080/cgi-bin/cvsweb.cgi/portstools/auto-plist/

Cheers,
Mezz


Regards,
Martin Tournoij



--
[EMAIL PROTECTED]  -  [EMAIL PROTECTED]
FreeBSD GNOME Team  -  FreeBSD Multimedia Hat (ports, not src)
http://www.FreeBSD.org/gnome/  -  [EMAIL PROTECTED]
http://wiki.freebsd.org/multimedia  -  [EMAIL PROTECTED]
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Odd segfault during Squid-2.6.16 compilation on CURRENT

2007-09-10 Thread Thomas-Martin Seck
[x-post to freebsd-current@ and freebsd-ports@, replies should probably
go to freebsd-current only since I only observe this issue on 7-CURRENT]

All,

I am currently struggling with an odd issue that keeps me (or rather
miwi@) from updating www/squid to 2.6.16:

During the compilation process, Squid uses a helper application cf_gen
to build the default squid.conf file from a template file, cf.data.

On CURRENT, cf_gen segfaults when processing said file while it works
just fine on 6.2-STABLE and 5.5-STABLE. Compiling Squid with gcc 4.2.1
(installed via the package available on ftp.freebsd.org) on 6.2-STABLE
works, too. According to miwi, compiling Squid with gcc 3.4 on CURRENT
does not fix the issue (is this correct, Martin?).

So it seems that this segfault occurs only on CURRENT and even with
CFLAGS="-O0 -g" set and is maybe not dependent on the compiler being
used.

There is no malloc.conf link and MALLOC_OPTIONS are unset. Kernel is a
stripped down GENERIC. This problem occurs on my i386 box and on miwi's
ports tinderbox (amd64 as well as i386). My CURRENT installation is
"FreeBSD 7.0-CURRENT #84: Thu Aug 30 16:48:08 CEST 2007".

Trying to debug this gives the following:

gnu GDB 6.1.1 [FreeBSD]
Copyright 2004 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB.  Type "show warranty" for details.
This GDB was configured as "i386-marcel-freebsd"...
Core was generated by `cf_gen'.
Program terminated with signal 11, Segmentation fault.
Reading symbols from /lib/libm.so.5...done.
Loaded symbols for /lib/libm.so.5
Reading symbols from /lib/libc.so.7...done.
Loaded symbols for /lib/libc.so.7
Reading symbols from /libexec/ld-elf.so.1...done.
Loaded symbols for /libexec/ld-elf.so.1
#0  0x281521d6 in strcmp () from /lib/libc.so.7
(gdb) bt
#0  0x281521d6 in strcmp () from /lib/libc.so.7
#1  0x08048db4 in checkDepend (directive=0x282058c0 "external_acl_type", 
name=0xbfbfe12e "externalAclHelper", types=0x282025e0, entries=0x28207730)
at cf_gen.c:133
#2  0x08049534 in main (argc=3, argv=0xbfbfe5e4) at cf_gen.c:284
(gdb) up
#1  0x08048db4 in checkDepend (directive=0x282058c0 "external_acl_type", 
name=0xbfbfe12e "externalAclHelper", types=0x282025e0, entries=0x28207730)
at cf_gen.c:133
133 if (strcmp(entry->name, dep->name) == 0)
(gdb) p *entry
$1 = {name = 0x282069f0 "comment", alias = 0x0, type = 0x0, 
  loc = 0x282069f8 "none", default_value = 0x0, default_if_none = 0x0, 
  comment = 0x0, ifdef = 0x0, doc = 0x28206a00, nocomment = 0x0, 
  array_flag = 0, next = 0x28207700}
(gdb) p *dep
$2 = {name = 0x22a02270 , next = 0x235022d0}
(gdb) quit

Does this sound familiar to anyone?

___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Updating X.org FreeBSD ports to 7.3

2007-09-10 Thread Beech Rintoul
I did run into one problem. The new xf86-input-keyboard driver isn't 
working properly. The keyboard works, but all the led's go out. 
Dropping back to console, they're back. There are no error messages 
that I could find.

FreeBSD stargate.alaskaparadise.com 7.0-CURRENT FreeBSD 7.0-CURRENT 
#8: Fri Aug 24 06:41:53 AKDT 2007

Beech

-- 
---
Beech Rintoul - FreeBSD Developer - [EMAIL PROTECTED]
/"\   ASCII Ribbon Campaign  | FreeBSD Since 4.x
\ / - NO HTML/RTF in e-mail   | http://www.freebsd.org
 X  - NO Word docs in e-mail | Latest Release:
/ \  - http://www.FreeBSD.org/releases/6.2R/announce.html
---



___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


INDEX build failed for 5.x

2007-09-10 Thread Erwin Lansing
INDEX build failed with errors:
Generating INDEX-5 - please wait..pkg_info: not found
pkg_info: not found
pkg_info: not found
"Makefile", line 60: warning: "/usr/sbin/pkg_info -O 
x11-servers/XFree86-4-Server 2>/dev/null | /usr/bin/grep Server- || 
/usr/sbin/pkg_info -O x11-servers/xorg-server 2>/dev/null | /usr/bin/grep 
server- || /usr/sbin/pkg_info -qO x11-servers/xorg-server-snap 2>/dev/null" 
returned non-zero status
"/a/erwin/tindex/ports/x11/nvidia-driver-71xx/../nvidia-driver/Makefile", line 
60: warning: "/usr/sbin/pkg_info -O x11-servers/XFree86-4-Server 2>/dev/null | 
/usr/bin/grep Server- || /usr/sbin/pkg_info -O x11-servers/xorg-server 
2>/dev/null | /usr/bin/grep server- || /usr/sbin/pkg_info -qO 
x11-servers/xorg-server-snap 2>/dev/null" returned non-zero status
"/a/erwin/tindex/ports/x11/nvidia-driver-96xx/../nvidia-driver/Makefile", line 
60: warning: "/usr/sbin/pkg_info -O x11-servers/XFree86-4-Server 2>/dev/null | 
/usr/bin/grep Server- || /usr/sbin/pkg_info -O x11-servers/xorg-server 
2>/dev/null | /usr/bin/grep server- || /usr/sbin/pkg_info -qO 
x11-servers/xorg-server-snap 2>/dev/null" returned non-zero status
 Done.
Warning: Duplicate INDEX entry: cedet-emacs22-1.0.p4

Committers on the hook:
acm clement dryice flz laszlof mezz miwi sat sem stas tmclaugh 

Most recent CVS update was:
U databases/pear-MDB2_Schema/Makefile
U databases/pear-MDB2_Schema/distinfo
U devel/pear/Makefile
U devel/pear/distinfo
U devel/pear-HTML_QuickForm_Livesearch/Makefile
U devel/pear-HTML_QuickForm_Livesearch/distinfo
U lang/newlisp/Makefile
U mail/nmzmail/Makefile
U mail/nmzmail/pkg-descr
U security/clamtk/Makefile
U security/clamtk/distinfo
U security/clamtk/pkg-plist
U sysutils/bacula-server/Makefile
U sysutils/bacula-server/distinfo
U www/aria2/Makefile
U www/aria2/distinfo
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: bsd.port.options.mk status

2007-09-10 Thread Vivek Khera


On Sep 10, 2007, at 1:15 PM, Pav Lucistnik wrote:

Create a port of that, the old FreeBSD versions depend on it to  
install in

/usr/share/mk. I kind of don't like it, but it looks like it's only a
solution if it has to be in /usr/share/mk.


Doesn't solve anything. The files get installed _after_ they are  
needed.


We force users of pre-6.2 systems to add a line to their /etc/ 
make.conf to set X11BASE, so why not force users of pre-6.2 systems  
to install a special port to make ports continue to work?



___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


INDEX build failed for 5.x

2007-09-10 Thread Erwin Lansing
INDEX build failed with errors:
Generating INDEX-5 - please wait..pkg_info: not found
pkg_info: not found
pkg_info: not found
"Makefile", line 60: warning: "/usr/sbin/pkg_info -O 
x11-servers/XFree86-4-Server 2>/dev/null | /usr/bin/grep Server- || 
/usr/sbin/pkg_info -O x11-servers/xorg-server 2>/dev/null | /usr/bin/grep 
server- || /usr/sbin/pkg_info -qO x11-servers/xorg-server-snap 2>/dev/null" 
returned non-zero status
"/a/erwin/tindex/ports/x11/nvidia-driver-71xx/../nvidia-driver/Makefile", line 
60: warning: "/usr/sbin/pkg_info -O x11-servers/XFree86-4-Server 2>/dev/null | 
/usr/bin/grep Server- || /usr/sbin/pkg_info -O x11-servers/xorg-server 
2>/dev/null | /usr/bin/grep server- || /usr/sbin/pkg_info -qO 
x11-servers/xorg-server-snap 2>/dev/null" returned non-zero status
"/a/erwin/tindex/ports/x11/nvidia-driver-96xx/../nvidia-driver/Makefile", line 
60: warning: "/usr/sbin/pkg_info -O x11-servers/XFree86-4-Server 2>/dev/null | 
/usr/bin/grep Server- || /usr/sbin/pkg_info -O x11-servers/xorg-server 
2>/dev/null | /usr/bin/grep server- || /usr/sbin/pkg_info -qO 
x11-servers/xorg-server-snap 2>/dev/null" returned non-zero status
 Done.
Warning: Duplicate INDEX entry: cedet-emacs22-1.0.p4

Committers on the hook:
acm ale beech clement dryice flz laszlof lx mezz miwi sat sem stas tmclaugh 

Most recent CVS update was:
U audio/musicpd/Makefile
U audio/spiralsynthmodular/Makefile
U audio/spiralsynthmodular/pkg-plist
U devel/pear-HTML_Table/Makefile
U devel/pear-HTML_Table/distinfo
U irc/unreal/Makefile
U irc/unreal/distinfo
U irc/unreal/pkg-plist
U irc/unreal/files/patch-configure
U security/opensc/Makefile
U security/opensc/distinfo
U security/opensc/files/patch-configure
U www/apache22/Makefile
U www/apache22/Makefile.modules
U www/apache22/pkg-plist
U www/apache22/files/patch-mpm-itk-20070425-00
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: [HEADSUP] bsd.perl.mk import coming soon

2007-09-10 Thread Andrew Pantyukhin
On Sun, Sep 09, 2007 at 10:57:50AM +1000, Edwin Groothuis wrote:
> On Sat, Sep 08, 2007 at 06:40:23PM +0200, Erwin Lansing wrote:
> > On Sat, Sep 08, 2007 at 10:30:51AM +0200, Henrik Brix Andersen wrote:
> > > On Fri, Sep 07, 2007 at 11:33:42PM +, Mark Linimon wrote:
> > > > The main feature of the change will be to allow USE_PERL5= 5.8.0+ (and
> > > > similarly for USE_PERL5_RUN, USE_PERL5_BUILD, PERL_CONFIGURE and
> > > > PERL_MODBUILD).  As a side-effect, the remaining few stragglers that
> > > > attempt to keep perl5.003 going will be dropped.  (Other committers
> > > > have also been removing that code).
> > > 
> > > Great! A big thank you to all who helped get this work done :)
> > > 
> > Let me chime in and thank everyone, especially Gabor for writing and
> > Mark for testing this.  This was a long needed feature that gets rid of
> > a huge number of cumbersome workarounds.  Thanks a lot!
> 
> An idea for next summer: PERL_RUN_DEPENDS=Foo::Bar
> (I know I've done by best for this one, and it failed here and there)

That would really be a killer feature. Applicable to other areas
like CPAN-like repos (rubygems, pypi, pear/pecl, etc.)
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: bsd.port.options.mk status

2007-09-10 Thread Andrew Pantyukhin
On Mon, Sep 10, 2007 at 06:58:34PM +0200, Pav Lucistnik wrote:
> Dmitry Marakasov píše v po 10. 09. 2007 v 19:26 +0400:
> > * Pav Lucistnik ([EMAIL PROTECTED]) wrote:
> > 
> > > > > It's possible to use this feature, but only on -CURRENT and -STABLE
> > > > > FreeBSD systems newer than certain date. No existing release supports 
> > > > > it
> > > > > - it will be supported in upcoming 6.3 and 7.0.
> > > > Erm, isn't ports code (more or less) release-independent? What's missing
> > > > in existing FreeBSD versions that's needed to support options.mk?
> > > The make only looks into /usr/share/mk for includes, until told
> > > otherwise. bsd.port.options.mk is included before bsd.port.pre.mk, so it
> > > can't be found. Base system was modified to install stub of the same
> > > name into /usr/share/mk to workaround this problem.
> > Understood. Then we really have to wait till 5.5 and 6.2 EOL to use
> > options.mk... That's a bit strange to wait multiple years for an
> > useful feature, aren't there any workaround planned?
> 
> The question is, are there any workarounds possible?

So am I missing something or is it as trivial as using these four
lines instead of one:

USEOPTIONSMK=   yes
INOPTIONSMK=yes
.include "bsd.port.mk"
.undef INOPTIONSMK
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: bsd.port.options.mk status

2007-09-10 Thread Pav Lucistnik
Andrew Pantyukhin píše v út 11. 09. 2007 v 02:00 +0400:
> On Mon, Sep 10, 2007 at 06:58:34PM +0200, Pav Lucistnik wrote:
> > Dmitry Marakasov píše v po 10. 09. 2007 v 19:26 +0400:
> > > * Pav Lucistnik ([EMAIL PROTECTED]) wrote:
> > > 
> > > > > > It's possible to use this feature, but only on -CURRENT and -STABLE
> > > > > > FreeBSD systems newer than certain date. No existing release 
> > > > > > supports it
> > > > > > - it will be supported in upcoming 6.3 and 7.0.
> > > > > Erm, isn't ports code (more or less) release-independent? What's 
> > > > > missing
> > > > > in existing FreeBSD versions that's needed to support options.mk?
> > > > The make only looks into /usr/share/mk for includes, until told
> > > > otherwise. bsd.port.options.mk is included before bsd.port.pre.mk, so it
> > > > can't be found. Base system was modified to install stub of the same
> > > > name into /usr/share/mk to workaround this problem.
> > > Understood. Then we really have to wait till 5.5 and 6.2 EOL to use
> > > options.mk... That's a bit strange to wait multiple years for an
> > > useful feature, aren't there any workaround planned?
> > 
> > The question is, are there any workarounds possible?
> 
> So am I missing something or is it as trivial as using these four
> lines instead of one:
> 
> USEOPTIONSMK= yes
> INOPTIONSMK=  yes
> .include "bsd.port.mk"
> .undef INOPTIONSMK

No idea, does it work? My only problem with that is it looks rather
scary :)

-- 
Pav Lucistnik <[EMAIL PROTECTED]>
  <[EMAIL PROTECTED]>

It whines, glows and fades...


signature.asc
Description: Toto je digitálně	 podepsaná část	 zprávy


Re: Upgrading to squid-2.6.15 is not recommended.

2007-09-10 Thread Andrew Pantyukhin
On Mon, Sep 10, 2007 at 12:04:29PM +0400, Sergey Matveychuk wrote:
> Thomas-Martin Seck wrote:
>> * RW <[EMAIL PROTECTED]> [gmane.os.freebsd.devel.ports]:
>>> The squid site is recommending that people skip 2.6.15 and go straight
>>> to 2.6.16
>> The Squid maintainer can not resist to recommend that people look
>> at what the FreeBSD port of Squid-2.6.STABLE15 actually delivers. :-)
> 
> I'd like to thank Thomas-Martin Seck for maintaining squid ports. It's the 
> one of little numbers ports those I'm sure work and stable after upgrade. 
> Really great work!

Same here. Squid is one of those ports I'm always proud to show 
off to my Linux-stuck friends. That said, I'm very grateful to 
hundreds of other maintainers. This is just a convenient moment 
to say that tmseck really does a great job.

Thanks, man!
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Updating X.org FreeBSD ports to 7.3

2007-09-10 Thread Craig Boston
On Mon, Sep 10, 2007 at 10:48:27AM -0800, Beech Rintoul wrote:
> I did run into one problem. The new xf86-input-keyboard driver isn't 
> working properly. The keyboard works, but all the led's go out. 
> Dropping back to console, they're back. There are no error messages 
> that I could find.

I have the same problem with the existing version.  All the keyboard LEDs
are either lit constantly or off and do not reflect the actual state
they should be in.  I've noticed it ever since X.org went to 7.2.
Happens to me on at least 3 different machines.

I also run 7-CURRENT, so since I haven't seen a ton of complaints on the
lists I figured it was something that only affects current.

Craig
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Updating X.org FreeBSD ports to 7.3

2007-09-10 Thread Beech Rintoul
On Monday 10 September 2007, Craig Boston said:
> On Mon, Sep 10, 2007 at 10:48:27AM -0800, Beech Rintoul wrote:
> > I did run into one problem. The new xf86-input-keyboard driver
> > isn't working properly. The keyboard works, but all the led's go
> > out. Dropping back to console, they're back. There are no error
> > messages that I could find.
>
> I have the same problem with the existing version.  All the
> keyboard LEDs are either lit constantly or off and do not reflect
> the actual state they should be in.  I've noticed it ever since
> X.org went to 7.2. Happens to me on at least 3 different machines.
>
> I also run 7-CURRENT, so since I haven't seen a ton of complaints
> on the lists I figured it was something that only affects current.
>
> Craig

According to flz it's a known problem.



-- 
---
Beech Rintoul - FreeBSD Developer - [EMAIL PROTECTED]
/"\   ASCII Ribbon Campaign  | FreeBSD Since 4.x
\ / - NO HTML/RTF in e-mail   | http://www.freebsd.org
 X  - NO Word docs in e-mail | Latest Release:
/ \  - http://www.FreeBSD.org/releases/6.2R/announce.html
---



___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


INDEX build failed for 5.x

2007-09-10 Thread Erwin Lansing
INDEX build failed with errors:
Generating INDEX-5 - please wait..pkg_info: not found
pkg_info: not found
pkg_info: not found
"Makefile", line 60: warning: "/usr/sbin/pkg_info -O 
x11-servers/XFree86-4-Server 2>/dev/null | /usr/bin/grep Server- || 
/usr/sbin/pkg_info -O x11-servers/xorg-server 2>/dev/null | /usr/bin/grep 
server- || /usr/sbin/pkg_info -qO x11-servers/xorg-server-snap 2>/dev/null" 
returned non-zero status
"/a/erwin/tindex/ports/x11/nvidia-driver-71xx/../nvidia-driver/Makefile", line 
60: warning: "/usr/sbin/pkg_info -O x11-servers/XFree86-4-Server 2>/dev/null | 
/usr/bin/grep Server- || /usr/sbin/pkg_info -O x11-servers/xorg-server 
2>/dev/null | /usr/bin/grep server- || /usr/sbin/pkg_info -qO 
x11-servers/xorg-server-snap 2>/dev/null" returned non-zero status
"/a/erwin/tindex/ports/x11/nvidia-driver-96xx/../nvidia-driver/Makefile", line 
60: warning: "/usr/sbin/pkg_info -O x11-servers/XFree86-4-Server 2>/dev/null | 
/usr/bin/grep Server- || /usr/sbin/pkg_info -O x11-servers/xorg-server 
2>/dev/null | /usr/bin/grep server- || /usr/sbin/pkg_info -qO 
x11-servers/xorg-server-snap 2>/dev/null" returned non-zero status
 Done.
Warning: Duplicate INDEX entry: cedet-emacs22-1.0.p4

Committers on the hook:
acm ale beech clement dryice flz laszlof lbr lx mezz miwi sat sem stas tmclaugh 

Most recent CVS update was:
U Mk/bsd.sites.mk
U devel/p5-MRO-Compat/Makefile
U devel/p5-MRO-Compat/distinfo
U security/vuxml/vuln.xml
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: [HEADSUP] bsd.perl.mk import coming soon

2007-09-10 Thread Edwin Groothuis
On Tue, Sep 11, 2007 at 01:50:39AM +0400, Andrew Pantyukhin wrote:
> On Sun, Sep 09, 2007 at 10:57:50AM +1000, Edwin Groothuis wrote:
> > On Sat, Sep 08, 2007 at 06:40:23PM +0200, Erwin Lansing wrote:
> > > On Sat, Sep 08, 2007 at 10:30:51AM +0200, Henrik Brix Andersen wrote:
> > > > On Fri, Sep 07, 2007 at 11:33:42PM +, Mark Linimon wrote:
> > > > > The main feature of the change will be to allow USE_PERL5= 5.8.0+ (and
> > > > > similarly for USE_PERL5_RUN, USE_PERL5_BUILD, PERL_CONFIGURE and
> > > > > PERL_MODBUILD).  As a side-effect, the remaining few stragglers that
> > > > > attempt to keep perl5.003 going will be dropped.  (Other committers
> > > > > have also been removing that code).
> > > > 
> > > > Great! A big thank you to all who helped get this work done :)
> > > > 
> > > Let me chime in and thank everyone, especially Gabor for writing and
> > > Mark for testing this.  This was a long needed feature that gets rid of
> > > a huge number of cumbersome workarounds.  Thanks a lot!
> > 
> > An idea for next summer: PERL_RUN_DEPENDS=  Foo::Bar
> > (I know I've done by best for this one, and it failed here and there)
> 
> That would really be a killer feature. Applicable to other areas
> like CPAN-like repos (rubygems, pypi, pear/pecl, etc.)

See http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/87318. It came
into bsd.port.mk once, but it was removed after people complained
too much.

Edwin
-- 
Edwin Groothuis  |Personal website: http://www.mavetju.org
[EMAIL PROTECTED]|  Weblog: http://www.mavetju.org/weblog/
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: bsd.port.options.mk status

2007-09-10 Thread Kris Kennaway

Dmitry Marakasov wrote:

* Pav Lucistnik ([EMAIL PROTECTED]) wrote:


It's possible to use this feature, but only on -CURRENT and -STABLE
FreeBSD systems newer than certain date. No existing release supports it
- it will be supported in upcoming 6.3 and 7.0.

Erm, isn't ports code (more or less) release-independent? What's missing
in existing FreeBSD versions that's needed to support options.mk?

The make only looks into /usr/share/mk for includes, until told
otherwise. bsd.port.options.mk is included before bsd.port.pre.mk, so it
can't be found. Base system was modified to install stub of the same
name into /usr/share/mk to workaround this problem.

Understood. Then we really have to wait till 5.5 and 6.2 EOL to use
options.mk... That's a bit strange to wait multiple years for an
useful feature, aren't there any workaround planned?


I have some ideas on how to construct a working time machine, but I just 
need some seed capital :)


Kris

___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


math/blas fails to build - filesize error

2007-09-10 Thread Norberto Meijome
hi ,
Ports tree updated 10 minutes ago. Tested twice, my network link is ok.

$ sudo portupgrade -pP blas
--->  Checking for the latest package of 'math/blas'
--->  Found a package of 'math/blas': /usr/ports/packages/All/blas-1.0_1.tbz 
(blas-1.0_1)
--->  Fetching the package(s) for 'blas-1.0_2' (math/blas)
--->  Fetching blas-1.0_2
fetch: 
ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/i386/packages-6-stable/All/blas-1.0_2.tbz:
 File unavailable (e.g., file not found, no access)
** The command returned a non-zero exit status: 1
** Failed to fetch 
ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/i386/packages-6-stable/All/blas-1.0_2.tbz
fetch: 
ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/i386/packages-6-stable/All/blas-1.0_2.tgz:
 File unavailable (e.g., file not found, no access)
** The command returned a non-zero exit status: 1
** Failed to fetch 
ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/i386/packages-6-stable/All/blas-1.0_2.tgz
** Failed to fetch blas-1.0_2
** Listing the failed packages (*:skipped / !:failed)
! blas-1.0_2(fetch error)
--->  Packages processed: 0 done, 0 ignored, 0 skipped and 1 failed
--->  Located a package version 1.0_1 (/usr/ports/packages/All/blas-1.0_1.tbz)
** Ignoring the package, which is the same version as is installed (1.0_1)
--->  Using the port instead of a package
--->  Upgrading 'blas-1.0_1' to 'blas-1.0_2' (math/blas)
--->  Building '/usr/ports/math/blas'
===>  Cleaning for blas-1.0_2
===>  Extracting for blas-1.0_2
=> MD5 Checksum mismatch for blas.tgz.
=> SHA256 Checksum mismatch for blas.tgz.
===>  Refetch for 1 more times files: blas.tgz blas.tgz
=> blas.tgz doesn't seem to exist in /usr/ports/distfiles/.
=> Attempting to fetch from http://www.netlib.org/blas/.
fetch: blas.tgz: local modification time does not match remote
=> Attempting to fetch from 
ftp://ftp.mirrorservice.org/sites/netlib.bell-labs.com/netlib/blas/.
fetch: blas.tgz: local modification time does not match remote
=> Attempting to fetch from ftp://netlib.bell-labs.com/netlib/blas/.
fetch: ftp://netlib.bell-labs.com/netlib/blas/blas.tgz: File unavailable (e.g., 
file not found, no access)
=> Attempting to fetch from ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/.
fetch: ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/blas.tgz: size 
mismatch: expected 98957, actual 94981
=> Couldn't fetch it - please try to retrieve this
=> port manually into /usr/ports/distfiles/ and try again.
*** Error code 1

Stop in /usr/ports/math/blas.
*** Error code 1

Stop in /usr/ports/math/blas.
** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade.49721.0 
env UPGRADE_TOOL=portupgrade UPGRADE_PORT=blas-1.0_1 UPGRADE_PORT_VER=1.0_1 
make DEPENDS_TARGET=package
** Fix the problem and try again.
** Listing the failed packages (*:skipped / !:failed)
! math/blas (blas-1.0_1)(checksum mismatch)
--->  Packages processed: 0 done, 0 ignored, 0 skipped and 1 failed

_
{Beto|Norberto|Numard} Meijome

"Either you are incompetent - or you are lying to me."
  Nigel Grange

I speak for myself, not my employer. Contents may be hot. Slippery when wet. 
Reading disclaimers makes you go blind. Writing them is worse. You have been 
Warned.
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: [HEADSUP] bsd.perl.mk import coming soon

2007-09-10 Thread Andrew Pantyukhin
On Tue, Sep 11, 2007 at 09:12:26AM +1000, Edwin Groothuis wrote:
> On Tue, Sep 11, 2007 at 01:50:39AM +0400, Andrew Pantyukhin wrote:
> > On Sun, Sep 09, 2007 at 10:57:50AM +1000, Edwin Groothuis wrote:
> > > On Sat, Sep 08, 2007 at 06:40:23PM +0200, Erwin Lansing wrote:
> > > > On Sat, Sep 08, 2007 at 10:30:51AM +0200, Henrik Brix Andersen wrote:
> > > > > On Fri, Sep 07, 2007 at 11:33:42PM +, Mark Linimon wrote:
> > > > > > The main feature of the change will be to allow USE_PERL5= 5.8.0+ 
> > > > > > (and
> > > > > > similarly for USE_PERL5_RUN, USE_PERL5_BUILD, PERL_CONFIGURE and
> > > > > > PERL_MODBUILD).  As a side-effect, the remaining few stragglers that
> > > > > > attempt to keep perl5.003 going will be dropped.  (Other committers
> > > > > > have also been removing that code).
> > > > > 
> > > > > Great! A big thank you to all who helped get this work done :)
> > > > > 
> > > > Let me chime in and thank everyone, especially Gabor for writing and
> > > > Mark for testing this.  This was a long needed feature that gets rid of
> > > > a huge number of cumbersome workarounds.  Thanks a lot!
> > > 
> > > An idea for next summer: PERL_RUN_DEPENDS=Foo::Bar
> > > (I know I've done by best for this one, and it failed here and there)
> > 
> > That would really be a killer feature. Applicable to other areas
> > like CPAN-like repos (rubygems, pypi, pear/pecl, etc.)
> 
> See http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/87318. It came
> into bsd.port.mk once, but it was removed after people complained
> too much.

What I am thinking about is not having to specify which port to
install from. A module name should be enough. Some kind of
(CPAN-based?) registry is needed for this to work.
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


INDEX build failed for 5.x

2007-09-10 Thread Erwin Lansing
INDEX build failed with errors:
Generating INDEX-5 - please wait..pkg_info: not found
pkg_info: not found
pkg_info: not found
"Makefile", line 60: warning: "/usr/sbin/pkg_info -O 
x11-servers/XFree86-4-Server 2>/dev/null | /usr/bin/grep Server- || 
/usr/sbin/pkg_info -O x11-servers/xorg-server 2>/dev/null | /usr/bin/grep 
server- || /usr/sbin/pkg_info -qO x11-servers/xorg-server-snap 2>/dev/null" 
returned non-zero status
"/a/erwin/tindex/ports/x11/nvidia-driver-71xx/../nvidia-driver/Makefile", line 
60: warning: "/usr/sbin/pkg_info -O x11-servers/XFree86-4-Server 2>/dev/null | 
/usr/bin/grep Server- || /usr/sbin/pkg_info -O x11-servers/xorg-server 
2>/dev/null | /usr/bin/grep server- || /usr/sbin/pkg_info -qO 
x11-servers/xorg-server-snap 2>/dev/null" returned non-zero status
"/a/erwin/tindex/ports/x11/nvidia-driver-96xx/../nvidia-driver/Makefile", line 
60: warning: "/usr/sbin/pkg_info -O x11-servers/XFree86-4-Server 2>/dev/null | 
/usr/bin/grep Server- || /usr/sbin/pkg_info -O x11-servers/xorg-server 
2>/dev/null | /usr/bin/grep server- || /usr/sbin/pkg_info -qO 
x11-servers/xorg-server-snap 2>/dev/null" returned non-zero status
 Done.
Warning: Duplicate INDEX entry: cedet-emacs22-1.0.p4

Committers on the hook:
acm ale beech clement dryice edwin flz laszlof lbr lx mezz miwi sat sem stas 
tmclaugh 

Most recent CVS update was:
U games/Makefile
U games/crafty-tablebase-no-pawn/Makefile
U games/crafty-tablebase-no-pawn/distinfo
U games/crafty-tablebase-no-pawn/pkg-descr
U games/crafty-tablebase-no-pawn/pkg-message
U games/crafty-tablebase-no-pawn/pkg-plist
U games/crafty-tablebase-no-pawn/scripts/configure
U games/crafty-tablebase-pawn/Makefile
U games/crafty-tablebase-pawn/distinfo
U games/crafty-tablebase-pawn/pkg-descr
U games/crafty-tablebase-pawn/pkg-message
U games/crafty-tablebase-pawn/pkg-plist
U games/crafty-tablebase-pawn/scripts/configure
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


INDEX build failed for 5.x

2007-09-10 Thread Erwin Lansing
INDEX build failed with errors:
Generating INDEX-5 - please wait..pkg_info: not found
pkg_info: not found
pkg_info: not found
"Makefile", line 60: warning: "/usr/sbin/pkg_info -O 
x11-servers/XFree86-4-Server 2>/dev/null | /usr/bin/grep Server- || 
/usr/sbin/pkg_info -O x11-servers/xorg-server 2>/dev/null | /usr/bin/grep 
server- || /usr/sbin/pkg_info -qO x11-servers/xorg-server-snap 2>/dev/null" 
returned non-zero status
"/a/erwin/tindex/ports/x11/nvidia-driver-71xx/../nvidia-driver/Makefile", line 
60: warning: "/usr/sbin/pkg_info -O x11-servers/XFree86-4-Server 2>/dev/null | 
/usr/bin/grep Server- || /usr/sbin/pkg_info -O x11-servers/xorg-server 
2>/dev/null | /usr/bin/grep server- || /usr/sbin/pkg_info -qO 
x11-servers/xorg-server-snap 2>/dev/null" returned non-zero status
"/a/erwin/tindex/ports/x11/nvidia-driver-96xx/../nvidia-driver/Makefile", line 
60: warning: "/usr/sbin/pkg_info -O x11-servers/XFree86-4-Server 2>/dev/null | 
/usr/bin/grep Server- || /usr/sbin/pkg_info -O x11-servers/xorg-server 
2>/dev/null | /usr/bin/grep server- || /usr/sbin/pkg_info -qO 
x11-servers/xorg-server-snap 2>/dev/null" returned non-zero status
 Done.
Warning: Duplicate INDEX entry: cedet-emacs22-1.0.p4

Committers on the hook:
acm ale beech clement dryice edwin flz laszlof lbr lx mezz miwi sat sem stas 
tabthorpe tmclaugh 

Most recent CVS update was:
U misc/heyu2/Makefile
U misc/heyu2/distinfo
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


INDEX build failed for 5.x

2007-09-10 Thread Erwin Lansing
INDEX build failed with errors:
Generating INDEX-5 - please wait..pkg_info: not found
pkg_info: not found
pkg_info: not found
"Makefile", line 60: warning: "/usr/sbin/pkg_info -O 
x11-servers/XFree86-4-Server 2>/dev/null | /usr/bin/grep Server- || 
/usr/sbin/pkg_info -O x11-servers/xorg-server 2>/dev/null | /usr/bin/grep 
server- || /usr/sbin/pkg_info -qO x11-servers/xorg-server-snap 2>/dev/null" 
returned non-zero status
"/a/erwin/tindex/ports/x11/nvidia-driver-71xx/../nvidia-driver/Makefile", line 
60: warning: "/usr/sbin/pkg_info -O x11-servers/XFree86-4-Server 2>/dev/null | 
/usr/bin/grep Server- || /usr/sbin/pkg_info -O x11-servers/xorg-server 
2>/dev/null | /usr/bin/grep server- || /usr/sbin/pkg_info -qO 
x11-servers/xorg-server-snap 2>/dev/null" returned non-zero status
"/a/erwin/tindex/ports/x11/nvidia-driver-96xx/../nvidia-driver/Makefile", line 
60: warning: "/usr/sbin/pkg_info -O x11-servers/XFree86-4-Server 2>/dev/null | 
/usr/bin/grep Server- || /usr/sbin/pkg_info -O x11-servers/xorg-server 
2>/dev/null | /usr/bin/grep server- || /usr/sbin/pkg_info -qO 
x11-servers/xorg-server-snap 2>/dev/null" returned non-zero status
 Done.
Warning: Duplicate INDEX entry: cedet-emacs22-1.0.p4
Warning: Duplicate INDEX entry: apache-1.3.39

Committers on the hook:
acm ale beech clement dryice edwin flz laszlof lbr lx marcus mezz miwi sat sem 
stas sumikawa tabthorpe tmclaugh 

Most recent CVS update was:
U graphics/epdfview/Makefile
U graphics/evince/Makefile
U graphics/gimp-app-devel/Makefile
U graphics/poppler/Makefile
U graphics/poppler/distinfo
U graphics/poppler/pkg-plist
U graphics/poppler/files/patch-glib_Makefile.in
U graphics/poppler-gtk/pkg-plist
U graphics/poppler-qt/pkg-plist
U graphics/poppler-qt4/pkg-plist
U sysutils/tracker/Makefile
U www/apache13+ipv6/Makefile
U www/apache13+ipv6/distinfo
U www/apache13+ipv6/pkg-plist
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


compat-6x does not work when kernel has NO_KSE

2007-09-10 Thread Jiawei Ye
Hi,

This hit me when I tried bootstrapping JDK builds on a -current with
Diablo JDK1.5.

Running "java -version" returns

Fatal error 'kse_create() failed
' at line 444 in file /usr/src/lib/libpthread/thread/thr_kern.c (errno = 2)

Any workarounds for this?

Jiawei Ye

-- 
"If it looks like a duck, walks like a duck, and quacks like a duck,
then to the end user it's a duck, and end users have made it pretty
clear they want a duck; whether the duck drinks hot chocolate or
coffee is irrelevant."
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: compat-6x does not work when kernel has NO_KSE

2007-09-10 Thread LI Xin
Jiawei Ye wrote:
> Hi,
> 
> This hit me when I tried bootstrapping JDK builds on a -current with
> Diablo JDK1.5.
> 
> Running "java -version" returns
> 
> Fatal error 'kse_create() failed
> ' at line 444 in file /usr/src/lib/libpthread/thread/thr_kern.c (errno = 2)
> 
> Any workarounds for this?

Will mapping libpthread.so.2 to libthr.so.2 work?

Cheers,
-- 
Xin LI <[EMAIL PROTECTED]>  http://www.delphij.net/
FreeBSD - The Power to Serve!



signature.asc
Description: OpenPGP digital signature