summaryrefslogtreecommitdiff
path: root/multimedia
diff options
context:
space:
mode:
authorNorikatsu Shigemura <nork@FreeBSD.org>2003-04-25 13:28:41 +0000
committerNorikatsu Shigemura <nork@FreeBSD.org>2003-04-25 13:28:41 +0000
commit0344a0d33da5264a62ae8b5db88fc3bfc7803cf9 (patch)
tree3ec4ee078e8e51e746ee6c6943bf39914b7442b4 /multimedia
parentUpdate to 0.62. (diff)
Fix a not complete clean dependency on aalib.
PR: ports/51403 Submitted by: Thomas E. Zander <riggs@rrr.de> (maintainer) Suggested by: Dennis Kj_r Jensen <signout@signout.dk>
Notes
Notes: svn path=/head/; revision=79634
Diffstat (limited to 'multimedia')
-rw-r--r--multimedia/mplayer/Makefile17
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