Re: How to build VLC port

2009-12-12 Thread Richard Mace

  Sorry if this is well-known. I have googled but came up with nothing. (I
  am relatively new to FreeBSD.)
 
  I am running 8.0-RELEASE. I am trying to build VLC with
 
  # cd /usr/ports
 
 You mean ../multimedia/vlc ?

Yes, indeed. Sorry.

  # make install clean
 
 I'm building it now.
 
  But I get the message:
 
  ===  vlc-1.0.3_4,3 is marked as broken: doesn't build with dirac.
  *** Error code 1
 
 
  I tried a
 
  # make config
 
 Try make rmconfig

Thanks. I tried this (make rmconfig) and still got the same error:
==
toutatis# make install clean
===  vlc-1.0.3_4,3 is marked as broken: doesn't build with dirac.
*** Error code 1

Stop in /usr/ports/multimedia/vlc.
==

Any other ideas?

-Richard
___
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 VLC port

2009-12-12 Thread RW
On Sat, 12 Dec 2009 15:49:06 +0100
Bernt Hansson be...@bah.homeip.net wrote:

 Richard Mace:

  ===  vlc-1.0.3_4,3 is marked as broken: doesn't build with dirac.
  *** Error code 1
 
 
  I tried a 
  
  # make config
 
 Try make rmconfig

You also need to remove the dirac package if it's already installed.
___
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 VLC port

2009-12-12 Thread Warren Block

On Sat, 12 Dec 2009, Richard Mace wrote:


Sorry if this is well-known. I have googled but came up with nothing. (I am
relatively new to FreeBSD.)

I am running 8.0-RELEASE. I am trying to build VLC with

# cd /usr/ports
# make install clean

But I get the message:

===  vlc-1.0.3_4,3 is marked as broken: doesn't build with dirac.
*** Error code 1

I tried a

# make config

but cannot find out how to turn off the dirac depends (is it possible?).


The multimedia/vlc Makefile automatically enables dirac use if 
libdirac_decoder.a is already installed.


You can override that, but not through the menu options:

make -DWITHOUT_DIRAC install clean

Or you can uninstall the multimedia/dirac port (if nothing is using it) 
before installing vlc.


-Warren Block * Rapid City, South Dakota USA
___
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 VLC port

2009-12-12 Thread Richard Mace
 On Sat, 12 Dec 2009 15:49:06 +0100
 
 Bernt Hansson be...@bah.homeip.net wrote:
  Richard Mace:
   ===  vlc-1.0.3_4,3 is marked as broken: doesn't build with dirac.
   *** Error code 1
  
  
   I tried a
  
   # make config
 
  Try make rmconfig
 
 You also need to remove the dirac package if it's already installed.

Thanks for the hint. Actually, you don't need such a drastic measure, it 
seems.

I looked into the Makefile and found:

.if (defined(WITH_DIRAC) || exists(${LOCALBASE}/lib/libdirac_decoder.a))  
!defined(WITHOUT_DIRAC)
BROKEN= doesn't build with dirac

I did a 

# make  -DWITHOUT_DIRAC 

and it seems to be building.

As I type this I see confirmation of the solution above from Warren Block 
(Thanks!)

-Richard
___
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