diff options
author | krion <krion@FreeBSD.org> | 2004-02-26 09:18:00 +0000 |
---|---|---|
committer | krion <krion@FreeBSD.org> | 2004-02-26 09:18:00 +0000 |
commit | efb3fbf4025cb262f0ac43a27500b508341247e0 (patch) | |
tree | 2a6cc8183e64379b969e96858506c6a89577b36e /multimedia/mplayer/Makefile | |
parent | bc3b6f33ef54cfd402e582ff8117aafe37aa23fc (diff) | |
download | FreeBSD-ports-efb3fbf4025cb262f0ac43a27500b508341247e0.zip FreeBSD-ports-efb3fbf4025cb262f0ac43a27500b508341247e0.tar.gz |
This update solves two issues which are important for many
users of mplayer:
o bktr driver working. Thanks to Arjan van Leeuwen
<avleeuwen@piwebs.com> and Simun Mikecin sime@logos.hr (For me
it doesn't work at all, but mplayer's tv never did :-) So I
rely on the reports of the users who are successful.)
o disables support for libdvdnav as it's not compatible with
the new version. The mplayer developers are informed and
hunt the problem.
o introduces a patch to fix -vo md5: patch-libvo-vo_md5.c
Thanks to Christopher Nehren <apeiron@comcast.net>
PR: ports/63363
Submitted by: maintainer
Diffstat (limited to 'multimedia/mplayer/Makefile')
-rw-r--r-- | multimedia/mplayer/Makefile | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/multimedia/mplayer/Makefile b/multimedia/mplayer/Makefile index b8adce2..348612b 100644 --- a/multimedia/mplayer/Makefile +++ b/multimedia/mplayer/Makefile @@ -93,7 +93,8 @@ # libdvdread). This only affect mplayer if WITH_DVD is used. # # WITH_LIBDVDNAV -# default: autodetect +# Completely disabled at the moment because of incompatibility issues +# with the new libdvdnav. This will probably be fixed in mplayer-1.0. # # WITH_LIBUNGIF # default: autodetect @@ -170,7 +171,7 @@ PORTNAME= mplayer PORTVERSION= 0.92.0 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= multimedia audio ipv6 MASTER_SITES= http://www1.mplayerhq.hu/MPlayer/releases/ \ http://www2.mplayerhq.hu/MPlayer/releases/ \ @@ -207,7 +208,8 @@ CONFIGURE_ARGS= --with-extralibdir=${LOCALBASE}/lib \ --with-x11incdir=${X11BASE}/include \ --enable-png \ --disable-libfame \ - --disable-tv-v4l + --disable-tv-v4l \ + --disable-dvdnav .if defined(WITH_LANG) CONFIGURE_ARGS+=--language=${WITH_LANG} @@ -249,9 +251,9 @@ WITH_LIBDV= yes WITH_DVD= yes .endif -.if exists(${LOCALBASE}/lib/libdvdnav.so.3) -WITH_LIBDVDNAV= yes -.endif +#.if exists(${LOCALBASE}/lib/libdvdnav.so.3) +#WITH_LIBDVDNAV= yes +#.endif .if exists(${LOCALBASE}/lib/libungif.so.5) WITH_LIBUNGIF= yes @@ -369,13 +371,13 @@ LIB_DEPENDS+= dvdcss.2:${PORTSDIR}/multimedia/libdvdcss .else LIB_DEPENDS+= dvdread.3:${PORTSDIR}/multimedia/libdvdread .endif -.if defined(WITH_LIBDVDNAV) -LIB_DEPENDS+= dvdnav.3:${PORTSDIR}/multimedia/libdvdnav +#.if defined(WITH_LIBDVDNAV) +#LIB_DEPENDS+= dvdnav.3:${PORTSDIR}/multimedia/libdvdnav -CONFIGURE_ARGS+= --enable-dvdnav -.else -CONFIGURE_ARGS+= --disable-dvdnav -.endif +#CONFIGURE_ARGS+= --enable-dvdnav +#.else +#CONFIGURE_ARGS+= --disable-dvdnav +#.endif CONFIGURE_ARGS+= --enable-css \ --with-csslibdir=${LOCALBASE}/lib |