diff options
author | flz <flz@FreeBSD.org> | 2005-04-14 21:56:47 +0800 |
---|---|---|
committer | flz <flz@FreeBSD.org> | 2005-04-14 21:56:47 +0800 |
commit | 482469c2e5532742f744e71b820a7780242b7cde (patch) | |
tree | b87208d94a21f86e713b275d260798e35424f603 /games/scummvm | |
parent | 9635737fe5f2bb216baeb1cf3f071b9164990289 (diff) | |
download | freebsd-ports-gnome-482469c2e5532742f744e71b820a7780242b7cde.tar.gz freebsd-ports-gnome-482469c2e5532742f744e71b820a7780242b7cde.tar.zst freebsd-ports-gnome-482469c2e5532742f744e71b820a7780242b7cde.zip |
- Force Vorbis dependency when Mpeg2 support is chosen.
PR: ports/76258
Submitted by: maintainer
Diffstat (limited to 'games/scummvm')
-rw-r--r-- | games/scummvm/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/games/scummvm/Makefile b/games/scummvm/Makefile index 21117a9a584c..1e8599d1efbf 100644 --- a/games/scummvm/Makefile +++ b/games/scummvm/Makefile @@ -7,11 +7,12 @@ PORTNAME= scummvm PORTVERSION= 0.7.0 +PORTREVISION= 1 CATEGORIES= games emulators MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} -MAINTAINER= alexander@trull.com +MAINTAINER= freebsd.alex@trull.org COMMENT= Graphical Adventure Game Virtual Machine USE_BZIP2= yes @@ -27,7 +28,7 @@ CONFIGURE_ARGS=--with-sdl-prefix=${LOCALBASE} \ OPTIONS= VORBIS "Enable Ogg Vorbis support" off \ MAD "Enable mad (MP3) support" on \ - MPEG2 "Enable MPEG2 support" off + MPEG2 "Enable MPEG2 support (implies VORBIS)" off MAN6= scummvm.6 @@ -52,6 +53,7 @@ CONFIGURE_ARGS+=--disable-mad .endif .if defined(WITH_MPEG2) +WITH_VORBIS= yes LIB_DEPENDS+= mpeg2.0:${PORTSDIR}/multimedia/libmpeg2 CONFIGURE_ARGS+=--with-mpeg2-prefix=${LOCALBASE} .else |