- Remove libdts support (this is now done by ffmpeg) [1]

- Fix libcdio dependency [2]

Reported by:	naddy [1] (private e-mail)
Submitted by:	Thomas Zander [1] [2] (maintainer, private e-mail)
This commit is contained in:
Martin Matuska 2010-04-25 08:29:23 +00:00
parent e52e1bb2f8
commit f155fbed29
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=253202
3 changed files with 5 additions and 9 deletions

View File

@ -6,6 +6,7 @@
PORTNAME= mencoder
PORTVERSION= ${MPLAYER_PORT_VERSION}
PORTREVISION= 1
COMMENT= Convenient video file and movie encoder
NO_PACKAGE= Port has restricted dependencies
@ -25,7 +26,6 @@ OPTIONS+= LIBDV "Enable libdv support" off
OPTIONS+= MAD "Enable mad MPEG audio engine support" off
OPTIONS+= AMR "Enable opencore AMR audio codec support" off
OPTIONS+= TWOLAME "Enable twolame MPEG audio codec support" off
OPTIONS+= DTS "Enable DTS audio codec support" on
OPTIONS+= LIBMPCDEC "Enable libmpcdec support" off
OPTIONS+= FAAC "Enable FAAC audio codec support" off
OPTIONS+= LADSPA "Enable LADSPA plugin support" off
@ -65,6 +65,7 @@ BUILD_DEPENDS+= mplayer:${PORTSDIR}/multimedia/mplayer
RUN_DEPENDS+= mplayer:${PORTSDIR}/multimedia/mplayer
CONFIGURE_ARGS+= --disable-mplayer \
--disable-libdca \
--disable-x11 \
--disable-vdpau \
--disable-fontconfig \

View File

@ -7,6 +7,7 @@
PORTNAME= mplayer
PORTVERSION= ${MPLAYER_PORT_VERSION}
PORTREVISION= 1
COMMENT= High performance media player supporting many formats
@ -42,7 +43,6 @@ OPTIONS+= SVGALIB "Enable svgalib support" off
OPTIONS+= LIBDV "Enable libdv support" off
OPTIONS+= MAD "Enable mad MPEG audio engine support" off
OPTIONS+= AMR "Enable opencore AMR audio codec support" off
OPTIONS+= DTS "Enable DTS audio codec support" on
OPTIONS+= LIBMPCDEC "Enable libmpcdec support" off
OPTIONS+= LADSPA "Enable LADSPA plugin support" off
OPTIONS+= SPEEX "Enable speex audio codec support" on
@ -74,6 +74,7 @@ CONFFILES= example.conf input.conf menu.conf dvb-menu.conf
CONFIGURE_ARGS+= --disable-ssse3 \
--disable-directfb \
--disable-faac \
--disable-libdca \
--disable-twolame \
--disable-x264 \
--disable-xvid \

View File

@ -96,12 +96,6 @@ LIB_DEPENDS+= mpcdec.5:${PORTSDIR}/audio/libmpcdec
CONFIGURE_ARGS+= --disable-musepack
.endif
.if !defined(WITHOUT_DTS)
LIB_DEPENDS+= dca.0:${PORTSDIR}/multimedia/libdca
.else
CONFIGURE_ARGS+= --disable-libdca
.endif
.if !defined(WITHOUT_SPEEX)
LIB_DEPENDS+= speex.1:${PORTSDIR}/audio/speex
.else
@ -160,7 +154,7 @@ CONFIGURE_ARGS+= --disable-cdparanoia
.endif
.if defined(WITH_LIBCDIO) && !defined(WITH_CDPARANOIA)
BUILD_DEPENDS+= ${LOCALBASE}/include/cdio/cdio.h:${PORTSDIR}/sysutils/libcdio
LIB_DEPENDS+= cdio.12:${PORTSDIR}/sysutils/libcdio
.else
CONFIGURE_ARGS+= --disable-libcdio
.endif