aboutsummaryrefslogtreecommitdiffstats
path: root/multimedia
diff options
context:
space:
mode:
authoroliver <oliver@FreeBSD.org>2008-08-22 04:01:31 +0800
committeroliver <oliver@FreeBSD.org>2008-08-22 04:01:31 +0800
commit1743c0348054e4e83baa8c77d66097d0c16e1b24 (patch)
treeddebdcc77c5d2a616bd53d8c49780f48335d0ae7 /multimedia
parentdcd51ecfeadb68e24f2d23d7265efbc142de896f (diff)
downloadfreebsd-ports-gnome-1743c0348054e4e83baa8c77d66097d0c16e1b24.tar.gz
freebsd-ports-gnome-1743c0348054e4e83baa8c77d66097d0c16e1b24.tar.zst
freebsd-ports-gnome-1743c0348054e4e83baa8c77d66097d0c16e1b24.zip
use neon28 instead of neon26 which is deprecated. neon26 gets only used,
if neon26 is already installed (to prevent neon conflicting) PR: 126702 Submitted by: "Josh Paetzel" <josh@tcbug.org>
Diffstat (limited to 'multimedia')
-rw-r--r--multimedia/audacious-plugins/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/multimedia/audacious-plugins/Makefile b/multimedia/audacious-plugins/Makefile
index 6f06db03b45d..9f16adbfeddf 100644
--- a/multimedia/audacious-plugins/Makefile
+++ b/multimedia/audacious-plugins/Makefile
@@ -310,7 +310,11 @@ PLIST_SUB+= PARANORMALPLUGIN="@comment "
.endif
.if !defined(WITHOUT_NEON)
-LIB_DEPENDS+= neon.26:${PORTSDIR}/www/neon26
+.if exists(${LOCALBASE}/lib/libneon.so.26)
+LIB_DEPENDS+= neon.26:${PORTSDIR}/www/neon26
+.else
+LIB_DEPENDS+= neon.28:${PORTSDIR}/www/neon28
+.endif
CONFIGURE_ARGS+=--enable-neon
PLIST_SUB+= NEONPLUGIN=""
.else