pkgsrc-Changes archive

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

CVS commit: pkgsrc/audio/freeswitch-music



Module Name:    pkgsrc
Committed By:   rillig
Date:           Sat Jul  9 11:41:57 UTC 2016

Modified Files:
        pkgsrc/audio/freeswitch-music: Makefile options.mk

Log Message:
Fixed some pkglint warnings.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 pkgsrc/audio/freeswitch-music/Makefile
cvs rdiff -u -r1.4 -r1.5 pkgsrc/audio/freeswitch-music/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/freeswitch-music/Makefile
diff -u pkgsrc/audio/freeswitch-music/Makefile:1.1 pkgsrc/audio/freeswitch-music/Makefile:1.2
--- pkgsrc/audio/freeswitch-music/Makefile:1.1  Sat Oct 20 12:21:39 2012
+++ pkgsrc/audio/freeswitch-music/Makefile      Sat Jul  9 11:41:57 2016
@@ -1,17 +1,17 @@
-# $NetBSD: Makefile,v 1.1 2012/10/20 12:21:39 darcy Exp $
+# $NetBSD: Makefile,v 1.2 2016/07/09 11:41:57 rillig Exp $
 
 DISTNAME=      freeswitch-music-1.0.8
 CATEGORIES=    audio
 MASTER_SITES=  http://files.freeswitch.org/
-EXTRACT_SUFX=  .tar.bz2
 DIST_SUBDIR=   freeswitch
+EXTRACT_SUFX=  .tar.bz2
 
 MAINTAINER=    darcy%NetBSD.org@localhost
 COMMENT=       FreeSwitch Music - All Bitrates
 LICENSE=       mpl-1.1
 
 MUSICDIR=      share/freeswitch/sounds/music
-PLIST_SUBST += MUSICDIR="${MUSICDIR}"
+PLIST_SUBST+=  MUSICDIR="${MUSICDIR}"
 NO_BUILD=      yes
 
 pre-install:

Index: pkgsrc/audio/freeswitch-music/options.mk
diff -u pkgsrc/audio/freeswitch-music/options.mk:1.4 pkgsrc/audio/freeswitch-music/options.mk:1.5
--- pkgsrc/audio/freeswitch-music/options.mk:1.4        Tue Dec 29 04:54:36 2015
+++ pkgsrc/audio/freeswitch-music/options.mk    Sat Jul  9 11:41:57 2016
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.4 2015/12/29 04:54:36 dholland Exp $
+# $NetBSD: options.mk,v 1.5 2016/07/09 11:41:57 rillig Exp $
 
 PKG_OPTIONS_VAR=       PKG_OPTIONS.freeswitch
 PKG_SUPPORTED_OPTIONS= freeswitch-08k freeswitch-16k freeswitch-32k freeswitch-48k
@@ -9,33 +9,33 @@ PKG_SUGGESTED_OPTIONS=        freeswitch-08k fr
 .if !empty(PKG_OPTIONS:Mfreeswitch-08k)
 DISTFILES+=    freeswitch-sounds-music-8000-1.0.8.tar.gz
 INSTALLATION_DIRS+= share/freeswitch/sounds/music/8000
-SOUND_DIRS+= 8000
+SOUND_DIRS+=   8000
 .endif
 
 .if !empty(PKG_OPTIONS:Mfreeswitch-16k)
 DISTFILES+=    freeswitch-sounds-music-16000-1.0.8.tar.gz
-SOUND_DIRS+= 16000
+SOUND_DIRS+=   16000
 INSTALLATION_DIRS+= share/freeswitch/sounds/music/16000
 .endif
 
 .if !empty(PKG_OPTIONS:Mfreeswitch-32k)
 DISTFILES+=    freeswitch-sounds-music-32000-1.0.8.tar.gz
-SOUND_DIRS+= 32000
+SOUND_DIRS+=   32000
 INSTALLATION_DIRS+= share/freeswitch/sounds/music/32000
 .endif
 
 .if !empty(PKG_OPTIONS:Mfreeswitch-48k)
 DISTFILES+=    freeswitch-sounds-music-48000-1.0.8.tar.gz
-SOUND_DIRS+= 48000
+SOUND_DIRS+=   48000
 INSTALLATION_DIRS+= share/freeswitch/sounds/music/48000
 .endif
 
 .for opt in ${PKG_SUPPORTED_OPTIONS}
-.if !empty(PKG_OPTIONS:M${opt})
-PLIST_SUBST+= ${opt}=""
-.else
-PLIST_SUBST+= ${opt}="@comment "
-.endif
+.  if !empty(PKG_OPTIONS:M${opt})
+PLIST_SUBST+=  ${opt}=""
+.  else
+PLIST_SUBST+=  ${opt}="@comment "
+.  endif
 .endfor
 
 PLIST_VARS+=   ${PKG_SUPPORTED_OPTIONS}



Home | Main Index | Thread Index | Old Index