diff options
author | Norikatsu Shigemura <nork@FreeBSD.org> | 2003-04-25 13:28:41 +0000 |
---|---|---|
committer | Norikatsu Shigemura <nork@FreeBSD.org> | 2003-04-25 13:28:41 +0000 |
commit | 0344a0d33da5264a62ae8b5db88fc3bfc7803cf9 (patch) | |
tree | 3ec4ee078e8e51e746ee6c6943bf39914b7442b4 | |
parent | 836b6b1abc1d00d718d66b0eef3400d76bfc6662 (diff) | |
download | ports-0344a0d33da5264a62ae8b5db88fc3bfc7803cf9.tar.gz ports-0344a0d33da5264a62ae8b5db88fc3bfc7803cf9.zip |
Notes
-rw-r--r-- | multimedia/mplayer/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/multimedia/mplayer/Makefile b/multimedia/mplayer/Makefile index 5856bf899b0a..f22fbf382ce3 100644 --- a/multimedia/mplayer/Makefile +++ b/multimedia/mplayer/Makefile @@ -106,8 +106,12 @@ # WITH_SVGALIB # default: autodetect # +# WITH_AALIB +# default: autodetect +# # WITH_SDL # default: autodetect +# (implies WITH_AALIB) # # WITH_ESOUND # default: autodetect @@ -149,6 +153,7 @@ PORTNAME= mplayer PORTVERSION= 0.90.0.110 +PORTREVISION= 1 CATEGORIES= multimedia audio ipv6 MASTER_SITES= http://www1.mplayerhq.hu/MPlayer/releases/ \ http://www2.mplayerhq.hu/MPlayer/releases/ \ @@ -231,8 +236,13 @@ WITH_MAD= yes WITH_SVGALIB= yes .endif +.if exists(${LOCALBASE}/lib/libaa.so.1) +WITH_AALIB= yes +.endif + .if exists(${LOCALBASE}/lib/libSDL-1.1.so.5) WITH_SDL= yes +WITH_AALIB= yes .endif .if ${HAVE_GNOME:Mesound}!="" @@ -346,6 +356,10 @@ CONFIGURE_ARGS+= --disable-mad LIB_DEPENDS+= vga.1:${PORTSDIR}/graphics/svgalib .endif +.if defined(WITH_AALIB) +LIB_DEPENDS+= aa.1:${PORTSDIR}/graphics/aalib +.endif + .if defined(WITH_SDL) LIB_DEPENDS+= SDL-1.1.5:${PORTSDIR}/devel/sdl12 .endif @@ -425,6 +439,9 @@ CONFIGURE_ARGS+=--disable-mmx2 --disable-sse .if !defined(WITH_SVGALIB) CONFIGURE_ARGS+=--disable-svga .endif +.if !defined(WITH_AALIB) +CONFIGURE_ARGS+=--disable-aa +.endif .if !defined(WITH_SDL) CONFIGURE_ARGS+=--disable-sdl .endif |