diff options
author | naddy <naddy@FreeBSD.org> | 2006-08-08 01:20:16 +0800 |
---|---|---|
committer | naddy <naddy@FreeBSD.org> | 2006-08-08 01:20:16 +0800 |
commit | 1ba754fb0571c07f65ef696a271f0324d5a66339 (patch) | |
tree | a902f16db4545d78109b789c0793f50ac979cb86 /audio | |
parent | 437a1c53ecd817ace88e009464c703448aee8f11 (diff) | |
download | freebsd-ports-gnome-1ba754fb0571c07f65ef696a271f0324d5a66339.tar.gz freebsd-ports-gnome-1ba754fb0571c07f65ef696a271f0324d5a66339.tar.zst freebsd-ports-gnome-1ba754fb0571c07f65ef696a271f0324d5a66339.zip |
Don't clobber LIB_DEPENDS if several WITH_* options are set.
PR: 101469
Submitted by: jacula@gmail.com
Diffstat (limited to 'audio')
-rw-r--r-- | audio/libao/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/audio/libao/Makefile b/audio/libao/Makefile index 3fb93b3855c3..aaed0cd66781 100644 --- a/audio/libao/Makefile +++ b/audio/libao/Makefile @@ -7,7 +7,7 @@ PORTNAME= libao PORTVERSION= 0.8.5 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio MASTER_SITES= http://www.xiph.org/ao/src/ @@ -28,7 +28,7 @@ MAKE_ENV= DOC=doc MAN5= libao.conf.5 .if defined(WITH_ARTS) -LIB_DEPENDS= artsc.0:${PORTSDIR}/audio/arts +LIB_DEPENDS+= artsc.0:${PORTSDIR}/audio/arts PLIST_SUB+= ARTS="" .else CONFIGURE_ARGS+= --disable-arts @@ -38,7 +38,7 @@ pre-everything:: .endif .if defined(WITH_NAS) -LIB_DEPENDS= audio.2:${PORTSDIR}/audio/nas +LIB_DEPENDS+= audio.2:${PORTSDIR}/audio/nas PLIST_SUB+= NAS="" .else CONFIGURE_ARGS+= --disable-nas |