Re: portsdb: Warning: Duplicate INDEX entry [SOLVED]

2004-03-01 Thread Jeff Penn
Kris Kennaway [EMAIL PROTECTED]:
 On Tue, Feb 24, 2004 at 09:32:15PM +, Jeff Penn wrote:
 * Kris Kennaway [EMAIL PROTECTED]:
  On Mon, 23 Feb 2004, Jeff Penn wrote:
 
  My ports system is in a bit of a mess.  The problems first surfaced
  after last weeks 'cvsup; portsdb -uU'.  This weeks cvsup did not
  improve the situation:
 
  Run 'make describe' on its own..it will give an error at some point,
  which should let us determine what is going wrong.

It was decided that my ports had to be rebuilt from scratch.  The likely
cause of the problem is failing to adobt my ports when I first
cvsupped. (details: http://www.cvsup.org/faq.html)
 
After deleting the ports tree  installing ports.tgz from my ver 4.4 
installation CDROM I cvsup'd using 'tag=RELEASE_4_4_0', then cvsup'd
again with 'tag=.'  However portsdb -uU still failed:

  make_index: fandango-0.2.5: no entry for /usr/ports/x11/kdelibs3
  Warning: Duplicate INDEX entry: *** Error code 1
  Warning: Duplicate INDEX entry:

 make description also failed:

  === chinese/abiword failed:
  zh-abiword-0.7.13: /usr/ports/editors/AbiWord non-existent --
  dependency list incomplete
  === chinese/acroread-chsfont
  *** Error code 1

I got around this by removing all the ports/* entries from my refuse
file so that I receive the full ports collection.

Jeff

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


Re: portsdb: Warning: Duplicate INDEX entry

2004-02-26 Thread Uwe Doering
Bernard El-Hagin wrote:
Uwe Doering wrote:
Bernard El-Hagin wrote:
Kris Kennaway [EMAIL PROTECTED] wrote:
[...]
I think there's something in one of the included makefiles that relies
on a change to make(1) that happened after 5.1-RELEASE.  Note that
only the most recent release is supported by the ports collection
(http://www.freebsd.org/ports); try updating to 5.2 or 4.9, which
should fix the problem.
Wow, that really sucks, since I've had zero luck updating to 5.2 the two
times I tried, and going with 4.9 from 5.1R means a reinstall, rather
than an upgrade (I'm led to believe).
If you have the OS sources installed you could selectively upgrade the 
source files of make(1) via cvsup(1) and just install it.  No need to 
upgrade the whole OS only because make(1) got an additional command line 
option.  We recently did this for our 4.5 based systems.
Could you please explain how that's done? I've never selectively
upgraded the source and I'm afraid of screwing something up.
If you haven't already done so, install the port 'cvsup', preferably the 
precompiled package in order to avoid having to install Modula (which 
'cvsup' is written in).

Then you need an appropriate supfile, '/etc/cvsup-src-5.2' in this 
example, which should look like this:

- cut here 
*default  host=cvsup.FreeBSD.org
*default  base=/usr
*default  prefix=/usr
*default  release=cvs
*default  tag=RELENG_5_2
*default  delete use-rel-suffix
src-all
- cut here 
Now do

  cvsup -g -i src/usr.bin/make /etc/cvsup-src-5.2

Once this went through successfully, build and install the new version:

  cd /usr/src/usr.bin/make
  make obj  make depend  make
  make install
  (clean up /usr/obj afterwards if desired)
That's it.  You can selectively upgrade other programs the same way if 
necessary, provided of course there are no incompatibilities in the 
respective areas between the OS releases.  A look at the CVS commit 
comments is always a good idea in this context.

   Uwe
--
Uwe Doering |  EscapeBox - Managed On-Demand UNIX Servers
[EMAIL PROTECTED]  |  http://www.escapebox.net
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: portsdb: Warning: Duplicate INDEX entry

2004-02-26 Thread Bernard El-Hagin
Uwe Doering wrote:

Bernard El-Hagin wrote:
 Uwe Doering wrote:
Bernard El-Hagin wrote:
Kris Kennaway [EMAIL PROTECTED] wrote:
[...]
I think there's something in one of the included makefiles that relies
on a change to make(1) that happened after 5.1-RELEASE.  Note that
only the most recent release is supported by the ports collection
(http://www.freebsd.org/ports); try updating to 5.2 or 4.9, which
should fix the problem.

Wow, that really sucks, since I've had zero luck updating to 5.2 the two
times I tried, and going with 4.9 from 5.1R means a reinstall, rather
than an upgrade (I'm led to believe).

If you have the OS sources installed you could selectively upgrade the 
source files of make(1) via cvsup(1) and just install it.  No need to 
upgrade the whole OS only because make(1) got an additional command line 
option.  We recently did this for our 4.5 based systems.
 
 Could you please explain how that's done? I've never selectively
 upgraded the source and I'm afraid of screwing something up.

If you haven't already done so, install the port 'cvsup', preferably the 
precompiled package in order to avoid having to install Modula (which 
'cvsup' is written in).

Then you need an appropriate supfile, '/etc/cvsup-src-5.2' in this 
example, which should look like this:

- cut here 
*default  host=cvsup.FreeBSD.org
*default  base=/usr
*default  prefix=/usr
*default  release=cvs
*default  tag=RELENG_5_2
*default  delete use-rel-suffix

src-all
- cut here 

Now do

   cvsup -g -i src/usr.bin/make /etc/cvsup-src-5.2

Once this went through successfully, build and install the new version:

   cd /usr/src/usr.bin/make
   make obj  make depend  make
   make install
   (clean up /usr/obj afterwards if desired)

That's it.  You can selectively upgrade other programs the same way if 
necessary, provided of course there are no incompatibilities in the 
respective areas between the OS releases.  A look at the CVS commit 
comments is always a good idea in this context.


Thanks very much for that information, Uwe. I had no idea that such
selective upgrading was possible.


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


Re: portsdb: Warning: Duplicate INDEX entry

2004-02-26 Thread Robert Huff

Uwe Doering writes:

  If you haven't already done so, install the port 'cvsup', preferably the 
  precompiled package in order to avoid having to install Modula (which 
  'cvsup' is written in).
  
  Then you need an appropriate supfile, '/etc/cvsup-src-5.2' in this 
  example, which should look like this:

THis is one of those cases where one really needs to understand
the program and the config file (supfile), lest they dig the hole
even deeper.  (Fortunately, the extra depth is fillable, but still.)
Read the man page; study the sample supfile.


Robert Huff


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


Re: portsdb: Warning: Duplicate INDEX entry

2004-02-25 Thread Bernard El-Hagin

I asked:


Uwe Doering wrote:


[...]


If you have the OS sources installed you could selectively upgrade the 
source files of make(1) via cvsup(1) and just install it.  No need to 
upgrade the whole OS only because make(1) got an additional command line 
option.  We recently did this for our 4.5 based systems.


Could you please explain how that's done? I've never selectively
upgraded the source and I'm afraid of screwing something up.


Pretty please?


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


[jeff@jrpenn.demon.co.uk: Re: portsdb: Warning: Duplicate INDEX entry]

2004-02-25 Thread Jeff Penn
Forgot to copy list.

- Forwarded message from Jeff Penn [EMAIL PROTECTED] -

From: Jeff Penn [EMAIL PROTECTED]
To: Kris Kennaway [EMAIL PROTECTED]
Subject: Re: portsdb: Warning: Duplicate INDEX entry
Date: Wed, 25 Feb 2004 18:36:57 +

On Tue, Feb 24, 2004 at 04:15:28PM -0800, Kris Kennaway wrote:
 On Tue, Feb 24, 2004 at 09:32:15PM +, Jeff Penn wrote:
  * Kris Kennaway [EMAIL PROTECTED]:
   On Mon, 23 Feb 2004, Jeff Penn wrote:
  
   My ports system is in a bit of a mess.  The problems first surfaced
   after last weeks 'cvsup; portsdb -uU'.  This weeks cvsup did not
   improve the situation:
  
   Run 'make describe' on its own..it will give an error at some point,
   which should let us determine what is going wrong.
  
  My system is running 4.9 release.  Output of make describe follows:
  
  kdeaccessibility-3.2.0: /usr/ports/x11-toolkits/qt32 non-existent -- d
  ependency list incomplete
  kdeaccessibility-3.2.0: /usr/ports/x11-toolkits/qt32 non-existent -- d
  ependency list incomplete
 
 That directory should exist if you have the complete ports collection. 
It does not exist.  Cvsup does not seem to be updating the ports tree to
current.  The last 3 cvsup's have had problems, twice using
cvsup.uk.FreeBSD.org,  the most recent from cvsup4.uk.FreeBSD.org.

ports/dns is missing:

#
# MOVED - a list of (recently) moved or removed ports
#
# $FreeBSD: ports/MOVED,v 1.341 2004/02/18 03:50:34 adamw Exp $
 === snip ===
net/bind8|dns/bind8|2003-09-05|moved to new dns category
net/bind84|dns/bind84|2003-09-05|moved to new dns category
net/bind9|dns/bind9|2003-09-05|moved to new dns category
net/bind9-dlz|dns/bind9-dlz|2003-09-05|moved to new dns category


# $FreeBSD: ports/Makefile,v 1.79 2004/01/22 09:16:59 marcus Exp $
#
 === snip ===
SUBDIR += dns


# $FreeBSD: ports/net/Makefile,v 1.914 2003/02/09 05:03:04 marcus Exp $
#
 === snip ===
SUBDIR += bind8
SUBDIR += bind9
SUBDIR += bind9-dlz


/usr/share/examples/cvsup/ports-supfile:
*default host=CHANGE_THIS.FreeBSD.org
*default base=/usr
*default prefix=/usr
*default release=cvs tag=.
*default delete use-rel-suffix
ports-all

/usr/sup/refuse:
contrib/bind
gnu/libexec/uucp
doc/de_*
doc/es_*
doc/el_*
doc/fr_*
doc/it_*
doc/ja_*
doc/nl_*
doc/no_*
doc/pl_*
doc/pt_*
doc/ru_*
doc/sr_*
doc/zh_*
ports/arabic
ports/chinese
ports/french
ports/german
ports/hebrew
ports/hungarian
ports/japanese
ports/korean
ports/polish
ports/portuguese
ports/russian
ports/ukrainian
ports/vietnamese
ports/INDEX
ports/INDEX-5
ports/INDEX.db

thanks
Jeff

- End forwarded message -
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


[jeff@jrpenn.demon.co.uk: [jeff@jrpenn.demon.co.uk: Re: portsdb: Warning: Duplicate INDEX entry]]

2004-02-25 Thread Jeff Penn
More information included at the end of this message which may be of
interest.

Jeff

- Forwarded message from Jeff Penn [EMAIL PROTECTED] -

From: Jeff Penn [EMAIL PROTECTED]
To: Kris Kennaway [EMAIL PROTECTED]
Subject: Re: portsdb: Warning: Duplicate INDEX entry
Date: Wed, 25 Feb 2004 18:36:57 +

On Tue, Feb 24, 2004 at 04:15:28PM -0800, Kris Kennaway wrote:
 On Tue, Feb 24, 2004 at 09:32:15PM +, Jeff Penn wrote:
  * Kris Kennaway [EMAIL PROTECTED]:
   On Mon, 23 Feb 2004, Jeff Penn wrote:
  
   My ports system is in a bit of a mess.  The problems first surfaced
   after last weeks 'cvsup; portsdb -uU'.  This weeks cvsup did not
   improve the situation:
  
   Run 'make describe' on its own..it will give an error at some point,
   which should let us determine what is going wrong.
  
  My system is running 4.9 release.  Output of make describe follows:
  
  kdeaccessibility-3.2.0: /usr/ports/x11-toolkits/qt32 non-existent -- d
  ependency list incomplete
  kdeaccessibility-3.2.0: /usr/ports/x11-toolkits/qt32 non-existent -- d
  ependency list incomplete
 
 That directory should exist if you have the complete ports collection. 
It does not exist.  Cvsup does not seem to be updating the ports tree to
current.  The last 3 cvsup's have had problems, twice using
cvsup.uk.FreeBSD.org,  the most recent from cvsup4.uk.FreeBSD.org.

ports/dns is missing:

#
# MOVED - a list of (recently) moved or removed ports
#
# $FreeBSD: ports/MOVED,v 1.341 2004/02/18 03:50:34 adamw Exp $
 === snip ===
net/bind8|dns/bind8|2003-09-05|moved to new dns category
net/bind84|dns/bind84|2003-09-05|moved to new dns category
net/bind9|dns/bind9|2003-09-05|moved to new dns category
net/bind9-dlz|dns/bind9-dlz|2003-09-05|moved to new dns category


# $FreeBSD: ports/Makefile,v 1.79 2004/01/22 09:16:59 marcus Exp $
#
 === snip ===
SUBDIR += dns


# $FreeBSD: ports/net/Makefile,v 1.914 2003/02/09 05:03:04 marcus Exp $
#
 === snip ===
SUBDIR += bind8
SUBDIR += bind9
SUBDIR += bind9-dlz

ttyp4[1]# ll /usr/ports/Mk
total 338
-rw-r--r--  1 root  wheel7905 24 Jan 22:33 bsd.emacs.mk
-rw-r--r--  1 root  wheel   22806  7 Feb 21:10 bsd.gnome.mk
-rw-r--r--  1 root  wheel6151 24 Jan 22:33 bsd.gnustep.mk
-rw-r--r--  1 root  wheel   17682 24 Jan 22:33 bsd.java.mk
-rw-r--r--  1 root  wheel5927 15 Feb 15:18 bsd.kde.mk
-rw-r--r--  1 root  wheel4300 24 Jan 22:33 bsd.openssl.mk
-rw-r--r--  1 root  wheel4587 15 Feb 15:18 bsd.php.mk
-rw-r--r--  1 root  wheel  173942  7 Feb 21:10 bsd.port.mk
-rw-r--r--  1 root  wheel 139 25 Aug  1999 bsd.port.post.mk
-rw-r--r--  1 root  wheel 140 25 Aug  1999 bsd.port.pre.mk
-rw-r--r--  1 root  wheel8439  7 Feb 21:10 bsd.port.subdir.mk
-rw-r--r--  1 root  wheel   13273 31 Jan 21:04 bsd.python.mk
-rw-r--r--  1 root  wheel   16617 28 Dec 20:08 bsd.ruby.mk
-rw-r--r--  1 root  wheel4076  7 Feb 21:10 bsd.sdl.mk
-rw-r--r--  1 root  wheel   42432 21 Feb 22:17 bsd.sites.mk

ttyp4[0]# head /usr/ports/Mk/bsd.port.mk
#-*- mode: makefile; tab-width: 4; -*-
# ex:ts=4
#
# $FreeBSD: ports/Mk/bsd.port.mk,v 1.484 2004/02/04 04:27:04 marcus Exp
$
#   $NetBSD: $
#
#   bsd.port.mk - 940820 Jordan K. Hubbard.
#   This file is in the public domain.
#
# Please view me with 4 column tabs!

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


Re: portsdb: Warning: Duplicate INDEX entry

2004-02-24 Thread Kris Kennaway
On Tue, Feb 24, 2004 at 08:50:44AM +0100, Bernard El-Hagin wrote:

  Sorry, I should have mentioned that. I'm running 5.1-Release.
 
 I think there's something in one of the included makefiles that relies
 on a change to make(1) that happened after 5.1-RELEASE.  Note that
 only the most recent release is supported by the ports collection
 (http://www.freebsd.org/ports); try updating to 5.2 or 4.9, which
 should fix the problem.
 
 
 Wow, that really sucks, since I've had zero luck updating to 5.2 the two
 times I tried, and going with 4.9 from 5.1R means a reinstall, rather
 than an upgrade (I'm led to believe).
 
 
 Thanks for your help.

You could try contacting the maintainer and ask them to test it on the
older release and develop a patch, or if someone else comes up with a
patch the maintainer may be willing to commit it.

Kris


pgp0.pgp
Description: PGP signature


Re: portsdb: Warning: Duplicate INDEX entry

2004-02-24 Thread Uwe Doering
Bernard El-Hagin wrote:
Kris Kennaway [EMAIL PROTECTED] wrote:

On Tue, Feb 24, 2004 at 07:44:45AM +0100, Bernard El-Hagin wrote:

Since I have this same problem I ran 'make describe' and here's the
result:
-
=== devel/sparc-rtems-gdb
*** Error code 1
Stop in /usr/ports/devel.
*** Error code 1
Stop in /usr/ports.
-
What version of FreeBSD are you running?
Sorry, I should have mentioned that. I'm running 5.1-Release.
I think there's something in one of the included makefiles that relies
on a change to make(1) that happened after 5.1-RELEASE.  Note that
only the most recent release is supported by the ports collection
(http://www.freebsd.org/ports); try updating to 5.2 or 4.9, which
should fix the problem.
Wow, that really sucks, since I've had zero luck updating to 5.2 the two
times I tried, and going with 4.9 from 5.1R means a reinstall, rather
than an upgrade (I'm led to believe).
If you have the OS sources installed you could selectively upgrade the 
source files of make(1) via cvsup(1) and just install it.  No need to 
upgrade the whole OS only because make(1) got an additional command line 
option.  We recently did this for our 4.5 based systems.

   Uwe
--
Uwe Doering |  EscapeBox - Managed On-Demand UNIX Servers
[EMAIL PROTECTED]  |  http://www.escapebox.net
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: portsdb: Warning: Duplicate INDEX entry

2004-02-24 Thread Bernard El-Hagin
Uwe Doering wrote:

Bernard El-Hagin wrote:
 Kris Kennaway [EMAIL PROTECTED] wrote:
 
On Tue, Feb 24, 2004 at 07:44:45AM +0100, Bernard El-Hagin wrote:

Since I have this same problem I ran 'make describe' and here's the
result:

-
=== devel/sparc-rtems-gdb
*** Error code 1

Stop in /usr/ports/devel.
*** Error code 1

Stop in /usr/ports.
-

What version of FreeBSD are you running?

Sorry, I should have mentioned that. I'm running 5.1-Release.

I think there's something in one of the included makefiles that relies
on a change to make(1) that happened after 5.1-RELEASE.  Note that
only the most recent release is supported by the ports collection
(http://www.freebsd.org/ports); try updating to 5.2 or 4.9, which
should fix the problem.
 
 Wow, that really sucks, since I've had zero luck updating to 5.2 the two
 times I tried, and going with 4.9 from 5.1R means a reinstall, rather
 than an upgrade (I'm led to believe).

If you have the OS sources installed you could selectively upgrade the 
source files of make(1) via cvsup(1) and just install it.  No need to 
upgrade the whole OS only because make(1) got an additional command line 
option.  We recently did this for our 4.5 based systems.


Could you please explain how that's done? I've never selectively
upgraded the source and I'm afraid of screwing something up.


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


Re: portsdb: Warning: Duplicate INDEX entry

2004-02-24 Thread Jeff Penn
* Kris Kennaway [EMAIL PROTECTED]:
 On Tue, Feb 24, 2004 at 03:28:32AM +, Robert Woolley wrote:
 On Mon, 23 Feb 2004, Jeff Penn wrote:

 My ports system is in a bit of a mess.  The problems first surfaced
 after last weeks 'cvsup; portsdb -uU'.  This weeks cvsup did not
 improve the situation:

 I don't have a solution, but I'm getting just the same problem with
 portsdb -uU; and it happened at the same time.

 Run 'make describe' on its own..it will give an error at some point,
 which should let us determine what is going wrong.

Thanks Kris,
My system is running 4.9 release.  Output of make describe follows:

ttyp5[-1]# make describe
=== accessibility
=== accessibility/at-spi
at-spi-1.3.12|/usr/ports/accessibility/at-spi|/usr/X11R6|An Assistive Te
chnology Service Provider Interface|/usr/ports/accessibility/at-spi/pkg-
descr|[EMAIL PROTECTED]|accessibility x11-toolkits|/usr/ports/accessibil
ity/atk /usr/ports/accessibility/gail /usr/ports/devel/ORBit2 /usr/ports
/devel/glib20 /usr/ports/devel/gmake /usr/ports/devel/libIDL /usr/ports/
devel/libbonobo /usr/ports/devel/libglade2 /usr/ports/devel/libtool13 /u
sr/ports/devel/pkgconfig /usr/ports/graphics/libart_lgpl2 /usr/ports/gra
phics/libgnomecanvas /usr/ports/textproc/intltool /usr/ports/textproc/li
bxml2 /usr/ports/x11-toolkits/gtk20 /usr/ports/x11-toolkits/pango /usr/p
orts/x11/XFree86-4-libraries|/usr/ports/accessibility/atk /usr/ports/acc
essibility/gail /usr/ports/devel/ORBit2 /usr/ports/devel/glib20 /usr/por
ts/devel/libIDL /usr/ports/devel/libbonobo /usr/ports/devel/libglade2 /u
sr/ports/devel/pkgconfig /usr/ports/graphics/libart_lgpl2 /usr/ports/gra
phics/libgnomecanvas /usr/ports/misc/gnomehier /usr/ports/textproc/libxm
l2 /usr/ports/x11-toolkits/gtk20 /usr/ports/x11-toolkits/pango /usr/port
s/x11/XFree86-4-libraries|http://www.gnome.org/
=== accessibility/atk
atk-1.4.1_2|/usr/ports/accessibility/atk|/usr/local|A GNOME accessibilit
y toolkit (ATK)|/usr/ports/accessibility/atk/pkg-descr|[EMAIL PROTECTED]
|accessibility devel|/usr/ports/devel/glib20 /usr/ports/devel/libtool13 
/usr/ports/devel/pkgconfig|/usr/ports/devel/glib20 /usr/ports/devel/pkgc
onfig|http://developer.gnome.org/projects/gap/
=== accessibility/dasher
dasher-3.2.3|/usr/ports/accessibility/dasher|/usr/X11R6|Information effi
cient text-entry interface|/usr/ports/accessibility/dasher/pkg-descr|pur
[EMAIL PROTECTED]|accessibility editors x11 gnome|/usr/ports/accessibility/a
tk /usr/ports/devel/ORBit2 /usr/ports/devel/gconf2 /usr/ports/devel/glib
20 /usr/ports/devel/gmake /usr/ports/devel/libIDL /usr/ports/devel/libgl
ade2 /usr/ports/devel/libtool13 /usr/ports/devel/pkgconfig /usr/ports/ne
t/linc /usr/ports/textproc/intltool /usr/ports/textproc/libxml2 /usr/por
ts/x11-toolkits/gtk20 /usr/ports/x11-toolkits/pango /usr/ports/x11/XFree
86-4-libraries|/usr/ports/accessibility/atk /usr/ports/devel/ORBit2 /usr
/ports/devel/gconf2 /usr/ports/devel/glib20 /usr/ports/devel/libIDL /usr
/ports/devel/libglade2 /usr/ports/devel/pkgconfig /usr/ports/misc/gnomeh
ier /usr/ports/net/linc /usr/ports/textproc/libxml2 /usr/ports/x11-toolk
its/gtk20 /usr/ports/x11-toolkits/pango /usr/ports/x11/XFree86-4-librari
es|http://www.inference.phy.cam.ac.uk/dasher/
=== accessibility/gail
gail-1.4.1_1|/usr/ports/accessibility/gail|/usr/X11R6|An implementation 
of the ATK interfaces for GTK+ widgets|/usr/ports/accessibility/gail/pkg
-descr|[EMAIL PROTECTED]|accessibility x11-toolkits|/usr/ports/accessibi
lity/atk /usr/ports/devel/glib20 /usr/ports/devel/gmake /usr/ports/devel
/libglade2 /usr/ports/devel/libtool13 /usr/ports/devel/pkgconfig /usr/po
rts/graphics/libart_lgpl2 /usr/ports/graphics/libgnomecanvas /usr/ports/
textproc/intltool /usr/ports/textproc/libxml2 /usr/ports/x11-toolkits/gt
k20 /usr/ports/x11-toolkits/pango /usr/ports/x11/XFree86-4-libraries|/us
r/ports/accessibility/atk /usr/ports/devel/glib20 /usr/ports/devel/libgl
ade2 /usr/ports/devel/pkgconfig /usr/ports/graphics/libart_lgpl2 /usr/po
rts/graphics/libgnomecanvas /usr/ports/textproc/libxml2 /usr/ports/x11-t
oolkits/gtk20 /usr/ports/x11-toolkits/pango /usr/ports/x11/XFree86-4-lib
raries|http://www.gnome.org/
=== accessibility/gnomemag
gnomemag-0.10.6|/usr/ports/accessibility/gnomemag|/usr/X11R6|GNOME scree
n magnifier|/usr/ports/accessibility/gnomemag/pkg-descr|[EMAIL PROTECTED]
g|accessibility x11 gnome|/usr/ports/accessibility/at-spi /usr/ports/acc
essibility/atk /usr/ports/accessibility/gail /usr/ports/devel/ORBit2 /us
r/ports/devel/glib20 /usr/ports/devel/gmake /usr/ports/devel/libIDL /usr
/ports/devel/libbonobo /usr/ports/devel/libglade2 /usr/ports/devel/libto
ol13 /usr/ports/devel/pkgconfig /usr/ports/graphics/libart_lgpl2 /usr/po
rts/graphics/libgnomecanvas /usr/ports/textproc/intltool /usr/ports/text
proc/libxml2 /usr/ports/x11-toolkits/gtk20 /usr/ports/x11-toolkits/pango
 /usr/ports/x11/XFree86-4-libraries|/usr/ports/accessibility/at-spi /usr
/ports/accessibility/atk /usr/ports/accessibility/gail /usr/ports/devel/
ORBit2 

Re: portsdb: Warning: Duplicate INDEX entry

2004-02-24 Thread Kris Kennaway
On Tue, Feb 24, 2004 at 09:32:15PM +, Jeff Penn wrote:
 * Kris Kennaway [EMAIL PROTECTED]:
  On Tue, Feb 24, 2004 at 03:28:32AM +, Robert Woolley wrote:
  On Mon, 23 Feb 2004, Jeff Penn wrote:
 
  My ports system is in a bit of a mess.  The problems first surfaced
  after last weeks 'cvsup; portsdb -uU'.  This weeks cvsup did not
  improve the situation:
 
  I don't have a solution, but I'm getting just the same problem with
  portsdb -uU; and it happened at the same time.
 
  Run 'make describe' on its own..it will give an error at some point,
  which should let us determine what is going wrong.
 
 Thanks Kris,
 My system is running 4.9 release.  Output of make describe follows:
 

 kdeaccessibility-3.2.0: /usr/ports/x11-toolkits/qt32 non-existent -- d
 ependency list incomplete
 kdeaccessibility-3.2.0: /usr/ports/x11-toolkits/qt32 non-existent -- d
 ependency list incomplete

That directory should exist if you have the complete ports collection. 

kris


pgp0.pgp
Description: PGP signature


portsdb: Warning: Duplicate INDEX entry

2004-02-23 Thread Jeff Penn
My ports system is in a bit of a mess.  The problems first surfaced
after last weeks 'cvsup; portsdb -uU'.  This weeks cvsup did not
improve the situation:

ttyp5[-1] portsdb -uU
Updating the ports index ... Generating INDEX.tmp - please wait..===
accessibility/kdeaccessibility failed:
kdeaccessibility-3.2.0: /usr/ports/x11-toolkits/qt32 non-existent --
dependency list incomplete
kdeaccessibility-3.2.0: /usr/ports/x11-toolkits/qt32 non-existent --
dependency list incomplete
make_index: atk-1.4.1_2: no entry for /usr/ports/devel/glib20
 cut
make_index: gnopernicus-0.7.1_1: no entry for /usr/ports/x11/libgnome
Warning: Duplicate INDEX entry: *** Error code 1
Warning: Duplicate INDEX entry:
 Done.
done
[Updating the portsdb format:bdb1_btree in /usr/ports ... - 15 port
entries found /usr/sup/INDEX:1:Port info line must consist of 10 fields.
/usr/sup/INDEX:2:Port info line must consist of 10 fields.
/usr/sup/INDEX:3:Port info line must consist of 10 fields.
/usr/sup/INDEX:4:Port info line must consist of 10 fields.
 . done]

Moving pkgdb.db, INDEX  INDEX.db out of the way  re-buiding did not
work,

I've noticed that the cvsup has moved some ports around.  Bind is under
net, instead of the new location dns.

My cvsup command is effectively:

cvsup -h cvsup.uk.FreeBSD.org /usr/share/examples/cvsup/ports-supfile

Any suggestions appreciated.
Jeff
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: portsdb: Warning: Duplicate INDEX entry

2004-02-23 Thread Kris Kennaway
On Mon, Feb 23, 2004 at 09:33:01PM +, Jeff Penn wrote:
 My ports system is in a bit of a mess.  The problems first surfaced
 after last weeks 'cvsup; portsdb -uU'.  This weeks cvsup did not
 improve the situation:
 
 ttyp5[-1] portsdb -uU
 Updating the ports index ... Generating INDEX.tmp - please wait..===
 accessibility/kdeaccessibility failed:
 kdeaccessibility-3.2.0: /usr/ports/x11-toolkits/qt32 non-existent --
 dependency list incomplete
 kdeaccessibility-3.2.0: /usr/ports/x11-toolkits/qt32 non-existent --
 dependency list incomplete
 make_index: atk-1.4.1_2: no entry for /usr/ports/devel/glib20
  cut
 make_index: gnopernicus-0.7.1_1: no entry for /usr/ports/x11/libgnome
 Warning: Duplicate INDEX entry: *** Error code 1
 Warning: Duplicate INDEX entry:
  Done.
 done
 [Updating the portsdb format:bdb1_btree in /usr/ports ... - 15 port
 entries found /usr/sup/INDEX:1:Port info line must consist of 10 fields.
 /usr/sup/INDEX:2:Port info line must consist of 10 fields.
 /usr/sup/INDEX:3:Port info line must consist of 10 fields.
 /usr/sup/INDEX:4:Port info line must consist of 10 fields.
  . done]
 
 Moving pkgdb.db, INDEX  INDEX.db out of the way  re-buiding did not
 work,
 
 I've noticed that the cvsup has moved some ports around.  Bind is under
 net, instead of the new location dns.

If that's truly what you're seeing, something is out of whack in your
copy of the ports collection (bind *is* in dns).

Kris


pgp0.pgp
Description: PGP signature


Re: portsdb: Warning: Duplicate INDEX entry

2004-02-23 Thread Robert Woolley
On Mon, 23 Feb 2004, Jeff Penn wrote:

 My ports system is in a bit of a mess.  The problems first surfaced
 after last weeks 'cvsup; portsdb -uU'.  This weeks cvsup did not
 improve the situation:

I don't have a solution, but I'm getting just the same problem with
portsdb -uU; and it happened at the same time.

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


Re: portsdb: Warning: Duplicate INDEX entry

2004-02-23 Thread Kris Kennaway
On Tue, Feb 24, 2004 at 03:28:32AM +, Robert Woolley wrote:
 On Mon, 23 Feb 2004, Jeff Penn wrote:
 
  My ports system is in a bit of a mess.  The problems first surfaced
  after last weeks 'cvsup; portsdb -uU'.  This weeks cvsup did not
  improve the situation:
 
 I don't have a solution, but I'm getting just the same problem with
 portsdb -uU; and it happened at the same time.

Run 'make describe' on its own..it will give an error at some point,
which should let us determine what is going wrong.

Kris


pgp0.pgp
Description: PGP signature


Re: portsdb: Warning: Duplicate INDEX entry

2004-02-23 Thread Bernard El-Hagin
Kris Kennaway wrote:
 On Tue, Feb 24, 2004 at 03:28:32AM +, Robert Woolley wrote:
  On Mon, 23 Feb 2004, Jeff Penn wrote:
  
   My ports system is in a bit of a mess.  The problems first surfaced
   after last weeks 'cvsup; portsdb -uU'.  This weeks cvsup did not
   improve the situation:
  
  I don't have a solution, but I'm getting just the same problem with
  portsdb -uU; and it happened at the same time.
 
 Run 'make describe' on its own..it will give an error at some point,
 which should let us determine what is going wrong.


Since I have this same problem I ran 'make describe' and here's the
result:

-
=== devel/sparc-rtems-gdb
*** Error code 1

Stop in /usr/ports/devel.
*** Error code 1

Stop in /usr/ports.
-


Any clue as to how to fix this?


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


Re: portsdb: Warning: Duplicate INDEX entry

2004-02-23 Thread Kris Kennaway
On Tue, Feb 24, 2004 at 05:57:18AM +0100, Bernard El-Hagin wrote:
 Kris Kennaway wrote:
  On Tue, Feb 24, 2004 at 03:28:32AM +, Robert Woolley wrote:
   On Mon, 23 Feb 2004, Jeff Penn wrote:
   
My ports system is in a bit of a mess.  The problems first surfaced
after last weeks 'cvsup; portsdb -uU'.  This weeks cvsup did not
improve the situation:
   
   I don't have a solution, but I'm getting just the same problem with
   portsdb -uU; and it happened at the same time.
  
  Run 'make describe' on its own..it will give an error at some point,
  which should let us determine what is going wrong.
 
 
 Since I have this same problem I ran 'make describe' and here's the
 result:
 
 -
 === devel/sparc-rtems-gdb
 *** Error code 1
 
 Stop in /usr/ports/devel.
 *** Error code 1
 
 Stop in /usr/ports.
 -

What version of FreeBSD are you running?

Kris


pgp0.pgp
Description: PGP signature


Re: portsdb: Warning: Duplicate INDEX entry

2004-02-23 Thread Bernard El-Hagin
Kris wrote:

 On Tue, Feb 24, 2004 at 05:57:18AM +0100, Bernard El-Hagin wrote:
  Kris Kennaway wrote:
   On Tue, Feb 24, 2004 at 03:28:32AM +, Robert Woolley wrote:
On Mon, 23 Feb 2004, Jeff Penn wrote:

 My ports system is in a bit of a mess.  The problems first  
 surfaced after last weeks 'cvsup; portsdb -uU'.  This weeks  cvsup 
 did not improve the situation:

I don't have a solution, but I'm getting just the same problem with 
portsdb -uU; and it happened at the same time.
   
   Run 'make describe' on its own..it will give an error at somepoint, which 
   should let us determine what is going wrong.
  
  
  Since I have this same problem I ran 'make describe' and here's the
  result:
  
  -
  === devel/sparc-rtems-gdb
  *** Error code 1
  
  Stop in /usr/ports/devel.
  *** Error code 1
  
  Stop in /usr/ports.
  -
 
 What version of FreeBSD are you running?


Sorry, I should have mentioned that. I'm running 5.1-Release.


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


Re: portsdb: Warning: Duplicate INDEX entry

2004-02-23 Thread Kris Kennaway
On Tue, Feb 24, 2004 at 07:44:45AM +0100, Bernard El-Hagin wrote:

   Since I have this same problem I ran 'make describe' and here's the
   result:
   
   -
   === devel/sparc-rtems-gdb
   *** Error code 1
   
   Stop in /usr/ports/devel.
   *** Error code 1
   
   Stop in /usr/ports.
   -
  
  What version of FreeBSD are you running?
 
 
 Sorry, I should have mentioned that. I'm running 5.1-Release.

I think there's something in one of the included makefiles that relies
on a change to make(1) that happened after 5.1-RELEASE.  Note that
only the most recent release is supported by the ports collection
(http://www.freebsd.org/ports); try updating to 5.2 or 4.9, which
should fix the problem.

Kris


pgp0.pgp
Description: PGP signature


Re: portsdb: Warning: Duplicate INDEX entry

2004-02-23 Thread Bernard El-Hagin
Kris Kennaway [EMAIL PROTECTED] wrote:

On Tue, Feb 24, 2004 at 07:44:45AM +0100, Bernard El-Hagin wrote:

   Since I have this same problem I ran 'make describe' and here's the
   result:
   
   -
   === devel/sparc-rtems-gdb
   *** Error code 1
   
   Stop in /usr/ports/devel.
   *** Error code 1
   
   Stop in /usr/ports.
   -
  
  What version of FreeBSD are you running?
 
 
 Sorry, I should have mentioned that. I'm running 5.1-Release.

I think there's something in one of the included makefiles that relies
on a change to make(1) that happened after 5.1-RELEASE.  Note that
only the most recent release is supported by the ports collection
(http://www.freebsd.org/ports); try updating to 5.2 or 4.9, which
should fix the problem.


Wow, that really sucks, since I've had zero luck updating to 5.2 the two
times I tried, and going with 4.9 from 5.1R means a reinstall, rather
than an upgrade (I'm led to believe).


Thanks for your help.


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