Re: How to build a BROKEN port?

2010-12-30 Thread Chris Rees
On 30 December 2010 07:21, Da Rock
freebsd-questi...@herveybayaustralia.com.au wrote:
 On 12/30/10 15:52, per...@pluto.rain.com wrote:

 Charlie Kestercorky1...@comcast.net  wrote:



 Most of the time, possessives are formed with apostrophe+s.  I'm
 not sure, but its might be the only exception to the rule ...


 It's seems to be the most common misusage, but I have seen her's,
 our's, and occasionally their's.  Interestingly, I've never seen
 anyone write hi's when meaning his.



 On the other hand, people who write loose when they mean lose
 deserve our most scathing scorn.  :)


 Perhaps they have merely lost their linguistic bearings.

 Innaddverttentt ddoubblle llettterss ccann occcassionnallly bbee
 ccaussedd bby ffllakkeey kkeeybbooarddss :))


 I find most teenagers (and getting older too) can't tell the difference- and
 its not their keyboards.

 Oddly enough, their teachers do it on a regular basis as well: in their
 handwriting!

This teacher doesn't thank you very much! That is, if the poor kids
can read my writing

Chris
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: How to build a BROKEN port?

2010-12-30 Thread Da Rock

On 12/30/10 18:10, Chris Rees wrote:

On 30 December 2010 07:21, Da Rock
freebsd-questi...@herveybayaustralia.com.au  wrote:
   

On 12/30/10 15:52, per...@pluto.rain.com wrote:
 

Charlie Kestercorky1...@comcast.netwrote:


   

Most of the time, possessives are formed with apostrophe+s.  I'm
not sure, but its might be the only exception to the rule ...

 

It's seems to be the most common misusage, but I have seen her's,
our's, and occasionally their's.  Interestingly, I've never seen
anyone write hi's when meaning his.


   

On the other hand, people who write loose when they mean lose
deserve our most scathing scorn.  :)

 

Perhaps they have merely lost their linguistic bearings.

Innaddverttentt ddoubblle llettterss ccann occcassionnallly bbee
ccaussedd bby ffllakkeey kkeeybbooarddss :))

   

I find most teenagers (and getting older too) can't tell the difference- and
its not their keyboards.

Oddly enough, their teachers do it on a regular basis as well: in their
handwriting!
 

This teacher doesn't thank you very much! That is, if the poor kids
can read my writing

Chris
   
Sorry, but on the upside it does seem to be centered on Queensland, 
Australia; with expanding concentric circles from there.


The driving tends to follow this general intelligence level as well... ;)

(I was brought up and taught in the southern states)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: How to build a BROKEN port?

2010-12-30 Thread Da Rock

On 12/30/10 20:12, Eitan Adler wrote:

Edit the port's Makefile and comment-out the BROKEN line.
   

Generally - don't do this.

   
I kinda got that impression already, but can someone enlighten me why 
(apart from the obvious, of course- it could break the makefile if you 
forget)? And is that in general or just this line?


I ask because I'm currently editing the Makefile with some new variables 
to test a fix.
   

Oh, the irony! :) I considered doing that, but I thought there might have
been some magic incantation that got around this...

 

There is
make -DTRYBROKEN

   
Thanks for the reply, but can someone tell me if this is documented 
anywhere particularly? I'm going to be pissed if I missed it ;)


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: How to build a BROKEN port?

2010-12-30 Thread Eitan Adler

 Edit the port's Makefile and comment-out the BROKEN line.

Generally - don't do this.



 Oh, the irony! :) I considered doing that, but I thought there might have
 been some magic incantation that got around this...


There is
make -DTRYBROKEN

-- 
Eitan Adler
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: How to build a BROKEN port?

2010-12-30 Thread Giorgos Keramidas
On Wed, 29 Dec 2010 17:31:37 -0800, mer...@stonehenge.com (Randal L. Schwartz) 
wrote:
 Giorgos == Giorgos Keramidas keram...@ceid.upatras.gr writes:

 Giorgos Edit it's 'Makefile'.  Look for an assignment of the form:

 Minor nit... that's its not it's.  If you can't say it is or it
 has in place, then it's its, not it's. :)

True. I should be more careful about spelling when I post aftre 02:00am
in the night!  Thanks :)

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: How to build a BROKEN port?

2010-12-30 Thread Matthew Seaman
On 30/12/2010 10:37, Da Rock wrote:
 On 12/30/10 20:12, Eitan Adler wrote:

 Edit the port's Makefile and comment-out the BROKEN line.

 Generally - don't do this.

 I kinda got that impression already, but can someone enlighten me why
 (apart from the obvious, of course- it could break the makefile if you
 forget)? And is that in general or just this line?

This advice is correct for someone who just wants to /use/ the ports --
not so good if your intention is to /develop/ the ports.  And I think
fixing the reason a port is marked BROKEN certainly puts you in the
development camp.

A very good tip: if you are editing the port, then it pays to check it
out from one of the anon-CVS servers while you work on it.  You get all
the usual VCS capabilities and it's easier to revert any changes etc.
You don't need to check out the whole ports tree -- just your port of
interest will be fine, and you don't need to keep it in the normal ports
tree.

See Ion Mihai's article here for lots of good practices:

http://ionut.tetcu.info/FreeBSD/How-to-submit-a-diff.txt

and all about FreeBSD Anon-CVS here:

http://www.freebsd.org/doc/handbook/anoncvs.html

Cheers,

Matthew

-- 
Dr Matthew J Seaman MA, D.Phil.   7 Priory Courtyard
  Flat 3
PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate
JID: matt...@infracaninophile.co.uk   Kent, CT11 9PW



signature.asc
Description: OpenPGP digital signature


Re: How to build a BROKEN port?

2010-12-30 Thread Eitan Adler
 Thanks for the reply, but can someone tell me if this is documented anywhere
 particularly? I'm going to be pissed if I missed it ;)

It does not seem to be documented anywhere.  I found it by grepping
for BROKEN in the Mk subdirectory. I will submit a pr now to add it to
ports(7) and the top of bsd.port.mk



-- 
Eitan Adler
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: How to build a BROKEN port?

2010-12-30 Thread Chris Rees
I'm pretty sure it's in the Porter's Handbook under the marking as BROKEN
section

Chris



Sorry for top-posting, Android won't let me quote, but K-9 can't yet do
threading.
On 30 Dec 2010 11:32, Eitan Adler li...@eitanadler.com wrote:
 Thanks for the reply, but can someone tell me if this is documented
anywhere
 particularly? I'm going to be pissed if I missed it ;)

 It does not seem to be documented anywhere. I found it by grepping
 for BROKEN in the Mk subdirectory. I will submit a pr now to add it to
 ports(7) and the top of bsd.port.mk



 --
 Eitan Adler
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to 
freebsd-questions-unsubscr...@freebsd.org
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: How to build a BROKEN port?

2010-12-30 Thread Eitan Adler
On Thu, Dec 30, 2010 at 6:35 AM, Chris Rees utis...@gmail.com wrote:
 I'm pretty sure it's in the Porter's Handbook under the marking as BROKEN
 section

