pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/audio/madplay



Module Name:    pkgsrc
Committed By:   nia
Date:           Mon Jan 20 21:29:07 UTC 2020

Modified Files:
        pkgsrc/audio/madplay: Makefile options.mk

Log Message:
madplay: Remove esound support; add alsa option.

Remove OSS option because it does absolutely nothing, OSS support
is autodetected if the OS supports it.

Bump PKGREVISION because this changes default options (on Linux only)


To generate a diff of this commit:
cvs rdiff -u -r1.39 -r1.40 pkgsrc/audio/madplay/Makefile
cvs rdiff -u -r1.3 -r1.4 pkgsrc/audio/madplay/options.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/audio/madplay/Makefile
diff -u pkgsrc/audio/madplay/Makefile:1.39 pkgsrc/audio/madplay/Makefile:1.40
--- pkgsrc/audio/madplay/Makefile:1.39  Wed Aug 16 20:21:04 2017
+++ pkgsrc/audio/madplay/Makefile       Mon Jan 20 21:29:07 2020
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.39 2017/08/16 20:21:04 wiz Exp $
+# $NetBSD: Makefile,v 1.40 2020/01/20 21:29:07 nia Exp $
 #
 
 DISTNAME=      madplay-0.15.2b
-PKGREVISION=   5
+PKGREVISION=   6
 CATEGORIES=    audio
 MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=mad/}
 

Index: pkgsrc/audio/madplay/options.mk
diff -u pkgsrc/audio/madplay/options.mk:1.3 pkgsrc/audio/madplay/options.mk:1.4
--- pkgsrc/audio/madplay/options.mk:1.3 Thu Feb 22 19:26:06 2007
+++ pkgsrc/audio/madplay/options.mk     Mon Jan 20 21:29:07 2020
@@ -1,16 +1,12 @@
-# $NetBSD: options.mk,v 1.3 2007/02/22 19:26:06 wiz Exp $
+# $NetBSD: options.mk,v 1.4 2020/01/20 21:29:07 nia Exp $
 
-PKG_OPTIONS_VAR=       PKG_OPTIONS.madplay
-PKG_SUPPORTED_OPTIONS= esound oss
+PKG_OPTIONS_VAR=               PKG_OPTIONS.madplay
+PKG_SUPPORTED_OPTIONS=         alsa
+PKG_SUGGESTED_OPTIONS.Linux=   alsa
 
 .include "../../mk/bsd.options.mk"
 
-.if !empty(PKG_OPTIONS:Mesound)
-.include "../../audio/esound/buildlink3.mk"
-.else
-CONFIGURE_ARGS+=       --without-esd
-.endif
-
-.if !empty(PKG_OPTIONS:Moss)
-.include "../../mk/oss.buildlink3.mk"
+.if !empty(PKG_OPTIONS:Malsa)
+CONFIGURE_ARGS+=       --with-alsa
+.include "../../audio/alsa-lib/buildlink3.mk"
 .endif



Home | Main Index | Thread Index | Old Index