ncmpcpp

Hopefully someone else uses ncmpcpp and can give me an answer. ncmpcpp on 12.1-RELEASE only provides 8 possible colors. Is there something wrong with my installation or this is true across the board. The same version of ncmpcpp on Linux provides over 200 color options.
 
The 8 colours are the defaults for ncurses. Support for any more would depend on the terminfo of your TERM.

Maybe not the right think to say but it does not work that way in Linux. TERM colors should not affect ncmpcpp color options. I will tend to go with rigoletto@
 
Confirming the issue is related with the switch to using the BASE ncurses. Reverting to r519824 fixed it in here.

Basically means two changes, from (currently):
Code:
USES=           compiler:c++14-lang gnome iconv libtool localbase ncurses \
                pkgconfig readline tar:bzip2
                
CONFIGURE_ENV= BOOST_LIB_SUFFIX="" ncursesw_CFLAGS="-L${NCURSESLIB}" ncursesw_LIBS="-lncursesw"

To:
Code:
USES=           compiler:c++14-lang gnome iconv libtool localbase ncurses:port \
                pkgconfig readline tar:bzip2
                
CONFIGURE_ENV= BOOST_LIB_SUFFIX=""
 
Back
Top