Heh - now I feel silly for missing it :-{
Either way it should be documented in ports(7) and bsd.port.mk.

-- 
Eitan Adler
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: How to build a BROKEN port?

2010-12-30 Thread Chris Rees
I agree. Go for it!

Chris



Sorry for top-posting, Android won't let me quote, but K-9 can't yet do
threading.
On 30 Dec 2010 11:44, Eitan Adler li...@eitanadler.com wrote:
 On Thu, Dec 30, 2010 at 6:35 AM, Chris Rees utis...@gmail.com wrote:
 I'm pretty sure it's in the Porter's Handbook under the marking as BROKEN
 section

 Heh - now I feel silly for missing it :-{
 Either way it should be documented in ports(7) and bsd.port.mk.

 --
 Eitan Adler
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: How to build a BROKEN port?

2010-12-30 Thread Da Rock

On 12/30/10 21:44, Eitan Adler wrote:

On Thu, Dec 30, 2010 at 6:35 AM, Chris Reesutis...@gmail.com  wrote:
   

I'm pretty sure it's in the Porter's Handbook under the marking as BROKEN
section
 

Heh - now I feel silly for missing it :-{
Either way it should be documented in ports(7) and bsd.port.mk.

   
Not as silly as me: I read through that section thoroughly trying to 
work out the mechanics of it all, and the bsd.port.mk file...

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: How to build a BROKEN port?

2010-12-30 Thread Polytropon
On Wed, 29 Dec 2010 21:52:48 -0800, per...@pluto.rain.com wrote:
 Interestingly, I've never seen
 anyone write hi's when meaning his.

Come to Germany, where ' is used to
* indicate that a s will follow,
* indicate that a t will follow, or
* indicate that the word will end.
In most cases, ' is replaced by `.

Inn Germenny new Englis Orfograffy iss, very importent
too the shildren in schol were thei ha've learn how to
propperly write. Nicht`s ist verboten, wenn man nich't
erwischt wird. :-)


-- 
Polytropon
Magdeburg, Germany
Happy FreeBSD user since 4.0
Andra moi ennepe, Mousa, ...
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


How to build a BROKEN port?

2010-12-29 Thread Da Rock
Pardon me for being the queer one to ask this- but how does one 
force/override building a port marked as broken?


I'm not about to run a make install clean on it, but I would like to at 
least have a crack at trying to fix whats wrong. In this particular case 
its involving a particular arch, and seeing as I have this arch I'd 
reckon I'm an ideal candidate to try and help fix it :)


I poked around for a bit for an answer, but pretty much all the info is 
on how to mark it as broken- not overriding it.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: How to build a BROKEN port?

2010-12-29 Thread Bruce Cran
On Thu, 30 Dec 2010 10:49:25 +1000
Da Rock freebsd-questi...@herveybayaustralia.com.au wrote:

 Pardon me for being the queer one to ask this- but how does one 
 force/override building a port marked as broken?

Edit the port's Makefile and comment-out the BROKEN line.

-- 
Bruce Cran
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: How to build a BROKEN port?

2010-12-29 Thread Giorgos Keramidas
On Thu, 30 Dec 2010 10:49:25 +1000, Da Rock 
freebsd-questi...@herveybayaustralia.com.au wrote:
 Pardon me for being the queer one to ask this- but how does one
 force/override building a port marked as broken?

 I'm not about to run a make install clean on it, but I would like to at
 least have a crack at trying to fix whats wrong. In this particular case
 its involving a particular arch, and seeing as I have this arch I'd
 reckon I'm an ideal candidate to try and help fix it :)

 I poked around for a bit for an answer, but pretty much all the info is
 on how to mark it as broken- not overriding it.

Edit it's 'Makefile'.  Look for an assignment of the form:

.if ${MACHINE_ARCH} = amd64
BROKEN= This port fails to frobnicate foo on amd64.
.endif

Remove this assignment, build the port and try to debug its problems.
When you have a fix, run make clean in the port directory, save a copy
of the entire port subdirectory somewhere and email the person or team
listed in MAINTAINER with your fix.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: How to build a BROKEN port?

2010-12-29 Thread Da Rock

On 12/30/10 11:09, Bruce Cran wrote:

On Thu, 30 Dec 2010 10:49:25 +1000
Da Rockfreebsd-questi...@herveybayaustralia.com.au  wrote:

   

Pardon me for being the queer one to ask this- but how does one
force/override building a port marked as broken?
 

Edit the port's Makefile and comment-out the BROKEN line.

   
Oh, the irony! :) I considered doing that, but I thought there might 
have been some magic incantation that got around this...


Cheers
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: How to build a BROKEN port?

2010-12-29 Thread Da Rock

On 12/30/10 11:10, Giorgos Keramidas wrote:

On Thu, 30 Dec 2010 10:49:25 +1000, Da 
Rockfreebsd-questi...@herveybayaustralia.com.au  wrote:
   

Pardon me for being the queer one to ask this- but how does one
force/override building a port marked as broken?

I'm not about to run a make install clean on it, but I would like to at
least have a crack at trying to fix whats wrong. In this particular case
its involving a particular arch, and seeing as I have this arch I'd
reckon I'm an ideal candidate to try and help fix it :)

I poked around for a bit for an answer, but pretty much all the info is
on how to mark it as broken- not overriding it.
 

Edit it's 'Makefile'.  Look for an assignment of the form:

 .if ${MACHINE_ARCH} = amd64
 BROKEN= This port fails to frobnicate foo on amd64.
 .endif

Remove this assignment, build the port and try to debug its problems.
When you have a fix, run make clean in the port directory, save a copy
of the entire port subdirectory somewhere and email the person or team
listed in MAINTAINER with your fix.
   
I got that one. But what you have replied here has got my attention: 
${MACHINE_ARCH} and ${ARCH} the same? I have ${ARCH} in this one.


.if ${ARCH} == amd64

I'm stupid now, but I will learn... :)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: How to build a BROKEN port?

2010-12-29 Thread Randal L. Schwartz
 Giorgos == Giorgos Keramidas keram...@ceid.upatras.gr writes:

Giorgos Edit it's 'Makefile'.  Look for an assignment of the form:

Minor nit... that's its not it's.  If you can't say it is or it
has in place, then it's its, not it's. :)

-- 
Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095
mer...@stonehenge.com URL:http://www.stonehenge.com/merlyn/
Smalltalk/Perl/Unix consulting, Technical writing, Comedy, etc. etc.
See http://methodsandmessages.posterous.com/ for Smalltalk discussion
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: How to build a BROKEN port?

2010-12-29 Thread Da Rock

On 12/30/10 11:31, Randal L. Schwartz wrote:

Giorgos == Giorgos Keramidaskeram...@ceid.upatras.gr  writes:
 

Giorgos  Edit it's 'Makefile'.  Look for an assignment of the form:

Minor nit... that's its not it's.  If you can't say it is or it
has in place, then it's its, not it's. :)

   

Fine line that one :)

I've always thought that was the case (primary school english), but 
couldn't quite remember if that was accurate. Thanks for the confim

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: How to build a BROKEN port?

2010-12-29 Thread Charlie Kester

On Wed 29 Dec 2010 at 17:31:37 PST Randal L. Schwartz wrote:

Giorgos == Giorgos Keramidas keram...@ceid.upatras.gr writes:


Giorgos Edit it's 'Makefile'.  Look for an assignment of the form:

Minor nit... that's its not it's.  If you can't say it is or it
has in place, then it's its, not it's. :)


English has some funny rules.

Most of the time, possessives are formed with apostrophe+s.  I'm not
sure, but its might be the only exception to the rule. So I tend to be
more forgiving when people get it wrong -- especially when English is
not their native tongue.

On the other hand, people who write loose when they mean lose
deserve our most scathing scorn.  :)

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: How to build a BROKEN port?

2010-12-29 Thread Rob Farmer
On Wed, Dec 29, 2010 at 17:42, Charlie Kester corky1...@comcast.net wrote:
 Most of the time, possessives are formed with apostrophe+s.  I'm not
 sure, but its might be the only exception to the rule. So I tend to be
 more forgiving when people get it wrong -- especially when English is
 not their native tongue.


It is not an exception - just the only one that's confusing.
Apostrophes for possessives only applies to nouns, not pronouns (its,
hers, yours, etc.). It's recieves an apostrophe because it is a
contraction, like that's.

Supposedly, English has a lot more homonyms than other languages.

-- 
Rob Farmer
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: How to build a BROKEN port?

2010-12-29 Thread RW
On Thu, 30 Dec 2010 11:10:04 +1000
Da Rock freebsd-questi...@herveybayaustralia.com.au wrote:

 On 12/30/10 11:09, Bruce Cran wrote:
  On Thu, 30 Dec 2010 10:49:25 +1000
  Da Rockfreebsd-questi...@herveybayaustralia.com.au  wrote:
 
 
  Pardon me for being the queer one to ask this- but how does one
  force/override building a port marked as broken?
   
  Edit the port's Makefile and comment-out the BROKEN line.
 
 
 Oh, the irony! :) I considered doing that, but I thought there might 
 have been some magic incantation that got around this...

Have you never read The Lion the Witch and the Wardrobe, any of the
Harry Potters, or the Bible? There's always deeper magic that's held
back until it's dramatically convenient.

  TRYBROKEN


 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: How to build a BROKEN port?

2010-12-29 Thread Da Rock

On 12/30/10 12:27, RW wrote:

On Thu, 30 Dec 2010 11:10:04 +1000
Da Rockfreebsd-questi...@herveybayaustralia.com.au  wrote:

   

On 12/30/10 11:09, Bruce Cran wrote:
 

On Thu, 30 Dec 2010 10:49:25 +1000
Da Rockfreebsd-questi...@herveybayaustralia.com.au   wrote:


   

Pardon me for being the queer one to ask this- but how does one
force/override building a port marked as broken?

 

Edit the port's Makefile and comment-out the BROKEN line.


   

Oh, the irony! :) I considered doing that, but I thought there might
have been some magic incantation that got around this...
 

Have you never read The Lion the Witch and the Wardrobe, any of the
Harry Potters, or the Bible? There's always deeper magic that's held
back until it's dramatically convenient.

   TRYBROKEN
   
LOL :) I knew there had to be something! I just couldn't find it in the 
ocean of information on ports.


So...

make -DTRYBROKEN

Thanks guys. Now to crack the mongrel holding up my perfectly updated box...
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: How to build a BROKEN port?

2010-12-29 Thread perryh
Charlie Kester corky1...@comcast.net wrote:

 Most of the time, possessives are formed with apostrophe+s.  I'm
 not sure, but its might be the only exception to the rule ...

It's seems to be the most common misusage, but I have seen her's,
our's, and occasionally their's.  Interestingly, I've never seen
anyone write hi's when meaning his.

 On the other hand, people who write loose when they mean lose
 deserve our most scathing scorn.  :)

Perhaps they have merely lost their linguistic bearings.

Innaddverttentt ddoubblle llettterss ccann occcassionnallly bbee
ccaussedd bby ffllakkeey kkeeybbooarddss :))
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: How to build a BROKEN port?

2010-12-29 Thread Da Rock

On 12/30/10 15:52, per...@pluto.rain.com wrote:

Charlie Kestercorky1...@comcast.net  wrote:

   

Most of the time, possessives are formed with apostrophe+s.  I'm
not sure, but its might be the only exception to the rule ...
 

It's seems to be the most common misusage, but I have seen her's,
our's, and occasionally their's.  Interestingly, I've never seen
anyone write hi's when meaning his.

   

On the other hand, people who write loose when they mean lose
deserve our most scathing scorn.  :)
 

Perhaps they have merely lost their linguistic bearings.

Innaddverttentt ddoubblle llettterss ccann occcassionnallly bbee
ccaussedd bby ffllakkeey kkeeybbooarddss :))
   
I find most teenagers (and getting older too) can't tell the difference- 
and its not their keyboards.


Oddly enough, their teachers do it on a regular basis as well: in their 
handwriting!

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Broken port?

2010-11-29 Thread Modulok
List,

I tried to install django with sqlite support from ports and got the
error shown below. What do I do to fix this? Do I email a port
maintainer or something? I used portsnap to update my ports collection
before trying the install. I'm on 8.1-RELEASE amd64.

Thanks!
-Modulok-

Error Below:

===  Installing for py26-django-1.2.3
===   py26-django-1.2.3 depends on file: /usr/local/bin/python2.6 - found
===   py26-django-1.2.3 depends on file:
/usr/local/lib/python2.6/site-packages/mod_python/_psp.so - found
===   py26-django-1.2.3 depends on file:
/usr/local/lib/python2.6/site-packages/psycopg2/_psycopg.so - found
===   py26-django-1.2.3 depends on package: py26-MySQLdb=1.2.2 - found
===   py26-django-1.2.3 depends on file:
/usr/local/lib/python2.6/site-packages/_sqlite3.so - not found
===Verifying install for
/usr/local/lib/python2.6/site-packages/_sqlite3.so in
/usr/ports/databases/py-sqlite3
===  Vulnerability check disabled, database not found
===  License check disabled, port has not defined LICENSE
= Python-2.6.5.tgz is not in /usr/ports/lang/python26/distinfo.
= Either /usr/ports/lang/python26/distinfo is out of date, or
= Python-2.6.5.tgz is spelled incorrectly.
*** Error code 1

Stop in /usr/ports/databases/py-sqlite3.
*** Error code 1

Stop in /usr/ports/www/py-django.
*** Error code 1

Stop in /usr/ports/www/py-django.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Broken port?

2010-11-29 Thread Armin Pirkovitsch

Hi!

The current version of databases/py-sqlite3 is 2.6.6_1 (python version 
2.6.6) - therefore I suggest you update your ports tree and your ports.
See http://www.freebsd.org/doc/handbook/ports-using.html for more 
information on how to do that if you have not done that before.


If the problem still occurs afterward you should file a problem report. 
( http://www.freebsd.org/send-pr.html )


Armin

On 11/29/10 19:34, Modulok wrote:

List,

I tried to install django with sqlite support from ports and got the
error shown below. What do I do to fix this? Do I email a port
maintainer or something? I used portsnap to update my ports collection
before trying the install. I'm on 8.1-RELEASE amd64.

Thanks!
-Modulok-

Error Below:

===   Installing for py26-django-1.2.3
===py26-django-1.2.3 depends on file: /usr/local/bin/python2.6 - found
===py26-django-1.2.3 depends on file:
/usr/local/lib/python2.6/site-packages/mod_python/_psp.so - found
===py26-django-1.2.3 depends on file:
/usr/local/lib/python2.6/site-packages/psycopg2/_psycopg.so - found
===py26-django-1.2.3 depends on package: py26-MySQLdb=1.2.2 - found
===py26-django-1.2.3 depends on file:
/usr/local/lib/python2.6/site-packages/_sqlite3.so - not found
=== Verifying install for
/usr/local/lib/python2.6/site-packages/_sqlite3.so in
/usr/ports/databases/py-sqlite3
===   Vulnerability check disabled, database not found
===   License check disabled, port has not defined LICENSE
=  Python-2.6.5.tgz is not in /usr/ports/lang/python26/distinfo.
=  Either /usr/ports/lang/python26/distinfo is out of date, or
=  Python-2.6.5.tgz is spelled incorrectly.
*** Error code 1

Stop in /usr/ports/databases/py-sqlite3.
*** Error code 1

Stop in /usr/ports/www/py-django.
*** Error code 1

Stop in /usr/ports/www/py-django.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org



___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Broken port?

2010-11-29 Thread Chris Brennan


 On 11/29/10 19:34, Modulok wrote:

 List,

 I tried to install django with sqlite support from ports and got the
 error shown below. What do I do to fix this? Do I email a port
 maintainer or something? I used portsnap to update my ports collection
 before trying the install. I'm on 8.1-RELEASE amd64.

 Thanks!
 -Modulok-

 Error Below:

 ===   Installing for py26-django-1.2.3
 ===py26-django-1.2.3 depends on file: /usr/local/bin/python2.6 -
 found
 ===py26-django-1.2.3 depends on file:
 /usr/local/lib/python2.6/site-packages/mod_python/_psp.so - found
 ===py26-django-1.2.3 depends on file:
 /usr/local/lib/python2.6/site-packages/psycopg2/_psycopg.so - found
 ===py26-django-1.2.3 depends on package: py26-MySQLdb=1.2.2 - found
 ===py26-django-1.2.3 depends on file:
 /usr/local/lib/python2.6/site-packages/_sqlite3.so - not found
 === Verifying install for
 /usr/local/lib/python2.6/site-packages/_sqlite3.so in
 /usr/ports/databases/py-sqlite3
 ===   Vulnerability check disabled, database not found
 ===   License check disabled, port has not defined LICENSE
 =  Python-2.6.5.tgz is not in /usr/ports/lang/python26/distinfo.
 =  Either /usr/ports/lang/python26/distinfo is out of date, or
 =  Python-2.6.5.tgz is spelled incorrectly.
 *** Error code 1

 Stop in /usr/ports/databases/py-sqlite3.
 *** Error code 1

 Stop in /usr/ports/www/py-django.
 *** Error code 1

 Stop in /usr/ports/www/py-django.



This actually looks like he port is failing to pull in it's required
dependency (in this case, sqlite). I would as Armin suggested to do, first
update your port-tree again, try to install it again, cd into the port and
'make distclean rmconfig' to start fresh and start from the beginning. If it
still fails, file the pr and/or contact the port maintainer. I would
actually do all of this and document it for the pr and the port-maintainer.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Broken port 'py-sqlite3'... or maybe something else?

2010-04-30 Thread Modulok
List,

I tried to install 'py-sqlite3' with the usual 'make install clean'
routine. Instead, I got this:

===  Vulnerability check disabled, database not found
===  Extracting for py25-sqlite3-2.5.1_1
= No MD5 checksum recorded for python/Python-2.5.1.tgz.
= No SHA256 checksum recorded for python/Python-2.5.1.tgz.
= No suitable checksum found for python/Python-2.5.1.tgz.
*** Error code 1

Stop in /usr/ports/databases/py-sqlite3.


What does it mean? And...how do I go about getting 'py-sqlite3'
installed in light of it?
-Modulok-
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Broken port link

2007-11-15 Thread Muhammad Usman
Here is the complete error that its showing.


===   p5-Apache-Filter-1.024 depends on file:
/usr/local/lib/perl5/site_perl/5.8.8/mach/mod_perl.pm - not found
===Verifying install for
/usr/local/lib/perl5/site_perl/5.8.8/mach/mod_perl.pm in
/usr/ports/www/mod_perl
===  Building for mod_perl-1.30
(cd ./apaci  PERL5LIB=/usr/ports/www/mod_perl/work/mod_perl-1.30/lib:
make)
cc -DPIC -fPIC -O -pipe -I/usr/local/lib/perl5/5.8.8/mach/CORE
-DAPPLLIB_EXP=/usr/local/lib/perl5/5.8.8/BSDPAN -DHAS_FPSETMASK
-DHAS_FLOATINGPOINT_H -fno-strict-aliasing -pipe
-Wdeclaration-after-statement -I/usr/local/include  -DMOD_PERL_VERSION=\
1.30\ -DMOD_PERL_STRING_VERSION=\mod_perl/1.30\
-DMOD_PERL_PREFIX=\/usr/local/lib/perl5/site_perl/5.8.8/i386-freebsd-64int\
-I/usr/local/include/apache2 -DMOD_PERL -O -pipe -O -pipe   -c mod_perl.c 
mv mod_perl.o mod_perl.lo
In file included from mod_perl.h:162,
 from mod_perl.c:58:
apache_inc.h:128:31: http_conf_globals.h: No such file or directory
In file included from mod_perl.c:58:
mod_perl.h:248: error: syntax error before table
mod_perl.h:260: error: syntax error before '*' token
mod_perl.h:260: warning: data definition has no type or storage class
mod_perl.h:262: error: syntax error before '*' token
mod_perl.h:262: warning: data definition has no type or storage class
In file included from mod_perl.c:58:
mod_perl.h:1022: error: syntax error before array_header
mod_perl.h:1035: error: syntax error before table
mod_perl.h:1050: error: syntax error before table
mod_perl.h:1066: error: syntax error before table
mod_perl.h:1110: error: syntax error before pool
mod_perl.h:1120: error: syntax error before pool
mod_perl.h:1121: error: syntax error before pool
mod_perl.h:1123: error: syntax error before pool
mod_perl.h:1124: error: syntax error before pool
mod_perl.h:1155: error: syntax error before '*' token
mod_perl.h:1156: error: syntax error before '*' token
mod_perl.h:1156: error: syntax error before pool
mod_perl.h:1156: warning: data definition has no type or storage class
mod_perl.h:1157: error: syntax error before '*' token
mod_perl.h:1157: warning: data definition has no type or storage class
mod_perl.h:1161: error: syntax error before '*' token
mod_perl.h:1170: error: syntax error before pool
mod_perl.h:1174: error: syntax error before pool
mod_perl.h:1175: error: syntax error before '*' token
mod_perl.h:1175: warning: data definition has no type or storage class
mod_perl.h:1200: error: syntax error before '*' token
mod_perl.h:1201: error: syntax error before '*' token
mod_perl.h:1202: error: syntax error before '*' token
mod_perl.h:1203: error: syntax error before '*' token
mod_perl.h:1204: error: syntax error before '*' token
mod_perl.h:1266: error: syntax error before '*' token
mod_perl.h:1267: error: syntax error before '*' token
mod_perl.h:1270: error: syntax error before '*' token
mod_perl.h:1281: error: syntax error before '*' token
mod_perl.h:1281: warning: data definition has no type or storage class
mod_perl.h:1282: error: syntax error before '*' token
mod_perl.h:1282: warning: data definition has no type or storage class
mod_perl.h:1291: error: syntax error before pool
mod_perl.c:186: error: syntax error before perl_handlers
mod_perl.c:187: warning: braces around scalar initializer
mod_perl.c:187: warning: (near initialization for `perl_handlers[0]')
mod_perl.c:187: warning: initialization makes integer from pointer without a
cast
mod_perl.c:187: warning: excess elements in scalar initializer
mod_perl.c:187: warning: (near initialization for `perl_handlers[0]')
mod_perl.c:188: warning: braces around scalar initializer
mod_perl.c:188: warning: (near initialization for `perl_handlers[1]')
mod_perl.c:188: warning: initialization makes integer from pointer without a
cast
mod_perl.c:188: warning: excess elements in scalar initializer
mod_perl.c:188: warning: (near initialization for `perl_handlers[1]')
mod_perl.c:189: warning: braces around scalar initializer
mod_perl.c:189: warning: (near initialization for `perl_handlers[2]')
mod_perl.c:189: warning: initialization makes integer from pointer without a
cast
mod_perl.c:190: warning: data definition has no type or storage class
mod_perl.c:193: error: `this_module_needs_to_be_ported_to_apache_2_0'
undeclared here (not in a function)
mod_perl.c:193: error: initializer element is not constant
mod_perl.c:193: error: (near initialization for `perl_module.version')
mod_perl.c:194: warning: initialization makes integer from pointer without a
cast
mod_perl.c:195: warning: initialization makes integer from pointer without a
cast
mod_perl.c:196: warning: initialization from incompatible pointer type
mod_perl.c:198: warning: initialization from incompatible pointer type
mod_perl.c:199: warning: initialization makes integer from pointer without a
cast
mod_perl.c:200: warning: initialization from incompatible pointer type
mod_perl.c:201: warning: initialization from incompatible pointer type
mod_perl.c:202: warning: 

Broken port link

2007-11-13 Thread Muhammad Usman
Hello There!
While i was trying to install p5-Apache-ASP i got error.
/usr/ports/www/mod_perl/work/mod_perl-1.30/apaci is corrupted. There
are some files missing in this port. Will anybody let me know that
where to report this bug.

/usr/ports/www/mod_perl/work/mod_perl-1.30/apaci

-- 
B.RGDS
Muhammad Usman (x2oxen)
+92-321-6640501
Blue Net BroadBand
T-Solutions Pvt. Ltd.
http://usman.blue.net.pk
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Broken port link

2007-11-13 Thread Tino Engel

Muhammad Usman schrieb:

Hello There!
While i was trying to install p5-Apache-ASP i got error.
/usr/ports/www/mod_perl/work/mod_perl-1.30/apaci is corrupted. There
are some files missing in this port. Will anybody let me know that
where to report this bug.

/usr/ports/www/mod_perl/work/mod_perl-1.30/apaci

  

Probably check out the owner on freebsd.org/ports...
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Broken port link

2007-11-13 Thread Philip M. Gollucci
Muhammad Usman wrote:
 Hello There!
 While i was trying to install p5-Apache-ASP i got error.
 /usr/ports/www/mod_perl/work/mod_perl-1.30/apaci is corrupted. There
 are some files missing in this port. Will anybody let me know that
 where to report this bug.
 
 /usr/ports/www/mod_perl/work/mod_perl-1.30/apaci
That would be to the maintainer -- at the moment, thats me.


-- 

Philip M. Gollucci ([EMAIL PROTECTED])
o:703.549.2050x206
Senior System Admin - Riderway, Inc.
http://riderway.com / http://ridecharge.com
1024D/EC88A0BF 0DE5 C55C 6BF3 B235 2DAB  B89E 1324 9B4F EC88 A0BF

Work like you don't need the money,
love like you'll never get hurt,
and dance like nobody's watching.

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


Re: Broken port link

2007-11-13 Thread Philip M. Gollucci
Tino Engel wrote:
 Muhammad Usman schrieb:
 Hello There!
 While i was trying to install p5-Apache-ASP i got error.
 /usr/ports/www/mod_perl/work/mod_perl-1.30/apaci is corrupted. There
 are some files missing in this port. Will anybody let me know that
 where to report this bug.

 /usr/ports/www/mod_perl/work/mod_perl-1.30/apaci


 Probably check out the owner on freebsd.org/ports...
http://tb1.p6m7g8.net/logs/7-STABLE/p5-Apache-ASP-2.59.log

works for me, did you build mod_perl as a dso or statically ?

I.E.
/usr/ports/www/apache13-modperl

vs
/usr/ports/www/apache13
/usr/ports/www/mod_perl



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


-- 

Philip M. Gollucci ([EMAIL PROTECTED])
o:703.549.2050x206
Senior System Admin - Riderway, Inc.
http://riderway.com / http://ridecharge.com
1024D/EC88A0BF 0DE5 C55C 6BF3 B235 2DAB  B89E 1324 9B4F EC88 A0BF

Work like you don't need the money,
love like you'll never get hurt,
and dance like nobody's watching.

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


Broken port? Broken port tree?

2006-09-15 Thread Bob
Or am I doing something dumb?

portaudit reported:

Affected package: mailman-with-htdig-2.1.8_3
Type of problem: mailman -- Multiple Vulnerabilities.
Reference: 
http://www.FreeBSD.org/ports/portaudit/fffa9257-3c17-11db-86ab-00123ffe8333.html

Simple fix right?

# portupgrade mailman-with-htdig
---  Upgrading 'mailman-with-htdig-2.1.8_3' to 
'mailman-with-htdig-2.1.9.r1' (mail/mailman)
---  Building '/usr/ports/mail/mailman'
===  Cleaning for python-2.4.3
snip
===  Cleaning for mailman-with-htdig-2.1.9.r1
===  Found saved configuration for mailman-2.1.8_3
snip
===  Extracting for mailman-with-htdig-2.1.9.r1
= MD5 Checksum OK for mailman/mailman-2.1.9rc1.tgz.
= SHA256 Checksum OK for mailman/mailman-2.1.9rc1.tgz.
= No MD5 checksum recorded for mailman/indexing-2.1.6-0.1.patch.gz.
= No SHA256 checksum recorded for mailman/indexing-2.1.6-0.1.patch.gz.
= No suitable checksum found for mailman/indexing-2.1.6-0.1.patch.gz.
= No MD5 checksum recorded for mailman/htdig-2.1.6-0.1.patch.gz.
= No SHA256 checksum recorded for mailman/htdig-2.1.6-0.1.patch.gz.
= No suitable checksum found for mailman/htdig-2.1.6-0.1.patch.gz.
*** Error code 1
Stop in /usr/ports/mail/mailman.
** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade72882.0 
make
** Fix the problem and try again.
** Listing the failed packages (*:skipped / !:failed)
! mail/mailman (mailman-with-htdig-2.1.8_3) (unknown build error)
---  Packages processed: 0 done, 0 ignored, 0 skipped and 1 failed

Thinking I got a bad/incomplete patch set, I deleted them and ran portupgrade 
again: 

= indexing-2.1.6-0.1.patch.gz doesn't seem to exist 
in /usr/ports/distfiles/mailman.
= Attempting to fetch from http://www.openinfo.co.uk/mm/patches/444879/.
indexing-2.1.6-0.1.patch.gz   100% of 8881  B   26 kBps
= htdig-2.1.6-0.1.patch.gz doesn't seem to exist 
in /usr/ports/distfiles/mailman.
= Attempting to fetch from http://www.openinfo.co.uk/mm/patches/444884/.
htdig-2.1.6-0.1.patch.gz  100% of   59 kB   53 kBps
===  Extracting for mailman-with-htdig-2.1.9.r1
snip
Same missing checksum error/stop.

/usr/ports/distfiles/mailman contains:
# ls -1
htdig-2.1.6-0.1.patch.gz
indexing-2.1.6-0.1.patch.gz
mailman-2.1.7.tgz
mailman-2.1.8.tgz
mailman-2.1.9rc1.tgz

Is this my system or is the port broken?

The last system changes I made was to cvsup sources and re-compiled my kernel.
I also fetched ALL upgrades via portupgrade -Fa.

# uname -a
FreeBSD tania.servebbs.org 6.1-RELEASE-p6 FreeBSD 6.1-RELEASE-p6 #3: Thu Sep 
14 11:55:02 EDT 2006 
[EMAIL PROTECTED]:/usr/src/sys/i386/compile/TANIA  i386

TIA
Bob



pgpbfxj0CLS1h.pgp
Description: PGP signature


Re: Broken port? Broken port tree?

2006-09-15 Thread Kris Kennaway
On Fri, Sep 15, 2006 at 02:22:53PM -0400, Bob wrote:
 Or am I doing something dumb?
 
 portaudit reported:
 
 Affected package: mailman-with-htdig-2.1.8_3
 Type of problem: mailman -- Multiple Vulnerabilities.
 Reference: 
 http://www.FreeBSD.org/ports/portaudit/fffa9257-3c17-11db-86ab-00123ffe8333.html
 
 Simple fix right?
 
 # portupgrade mailman-with-htdig
 ---  Upgrading 'mailman-with-htdig-2.1.8_3' to 
 'mailman-with-htdig-2.1.9.r1' (mail/mailman)
 ---  Building '/usr/ports/mail/mailman'
 ===  Cleaning for python-2.4.3
 snip
 ===  Cleaning for mailman-with-htdig-2.1.9.r1
 ===  Found saved configuration for mailman-2.1.8_3
 snip
 ===  Extracting for mailman-with-htdig-2.1.9.r1
 = MD5 Checksum OK for mailman/mailman-2.1.9rc1.tgz.
 = SHA256 Checksum OK for mailman/mailman-2.1.9rc1.tgz.
 = No MD5 checksum recorded for mailman/indexing-2.1.6-0.1.patch.gz.
 = No SHA256 checksum recorded for mailman/indexing-2.1.6-0.1.patch.gz.
 = No suitable checksum found for mailman/indexing-2.1.6-0.1.patch.gz.
 = No MD5 checksum recorded for mailman/htdig-2.1.6-0.1.patch.gz.
 = No SHA256 checksum recorded for mailman/htdig-2.1.6-0.1.patch.gz.
 = No suitable checksum found for mailman/htdig-2.1.6-0.1.patch.gz.
 *** Error code 1
 Stop in /usr/ports/mail/mailman.
 ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade72882.0 
 make
 ** Fix the problem and try again.
 ** Listing the failed packages (*:skipped / !:failed)
 ! mail/mailman (mailman-with-htdig-2.1.8_3) (unknown build error)
 ---  Packages processed: 0 done, 0 ignored, 0 skipped and 1 failed

Talk to the maintainer, looks like the port is missing the checksums
for the htdig option.

Kris


pgpr6VHAmsKfM.pgp
Description: PGP signature


broken port with no makefile?

2006-05-19 Thread nthwaver

I've been upgrading to the latest Apache  PHP versions, but seem to
be unable to get PHP to work again.  The crux of the problem is that
mod_php5 has no makefile and seems to be eternally stuck building,
even after updating the whole collection:

$ su
  [prompt edited out]
$ cvsup /root/ports-supfile
Connected to cvsup18.us.FreeBSD.org
Updating collection ports-all/cvs
Finished successfully
$ cd /usr/ports/www/mod_php5; ls -aFl
total 30
drwxr-xr-x 3 root  wheel512 May 18 05:07 ./
drwxr-xr-x  1056 root  wheel  25600 May 19 01:20 ../
drwxr-xr-x 3 root  wheel512 Apr 16 13:28 work/
$ make install
make: don't know how to make install. Stop
$ cd work; ls -aFl
total 10
drwxr-xr-x   3 root  wheel   512 Apr 16 13:28 ./
drwxr-xr-x   3 root  wheel   512 May 18 05:07 ../
-rw-r--r--   1 root  wheel 0 Apr 16 13:28
.build_done.mod_php5-5.0.4_2,1._usr_local
-rw-r--r--   1 root  wheel 0 Apr 16 13:27
.configure_done.mod_php5-5.0.4_2,1._usr_local
-rw-r--r--   1 root  wheel 0 Apr 16 13:27
.extract_done.mod_php5-5.0.4_2,1._usr_local
-rw-r--r--   1 root  wheel 0 Apr 16 13:27
.patch_done.mod_php5-5.0.4_2,1._usr_local
drwxr-xr-x  17 root  wheel  2560 May 19 01:35 php-5.0.4/
-rw-r--r--   1 root  wheel96 Apr 16 13:28 php.conf
$ make install
 [tries to run, crashes]
$ make deinstall
make: don't know how to make deinstall. Stop
$

I don't know why this junk is in the work dir, but I know it's an
older version I don't want anyway.  Can someone tell me how I can fix
this port so that I can compile it and get my webserver up again?

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


Re: broken port with no makefile?

2006-05-19 Thread Matthew Seaman
[EMAIL PROTECTED] wrote:
 I've been upgrading to the latest Apache  PHP versions, but seem to
 be unable to get PHP to work again.  The crux of the problem is that
 mod_php5 has no makefile and seems to be eternally stuck building,
 even after updating the whole collection:

mod_php5 is dead.  It would be gone in your last cvsup, but because you
had an old work directory there from the last time you built it, the system
didn't delete the directory.

What you should do:

   i) Read /usr/ports/UPDATING -- OK, not necessarily *all* of it,
  but certainly the section dated 20060506 and addressed to 'users
  of PHP'

  ii) Follow the instructions there.  You might find it useful to run:

portupgrade -f -o lang/php5 mod_php5-{version.number}

  (if you're a portupgrade fan) but do the 'make config' thing in
  lang/php5 *first*.

Cheers,

Matthew




-- 
Dr Matthew J Seaman MA, D.Phil.   7 Priory Courtyard
  Flat 3
PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate
  Kent, CT11 9PW



signature.asc
Description: OpenPGP digital signature


Re: broken port with no makefile?

2006-05-19 Thread Kris Kennaway
On Fri, May 19, 2006 at 02:00:01PM -0400, [EMAIL PROTECTED] wrote:
 I've been upgrading to the latest Apache  PHP versions, but seem to
 be unable to get PHP to work again.  The crux of the problem is that
 mod_php5 has no makefile and seems to be eternally stuck building,
 even after updating the whole collection:
 
 $ su
   [prompt edited out]
 $ cvsup /root/ports-supfile
 Connected to cvsup18.us.FreeBSD.org
 Updating collection ports-all/cvs
 Finished successfully
 $ cd /usr/ports/www/mod_php5; ls -aFl
 total 30
 drwxr-xr-x 3 root  wheel512 May 18 05:07 ./
 drwxr-xr-x  1056 root  wheel  25600 May 19 01:20 ../
 drwxr-xr-x 3 root  wheel512 Apr 16 13:28 work/

The port was removed but you still had a stale work directory there.
Just delete it.

Kris


pgpDBtqBisEfO.pgp
Description: PGP signature


Broken port ? : mysql50-server.tar.gz

2005-11-01 Thread Ian Lord

Hi,

I downloaded the port from here: 
http://cvsweb.freebsd.org/ports/databases/mysql50-server/mysql50-server.tar.gz?tarball=1


when I try to use make, I get the following error output:

~
===   mysql-server-5.0.15 depends on file: /usr/local/bin/libtool15 - found
===   mysql-server-5.0.15 depends on shared library: mysqlclient.14 
- not found
===Verifying install for mysqlclient.14 in 
/usr/ports/databases/mysql50-client

===  Vulnerability check disabled, database not found
= mysql-5.0.2-alpha.tar.gz doesn't seem to exist in /usr/ports/distfiles/.
= Attempting to fetch from ftp://ftp.easynet.be/mysql/Downloads/MySQL-5.0/.
= Attempting to fetch from 
ftp://ftp.fi.muni.cz/pub/mysql/Downloads/MySQL-5.0/.
= Attempting to fetch from 
http://mysql.mirrors.cybercity.dk/Downloads/MySQL-5.0/.
= Attempting to fetch from 
ftp://ftp.fh-wolfenbuettel.de/pub/database/mysql/Downloads/MySQL-5.0/.
= Attempting to fetch from 
ftp://ftp.gwdg.de/pub/misc/mysql/Downloads/MySQL-5.0/.
= Attempting to fetch from 
http://netmirror.org/mirror/mysql.com/Downloads/MySQL-5.0/.

= Attempting to fetch from ftp://netmirror.org/mysql.com/Downloads/MySQL-5.0/.
= Attempting to fetch from http://mirrors.ntua.gr/MySQL/Downloads/MySQL-5.0/.
= Attempting to fetch from 
ftp://ftp.ntua.gr/pub/databases/mysql/Downloads/MySQL-5.0/.

= Attempting to fetch from http://mysql.sote.hu/Downloads/MySQL-5.0/.
= Attempting to fetch from ftp://ftp.rhnet.is/pub/mysql/Downloads/MySQL-5.0/.
= Attempting to fetch from 
ftp://mirror.widexs.nl/pub/mysql/Downloads/MySQL-5.0/.

~

for all these tries, I get an error saying the file 
mysql-5.0.2-alpha.tar.gz is unavailable (e.g. file not found, no access)


I don't get why it tries to download an alpha file, I'm running the 
amd64 version of freebsd.


Is it the port that is broken or me doing something stupid ?

Thanks 
___

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


Re: Broken port ? : mysql50-server.tar.gz

2005-11-01 Thread Kris Kennaway
On Wed, Nov 02, 2005 at 12:26:27AM -0500, Ian Lord wrote:
 Hi,
 
 I downloaded the port from here: 
 http://cvsweb.freebsd.org/ports/databases/mysql50-server/mysql50-server.tar.gz?tarball=1
 
 when I try to use make, I get the following error output:
 
 ~
 ===   mysql-server-5.0.15 depends on file: /usr/local/bin/libtool15 - found
 ===   mysql-server-5.0.15 depends on shared library: mysqlclient.14 
 - not found
 ===Verifying install for mysqlclient.14 in 
 /usr/ports/databases/mysql50-client

As you can see here, it tried to install another required port:

 ===  Vulnerability check disabled, database not found
 = mysql-5.0.2-alpha.tar.gz doesn't seem to exist in /usr/ports/distfiles/.

But your copy of this port was a version from 9 months ago.

It's not really a good idea to try to download individual port
directories like this, because most ports depend on several others
that you also need to keep up-to-date.  Either install or update the
full ports collection, or use the precompiled packages (e.g. pkg_add
-r).

Kris


pgpjTDCOuGmjs.pgp
Description: PGP signature


Re: Broken port ? : mysql50-server.tar.gz

2005-11-01 Thread Kris Kennaway
On Wed, Nov 02, 2005 at 12:34:21AM -0500, Ian Lord wrote:
 I knew I was the cause of the problem :)
 
 Sorry for the trouble, but could you direct me to a page explaining 
 how to update the port directories

It's described in considerable detail in the Handbook available on the
website.

Kris


pgpcp1RpoGKzB.pgp
Description: PGP signature


Broken port tree: how to repair ?

2005-04-10 Thread Xavier Maillard
Hello,

I had a problem of corrupted database and I did a big mistake: I
incidentally deleted my port tree instead of the database.

Now I have big troubles whenever I want to upgrade/install any
new port.

Is there any way to fix this ?

Thank you.
-- 
Registered Linux-User #340967 with the Linux Counter, http://counter.li.org.


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


Re: Broken port tree: how to repair ?

2005-04-10 Thread Ash
Xavier Maillard wrote:
Hello,
I had a problem of corrupted database and I did a big mistake: I
incidentally deleted my port tree instead of the database.
Now I have big troubles whenever I want to upgrade/install any
new port.
Is there any way to fix this ?
Thank you.
You can cvsup your ports tree to bring it up to date:
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/ports-using.html
(yes this will work even if you've deleted your whole tree)
-ash
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Broken port tree: how to repair ?

2005-04-10 Thread Bachelier Vincent
delete /var/db/pkg/pkgdb.db
do a cvsup of your port tree ...
do a make fetchindex under /usr/ports
now, check portversion -l''
it should reconstruct everything


Le Lundi 11 Avril 2005 00:02, Xavier Maillard a écrit :
 Hello,

 I had a problem of corrupted database and I did a big mistake: I
 incidentally deleted my port tree instead of the database.

 Now I have big troubles whenever I want to upgrade/install any
 new port.

 Is there any way to fix this ?

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


Re: Broken port tree: how to repair ?

2005-04-10 Thread Xavier Maillard
On 11 Apr 2005, Bachelier Vincent wrote:

 delete /var/db/pkg/pkgdb.db
 do a cvsup of your port tree ...
 do a make fetchindex under /usr/ports
 now, check portversion -l''
 it should reconstruct everything
 
And what about stalled dependancies ?

-- 
 In Gruuik we trust


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


Re: Broken port tree: how to repair ?

2005-04-10 Thread Kris Kennaway
On Mon, Apr 11, 2005 at 01:25:41AM +0200, Xavier Maillard wrote:
 On 11 Apr 2005, Bachelier Vincent wrote:
 
  delete /var/db/pkg/pkgdb.db
  do a cvsup of your port tree ...
  do a make fetchindex under /usr/ports
  now, check portversion -l''
  it should reconstruct everything
  
 And what about stalled dependancies ?

What is a stalled dependency?

Kris


pgpnKrzj0BZjP.pgp
Description: PGP signature


Re: Broken port tree: how to repair ?

2005-04-10 Thread Joel
   delete /var/db/pkg/pkgdb.db
(B   do a cvsup of your port tree ...
(B   do a "make fetchindex" under /usr/ports
(B   now, check portversion -l''
(B   it should reconstruct everything
(B   
(B  And what about stalled dependancies ?
(B 
(B What is a stalled dependency?
(B
(BOr, perhaps more to the point, how does a dependency, stalled or
(Botherwise, survive a broken ports tree?
(B
(B--
(BJoel Rees   [EMAIL PROTECTED]
(Bdigitcom, inc.   $B3t<02q

Broken port: gettext

2005-03-03 Thread Andrew Lewis
Help! :( Spent all day @ a client trying to recover some data, then stayed up 
all night recovering it  now doing a fresh setup on FreeBSD 5.3-RELEASE, 
cvsupped with latest ports, and gettext port is broken (need for Samba3, PHP). 
Supposed to go back in about an hour to install new box. :(

Anyone picked this up yet? Can help me out?

/bin/sh /usr/local/bin/libtool15 --mode=link cc  -O -pipe   -L/usr/local/lib -o 
libgettextsrc.la -rpath /usr/local/lib -release 0.14.1  ../lib/libgettextlib.la 
../intl/libintl.la -L/usr/local/lib -liconv -R/usr/local/lib -L/usr/local/lib 
-liconv -R/usr/local/lib -no-undefined message.lo read-po-abstract.lo po-lex.lo 
 po-gram-gen.lo po-hash-gen.lo po-charset.lo read-properties.lo  
read-stringtable.lo open-po.lo dir-list.lo str-list.lo read-po.lo  
write-properties.lo write-stringtable.lo write-po.lo  msgl-ascii.lo 
msgl-iconv.lo msgl-equal.lo msgl-cat.lo  msgl-english.lo file-list.lo 
msgl-charset.lo po-time.lo  plural.lo plural-table.lo format.lo format-c.lo 
format-sh.lo format-python.lo  format-lisp.lo format-elisp.lo format-librep.lo 
format-java.lo  format-csharp.lo format-awk.lo format-pascal.lo format-ycp.lo  
format-tcl.lo format-perl.lo format-perl-brace.lo  format-php.lo 
format-gcc-internal.lo format-qt.lo  
libtool15: link: `po-lex.lo' is not a valid libtool object
*** Error code 1

Stop in /usr/ports/devel/gettext/work/gettext-0.14.1/gettext-tools/src.
*** Error code 1

Best,
-AL.

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


Re: Broken port: gettext

2005-03-03 Thread Kent Stewart
On Thursday 03 March 2005 08:00 pm, Andrew Lewis wrote:
 Help! :( Spent all day @ a client trying to recover some data, then
 stayed up all night recovering it  now doing a fresh setup on
 FreeBSD 5.3-RELEASE, cvsupped with latest ports, and gettext port is
 broken (need for Samba3, PHP). Supposed to go back in about an hour
 to install new box. :(

 Anyone picked this up yet? Can help me out?

I tried it on 5.4-pre and didn't have any problem. I would portupgrade 
-Rf and see it that helps.

===   Compressing manual pages for gettext-0.14.1
===   Running ldconfig
/sbin/ldconfig -m /usr/local/lib
===   Registering installation for gettext-0.14.1
===  Building package for gettext-0.14.1
Creating package /usr/ports/packages/All/gettext-0.14.1.tbz
Registering depends: libiconv-1.9.2_1.
Creating bzip'd tar ball in '/usr/ports/packages/All/gettext-0.14.1.tbz'
===  Cleaning for libiconv-1.9.2_1
===  Cleaning for libtool-1.5.10
===  Cleaning for gettext-0.14.1
---  Cleaning out obsolete shared libraries
[Updating the pkgdb format:bdb1_btree in /var/db/pkg ... - 298 
packages found (-0 +1) . done]
opal# uname -a
FreeBSD opal 5.4-PRERELEASE FreeBSD 5.4-PRERELEASE #122: Wed Mar  2 
22:40:55 PST 2005   

 /bin/sh /usr/local/bin/libtool15 --mode=link cc  -O -pipe  
 -L/usr/local/lib -o libgettextsrc.la -rpath /usr/local/lib -release
 0.14.1  ../lib/libgettextlib.la ../intl/libintl.la -L/usr/local/lib
 -liconv -R/usr/local/lib -L/usr/local/lib -liconv -R/usr/local/lib
 -no-undefined message.lo read-po-abstract.lo po-lex.lo 
 po-gram-gen.lo po-hash-gen.lo po-charset.lo read-properties.lo 
 read-stringtable.lo open-po.lo dir-list.lo str-list.lo read-po.lo 
 write-properties.lo write-stringtable.lo write-po.lo  msgl-ascii.lo
 msgl-iconv.lo msgl-equal.lo msgl-cat.lo  msgl-english.lo file-list.lo
 msgl-charset.lo po-time.lo  plural.lo plural-table.lo format.lo
 format-c.lo format-sh.lo format-python.lo  format-lisp.lo
 format-elisp.lo format-librep.lo format-java.lo  format-csharp.lo
 format-awk.lo format-pascal.lo format-ycp.lo  format-tcl.lo
 format-perl.lo format-perl-brace.lo  format-php.lo
 format-gcc-internal.lo format-qt.lo libtool15: link: `po-lex.lo' is
 not a valid libtool object
 *** Error code 1

 Stop in
 /usr/ports/devel/gettext/work/gettext-0.14.1/gettext-tools/src. ***
 Error code 1

 Best,
 -AL.

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

-- 
Kent Stewart
Richland, WA

http://users.owt.com/kstewart/index.html
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


broken port

2005-01-05 Thread Kiffin Gish
Sometimes when I am trying to make something from the ports I get the
message that the port is 'broken'.

For example, while trying to build the enlightenment window manager.

What does that mean and what can I do to get around it?

-- 
Kiffin Gish
Gouda, The Netherlands


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


Re: broken port

2005-01-05 Thread Charles Swiger
On Jan 5, 2005, at 4:19 PM, Kiffin Gish wrote:
Sometimes when I am trying to make something from the ports I get the
message that the port is 'broken'.
For example, while trying to build the enlightenment window manager.
What does that mean and what can I do to get around it?
The BROKEN line in the port's Makefile ought to specify a reason why  
the port is broken, but for more information consider:

http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/dads- 
noinstall.html

If you figure out how to fix the problem with the port, submit your  
changes via send-pr or discuss the matter with the port's maintainer  
(or here on this mailing list).

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


Re: broken port

2005-01-05 Thread daniel quinn
On January 5, 2005 04:19 pm, Kiffin Gish wrote:
 Sometimes when I am trying to make something from the ports I get the
 message that the port is 'broken'.

 For example, while trying to build the enlightenment window manager.

 What does that mean and what can I do to get around it?

from the bsd handbook:
  http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/ports-broken.html


-- 
economics is extremely useful as a form of employment for economists.
  - john kenneth galbraith
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: broken port

2005-01-05 Thread Kris Kennaway
On Wed, Jan 05, 2005 at 10:19:21PM +0100, Kiffin Gish wrote:
 Sometimes when I am trying to make something from the ports I get the
 message that the port is 'broken'.
 
 For example, while trying to build the enlightenment window manager.
 
 What does that mean and what can I do to get around it?

Usually, is known not to compile on your version of FreeBSD.
Enlightment itself is not marked broken though, so you'll have to post
the exact error message you receive to get more specific advice.

Kris


pgpsSpmiHQDw8.pgp
Description: PGP signature


Broken Port

2004-08-25 Thread Abid Saigol
Hi,

I was using portcheckout to fetch courier-0.45.4 and got the following
message:

===  courier-0.45.4 is marked as broken: Unknown LIBTOOL version: 15.
===  Vulnerability check disabled
 expat-1.95.8.tar.gz doesn't seem to exist in /usr/ports/distfiles/.
 Attempting to fetch from
http://heanet.dl.sourceforge.net/sourceforge/expat/.
Receiving expat-1.95.8.tar.gz (318349 bytes): 100%
318349 bytes transferred in 1.6 seconds (191.28 kBps)
===  Vulnerability check disabled
 gettext-0.13.1.tar.gz doesn't seem to exist in /usr/ports/distfiles/.
 Attempting to fetch from http://ftp.gnu.org/gnu/gettext/.
Receiving gettext-0.13.1.tar.gz (6458256 bytes): 100%
6458256 bytes transferred in 21.5 seconds (293.07 kBps)
===  Vulnerability check disabled
 make-3.80.tar.bz2 doesn't seem to exist in /usr/ports/distfiles/.
 Attempting to fetch from http://ftp.gnu.org/gnu/make/.
Receiving make-3.80.tar.bz2 (920645 bytes): 100%
920645 bytes transferred in 3.1 seconds (286.60 kBps)
===  libiconv-1.9.2_1 is marked as broken: Unknown LIBTOOL version: 15.
===   NOTICE:

This port is deprecated; you may wish to reconsider installing it:

Please use devel/libtool15 instead.

===  Vulnerability check disabled
===  Vulnerability check disabled
 m4-1.4.1.tar.gz doesn't seem to exist in /usr/ports/distfiles/.
 Attempting to fetch from http://ftp.gnu.org/gnu/m4/.
Receiving m4-1.4.1.tar.gz (343133 bytes): 100%
343133 bytes transferred in 1.3 seconds (265.02 kBps)
cd: can't cd to ports/net/p5-Net-CIDR
===  Vulnerability check disabled
===  sysconftool-0.14 is marked as broken: Unknown AUTOCONF version: 253.
www# portcheckout --fetch --index=INDEX libtool15
Disttribution name `libtool15' not found!

I have now used portcheckout to fetch libtool-1.5.  Do I need to fix
anything before running make install, given the message above noting that
some of the items have been marked as broken?  If so, could anyone guide me
please.

Thanks,   Abid

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


fwbuilder - broken port?

2004-04-25 Thread Robert Storey
Hmmm...strange happenings here...

I tried installing fwbuilder (a tool for building firewalls - works with
ipfilter and pf) from ports. This is the first time I've seen this sort of
error...

  [EMAIL PROTECTED]:/usr/ports/security/fwbuilder make
   fwbuilder-1.0.11.tar.gz doesn't seem to exist in /usr/ports/distfiles/.
   Attempting to fetch from http://us.dl.sourceforge.net/fwbuilder/.
  Receiving fwbuilder-1.0.11.tar.gz (1385279 bytes): 100% (ETA 00:00)  
  1385279 bytes transferred in 309.8 seconds (4.37 kBps)
  ===  Extracting for fwbuilder-1.0.11_1
   Checksum OK for fwbuilder-1.0.11.tar.gz.
  ===  Patching for fwbuilder-1.0.11_1
  ===  Applying FreeBSD patches for fwbuilder-1.0.11_1
  ===! Running aclocal
  aclocal: not found
  *** Error code 127

  Stop in /usr/ports/security/fwbuilder.

What exactly was that all about? A broken port perhaps?

best regards,
Robert

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


Re: How to patch and fix a broken port?

2003-09-22 Thread Dan Pelleg
Rob Lahaye [EMAIL PROTECTED] writes:

 Hi,
 
 I have never done this. So I apologize for my ignorant questions...
 
 Last week I discovered that the molden port is broken in many ways
 (md5 sum wrong, Mesa depence absent  install broken). I reported
 it to the freebsd-ports mailing list and to the maintainer. I even
 attached a sort of patch that fixed the build in a followup email,
 but never got any response, nor has the port been fixed.
 
 So what to do with broken ports like that?
 
 I can imagine that ports are broken and remain broken if nobody
 ever uses them or installs them. But as soon as a port is noticed
 as broken, it is necessary to get it fixed.
 
 How is the general procedure to get this done?
 
 Please bare with me: I'm mainly a port user. I know how to install
 ports etc. I have no idea about generating and maintaining ports.
 
 So here we go again: the molden port is broken, but easy to fix
 (see my earlier emails about the molden port on the freebsd-ports
 mailing list).
 
 Regards,
 Rob.

File a PR, and wait. Eventually someone will take care of it.

As for the technical guidlines, see the porter's handbook:
http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/

-- 

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


Re: How to patch and fix a broken port?

2003-09-22 Thread Robert Huff

Dan Pelleg writes:

  File a PR, and wait. Eventually someone will take care of it.

I'm sure someone will confirm or refute this, but I believe
the ports system is currently frozen in preparation for the release
of 4.9.  Due to unusually extensive pre-release changes, the freeze
is now at two weeks and counting.
Once the freeze is off a large number of ports will get
updated; there is apparently an unusually large bolus of changes
backed up never mind the fixing any breakage due to the changes in
4.9.


Robert Huff


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


How to patch and fix a broken port?

2003-09-21 Thread Rob Lahaye



Hi,

I have never done this. So I apologize for my ignorant questions...

Last week I discovered that the molden port is broken in many ways
(md5 sum wrong, Mesa depence absent  install broken). I reported
it to the freebsd-ports mailing list and to the maintainer. I even
attached a sort of patch that fixed the build in a followup email,
but never got any response, nor has the port been fixed.

So what to do with broken ports like that?

I can imagine that ports are broken and remain broken if nobody
ever uses them or installs them. But as soon as a port is noticed
as broken, it is necessary to get it fixed.

How is the general procedure to get this done?

Please bare with me: I'm mainly a port user. I know how to install
ports etc. I have no idea about generating and maintaining ports.

So here we go again: the molden port is broken, but easy to fix
(see my earlier emails about the molden port on the freebsd-ports
mailing list).

Regards,
Rob.

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


Re: Broken port: sendmail-milter

2003-07-14 Thread Dan Nelson
In the last episode (Jul 14), Martin Schweizer said:
 Why /usr/ports/mail/p5-Sendmail-Milter is broken? I would it
 reinstall because it occurs the following error:
 
 [snip]
 
 Starting final network daemons:
 .
 ELF ldconfig path: /usr/lib /usr/lib/compat /usr/X11R6/lib /usr/local/lib
 a.out ldconfig path: /usr/lib/aout /usr/lib/compat/aout /usr/X11R6/lib/aout
 Starting standard daemons:
  inetd
  cron
  sshd
  usbd
  sendmail
 
 Why this?
 
 WARNING: Xspamassassin: local socket name /var/run/spamass-milter.sock missing

That message gets printed because sendmail is started before the
milter, which means the milter hasn't created the communication socket
yet.  You can ignore it, since the milter is started later during the
startup process anyway.  Theoretically under 5.x you could arrange it
so that spamass-milter is started before sendmail, but I don't believe
that the new rc scripts check /usr/local/etc/rc.d for dependencies yet.

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


Re: Broken port: sendmail-milter

2003-07-14 Thread Martin Schweizer
Hello Dan

Thank you for your hint.

Am Mon, Jul 14, 2003 at 01:07:33AM -0500 Dan Nelson schrieb:
 In the last episode (Jul 14), Martin Schweizer said:
  Why /usr/ports/mail/p5-Sendmail-Milter is broken? I would it
  reinstall because it occurs the following error:
  
  [snip]
  
  Starting final network daemons:
  .
  ELF ldconfig path: /usr/lib /usr/lib/compat /usr/X11R6/lib /usr/local/lib
  a.out ldconfig path: /usr/lib/aout /usr/lib/compat/aout /usr/X11R6/lib/aout
  Starting standard daemons:
   inetd
   cron
   sshd
   usbd
   sendmail
  
  Why this?
  
  WARNING: Xspamassassin: local socket name /var/run/spamass-milter.sock missing
 
 That message gets printed because sendmail is started before the
 milter, which means the milter hasn't created the communication socket
 yet.  You can ignore it, since the milter is started later during the
 startup process anyway.  Theoretically under 5.x you could arrange it
 so that spamass-milter is started before sendmail, but I don't believe
 that the new rc scripts check /usr/local/etc/rc.d for dependencies yet.
 
 -- 
   Dan Nelson
   [EMAIL PROTECTED]
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]

-- 

Regards
Gruss
Mit freundlichen Grüssen

Martin Schweizer
[EMAIL PROTECTED]

PC-Service M. Schweizer; Gewerbehaus Schwarz; CH-8608 Bubikon
Tel. +41 55 243 30 00; Fax: +41 55 243 33 22; http://www.pc-service.ch;
public key : http://www.pc-service.ch/pgp/public_key.asc; 
fingerprint: EC21 CA4D 5C78 BC2D 73B7  10F9 C1AE 1691 D30F D239;



pgp0.pgp
Description: PGP signature


Broken port: sendmail-milter

2003-07-13 Thread Martin Schweizer
Hello 

Why /usr/ports/mail/p5-Sendmail-Milter is broken? I would it reinstall because 
it occurs the following error:

[snip]

Starting final network daemons:
.
ELF ldconfig path: /usr/lib /usr/lib/compat /usr/X11R6/lib /usr/local/lib
a.out ldconfig path: /usr/lib/aout /usr/lib/compat/aout /usr/X11R6/lib/aout
Starting standard daemons:
 inetd
 cron
 sshd
 usbd
 sendmail

Why this?

*
WARNING: Xspamassassin: local socket name /var/run/spamass-milter.sock missing
* 
 sendmail-clientmqueue

[snip]

-- 

Regards

Martin Schweizer
[EMAIL PROTECTED]

PC-Service M. Schweizer; Gewerbehaus Schwarz; CH-8608 Bubikon
Tel. +41 55 243 30 00; Fax: +41 55 243 33 22; http://www.pc-service.ch;
public key : http://www.pc-service.ch/pgp/public_key.asc; 
fingerprint: EC21 CA4D 5C78 BC2D 73B7  10F9 C1AE 1691 D30F D239;



pgp0.pgp
Description: PGP signature


Broken port: sendmail-milter

2003-07-13 Thread Martin Schweizer
Hello 

Why /usr/ports/mail/p5-Sendmail-Milter is broken? I would it reinstall because 
it occurs the following error:

[snip]

Starting final network daemons:
.
ELF ldconfig path: /usr/lib /usr/lib/compat /usr/X11R6/lib /usr/local/lib
a.out ldconfig path: /usr/lib/aout /usr/lib/compat/aout /usr/X11R6/lib/aout
Starting standard daemons:
 inetd
 cron
 sshd
 usbd
 sendmail

Why this?

*
WARNING: Xspamassassin: local socket name /var/run/spamass-milter.sock missing
* 
 sendmail-clientmqueue

[snip]

-- 

Regards

Martin Schweizer
[EMAIL PROTECTED]

PC-Service M. Schweizer; Gewerbehaus Schwarz; CH-8608 Bubikon
Tel. +41 55 243 30 00; Fax: +41 55 243 33 22; http://www.pc-service.ch;
public key : http://www.pc-service.ch/pgp/public_key.asc; 
fingerprint: EC21 CA4D 5C78 BC2D 73B7  10F9 C1AE 1691 D30F D239;



pgp0.pgp
Description: PGP signature


Re: Broken port?

2002-10-18 Thread Rafter Man
Bwt, please CC to me as I am not on the list,
thanks :-)

Best regards 
Rafter
-- 
Get your free email from www.linuxmail.org 


Powered by Outblaze

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Broken port?

2002-10-17 Thread Rafter Man
Hi again

I have installed the base system of FreeBSD 4.7-Release and now I am trying to get X 
windows, gnome2 and sawfish on my computer, so I go into:
/usr/ports/x11/gnome2 and write make install clean, but 
/usr/ports/databases/libgnomedb can't build (something with checksum not matching, but 
if I try compiling it without checksum check, is says that it can't find some dir).
According to www.FreshPorts.org it is not broken, so am I doing something wrong? If 
not, how can I then get gnome2 installed?

Best regards
Rafter
-- 
Get your free email from www.linuxmail.org 


Powered by Outblaze

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: Broken port?

2002-10-17 Thread Kris Kennaway
On Fri, Oct 18, 2002 at 06:09:55AM +0800, Rafter Man wrote:
 Hi again
 
 I have installed the base system of FreeBSD 4.7-Release and now I am trying to get X 
windows, gnome2 and sawfish on my computer, so I go into:
 /usr/ports/x11/gnome2 and write make install clean, but 
/usr/ports/databases/libgnomedb can't build (something with checksum not matching, 
but if I try compiling it without checksum check, is says that it can't find some 
dir).
 According to www.FreshPorts.org it is not broken, so am I doing something wrong? If 
not, how can I then get gnome2 installed?

1) Please wrap your lines at 70 characters

2) Please post exact error messages when reporting a problem, it is
difficult to guess them, and you're less likely to get help.

The checksum mismatch should indicate to you that there was a problem
downloading the file, or if the distfile has actually changed then the
port may have already been updated.  Update your ports tree, remove
the distfile from from /usr/ports/distfiles and re-fetch it (by hand
from another MASTER_SITE if necessary).

Kris



msg06360/pgp0.pgp
Description: PGP signature