summaryrefslogtreecommitdiff
path: root/audio
diff options
context:
space:
mode:
authorAlexey Dokuchaev <danfe@FreeBSD.org>2010-05-27 16:18:14 +0000
committerAlexey Dokuchaev <danfe@FreeBSD.org>2010-05-27 16:18:14 +0000
commit73a78cbd4659844080c8ee3c766a070a3b818bcc (patch)
treecba86ff8ff63a603b47d1f3cec44671b8d5af1d9 /audio
parent- Check for correct library name of `sysutils/sg3_utils' port (diff)
- Fix the build against libmp4v2.so (it is built without GTK support by
default, which will result in HAVE_GTK macro be undefined, and gtkpod depends on it [*] - Correctly detect and record FAAC/FAAD runtime dependencies - Slightly improve on comment while here PR: ports/122639 [*] Submitted by: Kevin Oberman
Notes
Notes: svn path=/head/; revision=255184
Diffstat (limited to 'audio')
-rw-r--r--audio/gtkpod/Makefile11
1 files changed, 9 insertions, 2 deletions
diff --git a/audio/gtkpod/Makefile b/audio/gtkpod/Makefile
index 076ae08d4e99..fd83d30842ea 100644
--- a/audio/gtkpod/Makefile
+++ b/audio/gtkpod/Makefile
@@ -42,8 +42,15 @@ OPTIONS= MPEG4IP "Enable AAC and H.264 support with MPEG4IP" off \
.if defined(WITH_MPEG4IP) || exists(${LOCALBASE}/lib/libmp4v2.so)
LIB_DEPENDS+= mp4v2.0:${PORTSDIR}/multimedia/mpeg4ip-libmp4v2
-RUN_DEPENDS+= faac:${PORTSDIR}/audio/faac faad:${PORTSDIR}/audio/faad
+# Define HAVE_GTK to unbreak the build with libmp4v2.so (it is built
+# without Gtk support by default, which can result in gtkpod breakage)
+MAKE_ARGS+= CPPFLAGS="-DHAVE_GTK"
.endif
+.for x in faac faad
+. if exists(${LOCALBASE}/bin/${x})
+RUN_DEPENDS+= ${x}:${PORTSDIR}/audio/${x}
+. endif
+.endfor
.if defined(WITH_VORBIS) || exists(${LOCALBASE}/lib/libvorbis.so)
LIB_DEPENDS+= vorbis.4:${PORTSDIR}/audio/libvorbis
@@ -71,7 +78,7 @@ LIB_DEPENDS+= curl.6:${PORTSDIR}/ftp/curl
.endif
pre-configure: .SILENT
-# install locale correctly (share dir instead of lib dir)
+# Install locale files correctly (to share dir instead of lib dir)
${REINPLACE_CMD} -e 's|DATADIRNAME=lib|DATADIRNAME=share|' \
${WRKSRC}/configure