diff options
author | Andrew Pantyukhin <sat@FreeBSD.org> | 2006-05-15 19:54:51 +0000 |
---|---|---|
committer | Andrew Pantyukhin <sat@FreeBSD.org> | 2006-05-15 19:54:51 +0000 |
commit | 83c43eb764ccc67863313e0fa3d41a8cc33e35fa (patch) | |
tree | 72587e271eecd090a2687535c10dd6e8916fdf0a /multimedia | |
parent | 4a2c04eb156eab17411bd99e890bd68bc7b201f9 (diff) |
Notes
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/mplayer/Makefile | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/multimedia/mplayer/Makefile b/multimedia/mplayer/Makefile index e92d482acb35..074832feffcf 100644 --- a/multimedia/mplayer/Makefile +++ b/multimedia/mplayer/Makefile @@ -267,11 +267,15 @@ # This knob prevents the ports system from installing additional # documentation. If you define this, only the manpage is going # to be installed. +# +# WITHOUT_IPV6 +# default: undefined +# This knob disables mplayer's ipv6 protocol family capabilities. PORTNAME= mplayer PORTVERSION= 0.99.7 PORTREVISION= 14 -CATEGORIES= multimedia audio ipv6 +CATEGORIES= multimedia audio MASTER_SITES= http://www1.mplayerhq.hu/MPlayer/releases/ \ http://www2.mplayerhq.hu/MPlayer/releases/ \ http://ftp.lug.udel.edu/MPlayer/releases/ \ @@ -468,6 +472,8 @@ WITH_FREETYPE= yes # binary-suitable package or custom build .if defined(MPLAYER_GENERIC_BUILD) +#Generic build includes ipv6 on FreeBSD +CATEGORIES+= ipv6 #Compiler flags CFLAGS= #let mplayer decide on this CONFIGURE_ARGS+=--enable-runtime-cpudetection @@ -551,6 +557,12 @@ CONFIGURE_ARGS+= --enable-debug CFLAGS+= -O3 -ffast-math -fomit-frame-pointer .endif +.if defined(WITHOUT_IPV6) +CONFIGURE_ARGS+= --disable-inet6 +.else +CATEGORIES+= ipv6 +.endif + .if ${HAVE_GNOME:Mgtk12}!="" && !defined(WITH_GTK2) && !defined(WITHOUT_GUI) WITH_GTK1= yes .endif |