View Single Post
  #2   (View Single Post)  
Old 1st July 2019
jggimi's Avatar
jggimi jggimi is offline
More noise than signal
 
Join Date: May 2008
Location: USA
Posts: 7,984
Default

Unlikely.

x11/mplayer/Makefile

libcaca is disabled:
Code:
# CONFIGURE_ARGS that disable external stuff
CONFIGURE_ARGS+=--disable-caca \
There are $FLAVORS for mplayer which add aalib and jack, but none have been written to add caca.
Code:
FLAVORS=	debug aa jack
FLAVOR?=

.if ${FLAVOR:Mdebug}
CONFIGURE_ARGS+=--enable-debug=3 \
		--disable-sighandler
.endif

.if ${FLAVOR:Maa}
LIB_DEPENDS+=	graphics/aalib
WANTLIB+=	aa
.else
CONFIGURE_ARGS+=--disable-aa
.endif

.if ${FLAVOR:Mjack}
LIB_DEPENDS+=	audio/jack
WANTLIB+=	jack
.else
CONFIGURE_ARGS+=--disable-jack
.endif
multimedia/mpv/Makefile

It's disabled in mpv also:
Code:
CONFIGURE_ARGS =	--confloaddir=${SYSCONFDIR}/mpv \
.
.
.
			--disable-caca \
mpv has no $FLAVORS. The adventerous admin could add them.

Summary

At this time, both of these ports lack assigned $MAINTAINERs. So if you are interested in adding caca $FLAVORs to one or both ports, feel free to develop them. If you are successful, please submit your unified diff(1) patches (against -current) to the ports@ mailing list.
Reply With Quote