svn commit: r396833 - head/multimedia/mpeg4ip

Koop Mast kwm at FreeBSD.org
Sun Sep 13 16:16:33 UTC 2015


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


More information about the svn-ports-all mailing list