Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 13 Sep 2015 16:16:33 +0000 (UTC)
From:      Koop Mast <kwm@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r396833 - head/multimedia/mpeg4ip
Message-ID:  <201509131616.t8DGGXeE044367@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kwm
Date: Sun Sep 13 16:16:32 2015
New Revision: 396833
URL: https://svnweb.freebsd.org/changeset/ports/396833

Log:
  Replace HAVE_GNOME based check for esound with a exists() based one.

Modified:
  head/multimedia/mpeg4ip/Makefile

Modified: head/multimedia/mpeg4ip/Makefile
==============================================================================
--- head/multimedia/mpeg4ip/Makefile	Sun Sep 13 14:57:10 2015	(r396832)
+++ head/multimedia/mpeg4ip/Makefile	Sun Sep 13 16:16:32 2015	(r396833)
@@ -51,7 +51,7 @@ PORTDOCS=	MAINREADME.html MP4LIVE_INTERN
 ## Auto detect possible extensions
 ###
 # esound
-.if ${HAVE_GNOME:Mesound}!="" && empty(PORT_OPTIONS:MESOUND)
+.if exists(${LOCALBASE}/bin/esd-config) && empty(PORT_OPTIONS:MESOUND)
 PORT_OPTIONS+=	ESOUND
 .endif
 # nas



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201509131616.t8DGGXeE044367>