Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 2 Jul 2017 14:21:23 +0000 (UTC)
From:      Emanuel Haupt <ehaupt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r444887 - head/audio/xmp
Message-ID:  <201707021421.v62ELNEV039369@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ehaupt
Date: Sun Jul  2 14:21:23 2017
New Revision: 444887
URL: https://svnweb.freebsd.org/changeset/ports/444887

Log:
  - Add option to enable the sndio backend
  - Add new OSS default option to be able to turn off the OSS backend
  - Use localbase USES flag
  
  PR:             220265
  Submitted by:   tobik

Modified:
  head/audio/xmp/Makefile

Modified: head/audio/xmp/Makefile
==============================================================================
--- head/audio/xmp/Makefile	Sun Jul  2 14:11:39 2017	(r444886)
+++ head/audio/xmp/Makefile	Sun Jul  2 14:21:23 2017	(r444887)
@@ -3,6 +3,7 @@
 
 PORTNAME=	xmp
 PORTVERSION=	4.1.0
+PORTREVISION=	1
 PORTEPOCH=	1
 CATEGORIES=	audio
 MASTER_SITES=	SF
@@ -14,28 +15,33 @@ LICENSE=	GPLv2
 
 LIB_DEPENDS=	libxmp.so:audio/libxmp
 
-USES=		pkgconfig gmake
+USES=		gmake localbase:ldflags pkgconfig
 WANT_GNOME=	yes
 GNU_CONFIGURE=	yes
 
 CONFIGURE_ARGS+=	--sysconfdir=${PREFIX}/etc
 
-CFLAGS+=	-I${LOCALBASE}/include
-LDFLAGS+=	-L${LOCALBASE}/lib
-
 CONFIG_FILES=	xmp.conf modules.conf
 
-OPTIONS_DEFINE=	ALSA PULSEAUDIO
+OPTIONS_DEFAULT=	OSS
+OPTIONS_DEFINE=	ALSA OSS PULSEAUDIO SNDIO
 
 ALSA_LIB_DEPENDS=	libasound.so:audio/alsa-lib
 ALSA_RUN_DEPENDS=	${LOCALBASE}/lib/alsa-lib/libasound_module_pcm_oss.so:audio/alsa-plugins
 ALSA_CONFIGURE_ENABLE=	alsa
 
+OSS_CONFIGURE_ENABLE=	oss
+
 PULSEAUDIO_LIB_DEPENDS=	libpulse-simple.so:audio/pulseaudio
 PULSEAUDIO_CONFIGURE_ENABLE=	pulseaudio
 
+SNDIO_LIB_DEPENDS=	libsndio.so:audio/sndio
+
 post-patch:
 	@${REINPLACE_CMD} -e 's|\ install-conf||' ${WRKSRC}/Makefile.in
+
+post-patch-SNDIO-on:
+	@${REINPLACE_CMD} -e 's|openbsd\*)|\*)|' ${WRKSRC}/configure
 
 post-install:
 	@${MKDIR} ${STAGEDIR}${ETCDIR}



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