Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 6 Jun 2008 03:00:21 +0900
From:      KATO Tsuguru <tkato432@yahoo.com>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/124309: Update port: audio/snd to 9.10
Message-ID:  <20080606030021.185b1714.tkato432@yahoo.com>
Resent-Message-ID: <200806051810.m55IA24I071590@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         124309
>Category:       ports
>Synopsis:       Update port: audio/snd to 9.10
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Thu Jun 05 18:10:02 UTC 2008
>Closed-Date:
>Last-Modified:
>Originator:     KATO Tsuguru
>Release:        FreeBSD 6.3-RELEASE-p2 i386
>Organization:
>Environment:
>Description:
- Update to version 9.10

New file:
pkg-plist

Remove file:
files/patch-configure
files/patch-sndplay_c

>How-To-Repeat:
>Fix:

diff -urN /usr/ports/audio/snd/Makefile audio/snd/Makefile
--- /usr/ports/audio/snd/Makefile	2008-04-20 10:10:39.000000000 +0900
+++ audio/snd/Makefile	2008-06-03 23:15:42.000000000 +0900
@@ -5,170 +5,143 @@
 # $FreeBSD: ports/audio/snd/Makefile,v 1.60 2008/04/19 17:46:34 miwi Exp $
 #
 
-PORTNAME=		snd
-PORTVERSION=		7.8
-PORTREVISION=		10
-CATEGORIES=		audio
-MASTER_SITES=		SF
-
-MAINTAINER=		ports@FreeBSD.org
-COMMENT=		Multitracking sound editor and utilities
-
-LIB_DEPENDS=		gsl.12:${PORTSDIR}/math/gsl
-
-ALL_TARGET=		audinfo snd sndinfo sndplay sndrecord sndsine
-CONFIGURE_ARGS=		--with-float-samples \
-			--with-multifile
-CONFIGURE_ENV=	LDFLAGS="-L${LOCALBASE}/lib" \
-		CFLAGS="${CFLAGS}"
+PORTNAME=	snd
+PORTVERSION=	9.10
+CATEGORIES=	audio
+MASTER_SITES=	SF
+
+MAINTAINER=	ports@FreeBSD.org
+COMMENT=	Multitracking sound editor and utilities
+
+
+OPTIONS=	ESD	"Use Enlightened Sound Daemon"		on  \
+		FFTW3	"Use FFTW"				on  \
+		GSL	"Use GNU Scientific Library"		on  \
+		GUILE	"Use Guile as the extension language"	on  \
+		LADSPA	"Include support for LADSPA plugins"	on  \
+		NLS	"Native Language Support"		on  \
+		RUBY	"Use Ruby as the extension language"	off \
+		X11	"Make Snd with Gtk+ graphics support"	on
+
+USE_GNOME=	gnometarget
 GNU_CONFIGURE=	yes
-MAKE_ENV=	LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" \
-		CFLAGS="${CFLAGS} ${PTHREAD_CFLAGS}"
+CONFIGURE_ENV=	CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
+CONFIGURE_ARGS=	--with-float-samples
 MAKEFILE=	makefile
+ALL_TARGET=	audinfo snd snd-info sndplay sndrecord
 
 MAN1=		snd.1
 
-OPTIONS=	ESD		"output through enlightened sound daemon" on \
-		GUILE		"use Guile" on \
-		RUBY		"use Ruby as the extension language" on \
-		NLS             "Native Language Support"       on
-
-PLIST=		${WRKDIR}/plist
-PLIST_FILES=	share/examples/snd/DotEmacs
-PLIST_DIRS=	share/examples/snd
-WRKSRC=		${WRKDIR}/snd-7
+CFLAGS+=	-I${LOCALBASE}/include
+CPPFLAGS=	-I${LOCALBASE}/include
+LDFLAGS=	-L${LOCALBASE}/lib
 
-.if !defined(NOPORTDOCS)
-PLIST_FILES+=	share/doc/snd/tutorial/files/.snd \
-		share/doc/snd/tutorial/files/misc.scm.txt \
-		share/doc/snd/tutorial/files/misc.scm.txt~ \
-		share/doc/snd/tutorial/README \
-		share/doc/snd/tutorial/1_intro_and_build_snd.html~
-.endif
+.include <bsd.port.pre.mk>
 
-.if defined(WITHOUT_X11)
-CONFIGURE_ARGS+=	--with-no-gui
-.else
-CONFIGURE_ARGS+=	--with-gtk \
-			--with-gtkrc-colors \
-			--with-float-samples
-USE_GNOME=	gtk20
-USE_XORG=	x11
+.if ${ARCH} == "sparc64"
+BROKEN=		does not compile on sparc64
 .endif
 
-.include <bsd.port.pre.mk>
-
 .if !defined(WITHOUT_ESD)
+USE_GNOME+=	esound
 CONFIGURE_ARGS+=	--with-esd
-RUN_DEPENDS+=		esd:${PORTSDIR}/audio/esound
 .endif
 
-.if !defined(WITHOUT_RUBY)
-CONFIGURE_ARGS+=	--with-ruby
-RUN_DEPENDS+=		ruby:${PORTSDIR}/lang/ruby18
+.if !defined(WITHOUT_FFTW3)
+LIB_DEPENDS+=	fftw3.4:${PORTSDIR}/math/fftw3
+.else
+CONFIGURE_ARGS+=	--without-fftw
 .endif
 
-.if !defined(WITHOUT_GUILE)
-LIB_DEPENDS+=		guile.18:${PORTSDIR}/lang/guile
-.if !defined(WITHOUT_X11)
-LIB_DEPENDS+=		guilegtk-1.2:${PORTSDIR}/x11-toolkits/guile-gtk
+.if !defined(WITHOUT_GSL)
+LIB_DEPENDS+=	gsl.12:${PORTSDIR}/math/gsl
+.else
+CONFIGURE_ARGS+=	--without-gsl
 .endif
+
+.if !defined(WITHOUT_GUILE)
+LIB_DEPENDS+=	guile.18:${PORTSDIR}/lang/guile
+PLIST_SUB+=	GUILE=""
 .else
 CONFIGURE_ARGS+=	--without-guile
+PLIST_SUB+=	GUILE="@comment "
+.endif
+
+.if !defined(WITHOUT_LADSPA)
+BUILD_DEPENDS+=	${LOCALBASE}/include/ladspa.h:${PORTSDIR}/audio/ladspa
+RUN_DEPENDS+=	${LOCALBASE}/include/ladspa.h:${PORTSDIR}/audio/ladspa
+.else
+CONFIGURE_ARGS+=	--without-ladspa
 .endif
 
 .if !defined(WITHOUT_NLS)
 USE_GETTEXT=	yes
-PLIST_FILES+=	share/locale/de/LC_MESSAGES/snd.mo
+PLIST_SUB+=	NLS=""
 .else
-CONFIGURE_ARGS+=--disable-nls
+CONFIGURE_ARGS+=	--disable-nls
+PLIST_SUB+=	NLS="@comment "
 .endif
 
-.if ${ARCH} == "sparc64"
-BROKEN=		does not compile on sparc64
+.if defined(WITH_RUBY)
+USE_RUBY=	yes
+.include "${PORTSDIR}/Mk/bsd.ruby.mk"
+CONFIGURE_ARGS+=	--with-ruby
 .endif
 
-post-build:
-	${MV} ${WRKSRC}/sndinfo ${WRKSRC}/snd-info
-
-pre-install:
-	@${ECHO_CMD} "" > ${PLIST}
-.if !defined(WITHOUT_X11)
-	${ECHO_CMD} lib/X11/app-defaults/Snd.ad >> ${PLIST}
-	${ECHO_CMD} share/examples/snd/Snd.gtkrc >> ${PLIST}
+.if defined(WITHOUT_X11)
+CONFIGURE_ARGS+=	--with-no-gui                                   
+PLIST_SUB+=	X11="@comment "
+.else
+USE_GNOME+=	gtk20
+CONFIGURE_ARGS+=	--with-gtk
+PLIST_SUB+=	X11=""
 .endif
-.for i in audinfo snd snd-info sndplay sndrecord sndsine
-	${ECHO_CMD} bin/${i} >> ${PLIST}
-.endfor
-.if !defined(NOPORTDOCS)
-.for i in COPYING HISTORY.Snd README.Snd TODO.Snd
-	${ECHO_CMD} share/doc/snd/${i} >> ${PLIST}
-.endfor
-	${FIND} ${WRKDIR} -name '*.html' | \
-		${SED} -e "s:^${WRKSRC}/:share/doc/snd/:g" >> ${PLIST}
-	${FIND} ${WRKDIR} -name '*.png' | \
-		${SED} -e "s:^${WRKSRC}/:share/doc/snd/:g" >> ${PLIST}
-	${FIND} ${WRKDIR} -name '*.jpg' | \
-		${SED} -e "s:^${WRKSRC}/:share/doc/snd/:g" >> ${PLIST}
-.for ii in	share/doc/snd/tutorial/images/jpg \
-		share/doc/snd/tutorial/images \
-		share/doc/snd/tutorial/files \
-		share/doc/snd/tutorial \
-		share/doc/snd
-	${ECHO_CMD} @dirrm ${ii} >> ${PLIST}
+
+post-patch:
+	@${REINPLACE_CMD} -e 's|^ _Complex| Vaiolate _Complex|g ; \
+		 s|-O2 -I|-I|g ; \
+		 s|LDFLAGS -ldl|LDFLAGS|g' ${WRKSRC}/configure
+.for i in makefile.in makefile.no-gettext
+	@${REINPLACE_CMD} -e 's|^sndinfo:|snd-info:|g ; \
+		 s|-o sndinfo|-o snd-info|g' ${WRKSRC}/${i}
 .endfor
-.endif
-.if !defined(WITHOUT_GUILE)
-	${FIND} ${WRKSRC} -name '*.scm' | \
-		${SED} -e "s:^${WRKSRC}/:share/snd/:g" >> ${PLIST}
-	${ECHO_CMD} "share/snd/dlp/README" >> ${PLIST}
-	${ECHO_CMD} "@dirrm share/snd/sndins/samples" >> ${PLIST}
-	${ECHO_CMD} "@dirrm share/snd/sndins" >> ${PLIST}
-	${ECHO_CMD} "@dirrm share/snd/tools" >> ${PLIST}
-	${ECHO_CMD} "@dirrm share/snd/dlp" >> ${PLIST}
-	${ECHO_CMD} "@dirrm share/snd" >> ${PLIST}
-.endif
 
 do-install:
-# Only "snd" is an X11 command.
-.for i in audinfo snd snd-info sndplay sndrecord sndsine
+.for i in audinfo snd snd-info sndplay sndrecord
 	${INSTALL_PROGRAM} ${WRKSRC}/${i} ${PREFIX}/bin
 .endfor
-	${INSTALL_MAN} ${WRKSRC}/snd.1 ${PREFIX}/man/man1/
+	${INSTALL_MAN} ${WRKSRC}/snd.1 ${MANPREFIX}/man/man1/
 .if !defined(WITHOUT_X11)
 	${INSTALL_DATA} ${WRKSRC}/Snd.ad ${PREFIX}/lib/X11/app-defaults/
 .endif
-.if !defined(NOPORTDOCS)
-	${MKDIR} ${DOCSDIR}
-.for i in COPYING HISTORY.Snd README.Snd TODO.Snd
-	${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
-.endfor
-.endif
-	${MKDIR} ${EXAMPLESDIR}
-	${INSTALL_DATA} ${WRKSRC}/DotEmacs ${EXAMPLESDIR}
-.if !defined(WITHOUT_X11)
-	${INSTALL_DATA} ${WRKSRC}/Snd.gtkrc ${EXAMPLESDIR}
-.endif
 .if !defined(WITHOUT_NLS)
 	${INSTALL_DATA} ${WRKSRC}/po/de.gmo \
 		${PREFIX}/share/locale/de/LC_MESSAGES/snd.mo
 .endif
-.if !defined(NOPORTDOCS)
-	${INSTALL_DATA} ${WRKSRC}/*.html ${DOCSDIR}
-	${INSTALL_DATA} ${WRKSRC}/*.png ${DOCSDIR}
-	cd ${WRKSRC} && ${PAX} -r -w tutorial ${DOCSDIR}
-.endif
 .if !defined(WITHOUT_GUILE)
 	@${MKDIR} ${DATADIR}
-	@${MKDIR} ${DATADIR}/dlp
-	@${MKDIR} ${DATADIR}/tools
-	@${MKDIR} ${DATADIR}/sndins
-	@${MKDIR} ${DATADIR}/sndins/samples
 	${INSTALL_DATA} ${WRKSRC}/*.scm ${DATADIR}
-	${INSTALL_DATA} ${WRKSRC}/dlp/*.scm ${DATADIR}/dlp
-	${INSTALL_DATA} ${WRKSRC}/dlp/README ${DATADIR}/dlp
+	@${MKDIR} ${DATADIR}/tools
 	${INSTALL_DATA} ${WRKSRC}/tools/*.scm ${DATADIR}/tools
+	@${MKDIR} ${DATADIR}/sndins/samples
 	${INSTALL_DATA} ${WRKSRC}/sndins/samples/*.scm ${DATADIR}/sndins/samples
 .endif
+.if !defined(NOPORTDOCS)
+	@${MKDIR} ${DOCSDIR}
+.for i in HISTORY.Snd README.Snd TODO.Snd
+	${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
+.endfor
+	${INSTALL_DATA} ${WRKSRC}/*.html ${DOCSDIR}
+	@${MKDIR} ${DOCSDIR}/pix
+	${INSTALL_DATA} ${WRKSRC}/pix/*.png ${DOCSDIR}/pix
+	cd ${WRKSRC} && ${PAX} -r -w tutorial ${DOCSDIR}
+.endif
+.if !defined(NOPORTEXAMPLES)
+	@${MKDIR} ${EXAMPLESDIR}
+	${INSTALL_DATA} ${WRKSRC}/DotEmacs ${EXAMPLESDIR}
+.if !defined(WITHOUT_X11)
+	${INSTALL_DATA} ${WRKSRC}/Snd.gtkrc ${EXAMPLESDIR}
+.endif
+.endif
 
 .include <bsd.port.post.mk>
diff -urN /usr/ports/audio/snd/distinfo audio/snd/distinfo
--- /usr/ports/audio/snd/distinfo	2006-01-08 05:00:00.000000000 +0900
+++ audio/snd/distinfo	2008-06-03 22:56:38.000000000 +0900
@@ -1,3 +1,3 @@
-MD5 (snd-7.8.tar.gz) = 72a753939a99112b46372aa711ebc28c
-SHA256 (snd-7.8.tar.gz) = 31cd1f6069a7d9bd44461b6c608a590eccb959a17c1f870d16395d902110ffca
-SIZE (snd-7.8.tar.gz) = 5678123
+MD5 (snd-9.10.tar.gz) = f68fb83bb87625028b8e06bf098d13da
+SHA256 (snd-9.10.tar.gz) = 876023c368113d4145a319c683971cea909371ad2907f2eb20825c7b553469d5
+SIZE (snd-9.10.tar.gz) = 13363567
diff -urN /usr/ports/audio/snd/files/patch-configure audio/snd/files/patch-configure
--- /usr/ports/audio/snd/files/patch-configure	2007-07-31 08:52:14.000000000 +0900
+++ audio/snd/files/patch-configure	1970-01-01 09:00:00.000000000 +0900
@@ -1,11 +0,0 @@
---- configure.orig	2004-11-16 06:47:00.000000000 -0800
-+++ configure	2007-07-29 22:04:42.000000000 -0700
-@@ -8335,7 +8335,7 @@
- int
- main ()
- {
-- _Complex double val;
-+ volatile _Complex double val;
-                   val = ccosh(cacosh(1.5) / 100.0)
- 
-   ;
diff -urN /usr/ports/audio/snd/files/patch-snd-file_c audio/snd/files/patch-snd-file_c
--- /usr/ports/audio/snd/files/patch-snd-file_c	2000-10-09 03:53:47.000000000 +0900
+++ audio/snd/files/patch-snd-file_c	2008-04-27 02:22:58.000000000 +0900
@@ -1,8 +1,16 @@
---- snd-file.c.orig	Mon Sep 18 12:09:20 2000
-+++ snd-file.c	Fri Oct  6 17:34:16 2000
-@@ -1,3 +1,5 @@
-+#include <sys/param.h>
-+#include <sys/mount.h>
- #include "snd.h"
+--- snd-file.c.orig	2008-04-05 00:09:20.000000000 +0900
++++ snd-file.c	2008-04-27 02:22:44.000000000 +0900
+@@ -13,11 +13,11 @@
+   #include <sys/statvfs.h>
+ #endif
+ 
+-#if __bsdi__ || HAVE_SYS_PARAM_H
++#if __bsdi__ || __FreeBSD__ || HAVE_SYS_PARAM_H
+   #include <sys/param.h>
+ #endif
+ 
+-#if (HAVE_SYS_MOUNT_H && MUS_MAC_OSX) || __bsdi__ || MUS_NETBSD
++#if (HAVE_SYS_MOUNT_H && MUS_MAC_OSX) || __bsdi__ || __FreeBSD__ || MUS_NETBSD
+   #include <sys/mount.h>
+ #endif
  
- #if defined(NEXT) || defined(HAVE_SYS_DIR_H)
diff -urN /usr/ports/audio/snd/files/patch-sndplay_c audio/snd/files/patch-sndplay_c
--- /usr/ports/audio/snd/files/patch-sndplay_c	2000-10-09 03:53:47.000000000 +0900
+++ audio/snd/files/patch-sndplay_c	1970-01-01 09:00:00.000000000 +0900
@@ -1,10 +0,0 @@
---- sndplay.c.orig	Mon Sep 18 12:09:42 2000
-+++ sndplay.c	Fri Oct  6 17:34:16 2000
-@@ -18,6 +18,7 @@
- #include <errno.h>
- 
- #include "sndlib.h"
-+#include "sndlib-strings.h"
- 
- #if MACOS
-   #include <console.h>
diff -urN /usr/ports/audio/snd/pkg-descr audio/snd/pkg-descr
--- /usr/ports/audio/snd/pkg-descr	2003-11-13 19:21:01.000000000 +0900
+++ audio/snd/pkg-descr	2008-06-03 22:34:29.000000000 +0900
@@ -1,7 +1,7 @@
 Snd is a sound editor modeled loosely after Emacs and an old, sorely-missed
 PDP-10 sound editor named Dpysnd.  It can accommodate any number of sounds,
 each with any number of channels, and can be customized and extended using
-guile and guile-gtk.  It is under LGPL.
+Guile, Ruby or Forth.  It is under LGPL.
 
 Included with it are some command-line utilities:
 - snd-info (note:  renamed from sndinfo, for this FreeBSD port) prints a
@@ -9,15 +9,5 @@
 - sndplay plays a sound file.
 - sndrecord records sound from a microphone.
 - audinfo describes the current state of the audio hardware.
-- sndsine writes a mono NeXT/Sun sound file of a 440 Hz sine wave.
 
-To build without the GUI, define WITHOUT_X11.  To build without the enhanced
-file-selection dialog, define WITHOUT_GTKEXTRA (this is implied by WITHOUT_X11).
-To omit support for the GUILE or Ruby languages, or the Enlightened Sound
-Daemon, define WITHOUT_GUILE, WITHOUT_RUBY or WITHOUT_ESD.
-
-Saving a selection from the Edit menu does not work.
-
-WWW:  http://www-ccrma.stanford.edu/software/snd/
-
-Trevor Johnson
+WWW: http://ccrma.stanford.edu/software/snd/
diff -urN /usr/ports/audio/snd/pkg-message audio/snd/pkg-message
--- /usr/ports/audio/snd/pkg-message	2002-01-18 04:26:22.000000000 +0900
+++ audio/snd/pkg-message	1970-01-01 09:00:00.000000000 +0900
@@ -1,3 +0,0 @@
-*** WARNING ***
-The sources for the snd package have not been
-thoroughly reviewed by the FreeBSD maintainer.
diff -urN /usr/ports/audio/snd/pkg-plist audio/snd/pkg-plist
--- /usr/ports/audio/snd/pkg-plist	1970-01-01 09:00:00.000000000 +0900
+++ audio/snd/pkg-plist	2008-06-03 23:22:06.000000000 +0900
@@ -0,0 +1,477 @@
+bin/audinfo
+bin/snd
+bin/snd-info
+bin/sndplay
+bin/sndrecord
+%%X11%%lib/X11/app-defaults/Snd.ad
+%%PORTDOCS%%%%DOCSDIR%%/HISTORY.Snd
+%%PORTDOCS%%%%DOCSDIR%%/README.Snd
+%%PORTDOCS%%%%DOCSDIR%%/TODO.Snd
+%%PORTDOCS%%%%DOCSDIR%%/extsnd.html
+%%PORTDOCS%%%%DOCSDIR%%/fm.html
+%%PORTDOCS%%%%DOCSDIR%%/grfsnd.html
+%%PORTDOCS%%%%DOCSDIR%%/index.html
+%%PORTDOCS%%%%DOCSDIR%%/libxm.html
+%%PORTDOCS%%%%DOCSDIR%%/pix/1f.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/2pole.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/4grfs.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/addamps.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/adjustable.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/am.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/ampenv1.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/ampenv2.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/ampenvspectrum.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/asyfm.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/asyfm1.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/asyfm2.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/bark.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/bessel.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/bgd.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/bggrad.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/blip.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/bongo.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/brownian.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/cascade.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/circle.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/click.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/comb.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/controls.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/coscolor.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/coscoscos.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/cosines.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/crosswave.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/d.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/early.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/editheader.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/edithistory.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/energy.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/env.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/envany.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/envs.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/errorwave.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/exptenvs.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fdbk.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fejer.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fftpop.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/ffts.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/firmant.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fm.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fm10.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fm20.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fm30.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmad1.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmad2.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmc63.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmcancel.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq1.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq10.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq11.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq12.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq13.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq14.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq15.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq16.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq17.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq18.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq19.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq20.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq21.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq22.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq23.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq24.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq25.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq26.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq27.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq28.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq29.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq3.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq30.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq31.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq32.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq33.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq34.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq35.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq36.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq37.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq38.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq39.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq4.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq40.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq41.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq42.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq43.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq44.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq45.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq46.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq47.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq48.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq49.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq5.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq50.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq51.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq52.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq53.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq54.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq55.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq56.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq57.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq58.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq59.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq6.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq7.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq8.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmeq9.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmradio.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/fmsweep.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/formant.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/frqenvspectrum.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/gain.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/gaussian-noise.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/golden.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/graphstyle.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/green.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/grid.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/hairy1.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/hairy2.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/hairy3.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/hairy4.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/hairy5.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/hairy6.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/hairy7.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/hfft.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/hotcolor.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/iir.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/interp1.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/interp2.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/intro.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/intro1.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/intro2.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/intro3.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/j0fm.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/j0j1.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/j0jfm.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/jackson.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/jacobi.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/jam.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/jetcolor.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/jprod.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/later.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/locsine.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/m5fm1.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/m5fm2.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/mark1.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/markpane.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/mix1.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/mix2.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/mixcmn.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/mixer.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/mixname.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/multifm.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/n.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/ncosfm.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/ncossweep.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/newbuttons.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/nkcos.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/noid2.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/noid3.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/noid4.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/noid5.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/note.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/nowgl.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/nrxy-r.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/nsinfm.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/open-dialog.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/orig-oboe.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/pad1.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/pluck.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/polyfm.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/polyshape.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/poussin.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/pqw.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/prefs.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/pulsefm.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/pyr.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/pyr03.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/pyr32.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/r2kfactcos.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/rand.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/randfm.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/randi.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/random.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/randomsins.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/randsq.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/randtri.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/rcos.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/redsamps.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/regions.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/repenv.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/rkbang.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/rksin.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/rmspk.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/roundinterp.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/s.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/samplesviacolormap.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/saveas.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/scanned.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sceq1.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sceq10.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sceq11.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sceq12.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sceq13.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sceq14.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sceq15.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sceq16.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sceq17.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sceq18.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sceq19.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sceq2.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sceq20.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sceq21.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sceq22.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sceq23.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sceq24.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sceq25.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sceq26.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sceq27.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sceq28.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sceq29.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sceq3.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sceq30.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sceq31.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sceq32.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sceq33.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sceq34.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sceq35.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sceq36.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sceq37.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sceq38.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sceq39.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sceq4.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sceq40.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sceq41.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sceq42.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sceq43.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sceq44.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sceq45.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sceq5.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sceq6.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sceq7.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sceq8.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sceq9.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/scldlog.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/selpop.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/shepard.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/simprec.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sin3.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sin30.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sin300.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sincube.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sinesummation.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/snd-gtkrc.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/snd-ls.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sndcmn.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sndosc.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sos.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/soundbox.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/split-noise.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/sqsq.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/srates.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/ssbam.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/ssbambank.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/stochastic.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/tanh1.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/tanh100.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/tanh3.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/title.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/toc-blank.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/toc-minus.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/toc-plus.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/tritri.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/uppergrf.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/usync.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/vardpy.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/varyphase.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/vf.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/voxspectrum.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/waver.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/waver2.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/waveshape.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/wavo.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/white-noise.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/wt.png
+%%PORTDOCS%%%%DOCSDIR%%/pix/zramp.png
+%%PORTDOCS%%%%DOCSDIR%%/quick.html
+%%PORTDOCS%%%%DOCSDIR%%/snd-contents.html
+%%PORTDOCS%%%%DOCSDIR%%/snd.html
+%%PORTDOCS%%%%DOCSDIR%%/snd1.html
+%%PORTDOCS%%%%DOCSDIR%%/sndclm.html
+%%PORTDOCS%%%%DOCSDIR%%/sndlib.html
+%%PORTDOCS%%%%DOCSDIR%%/sndscm.html
+%%PORTDOCS%%%%DOCSDIR%%/tutorial/1_intro_and_build_snd.html
+%%PORTDOCS%%%%DOCSDIR%%/tutorial/1_intro_and_build_snd.html~
+%%PORTDOCS%%%%DOCSDIR%%/tutorial/2_custom_snd.html
+%%PORTDOCS%%%%DOCSDIR%%/tutorial/3_editing_and_processing_snd.html
+%%PORTDOCS%%%%DOCSDIR%%/tutorial/4_advanced_snd.html
+%%PORTDOCS%%%%DOCSDIR%%/tutorial/5_close_snd.html
+%%PORTDOCS%%%%DOCSDIR%%/tutorial/6_resources.html
+%%PORTDOCS%%%%DOCSDIR%%/tutorial/README
+%%PORTDOCS%%%%DOCSDIR%%/tutorial/files/.snd
+%%PORTDOCS%%%%DOCSDIR%%/tutorial/files/misc.scm.txt
+%%PORTDOCS%%%%DOCSDIR%%/tutorial/files/misc.scm.txt~
+%%PORTDOCS%%%%DOCSDIR%%/tutorial/images/jpg/1_01-ce2000.jpg
+%%PORTDOCS%%%%DOCSDIR%%/tutorial/images/jpg/1_02-snd_default_open.jpg
+%%PORTDOCS%%%%DOCSDIR%%/tutorial/images/jpg/2_01-snd_notebook.jpg
+%%PORTDOCS%%%%DOCSDIR%%/tutorial/images/jpg/2_02-snd_separate.jpg
+%%PORTDOCS%%%%DOCSDIR%%/tutorial/images/jpg/2_03-snd_horizontal.jpg
+%%PORTDOCS%%%%DOCSDIR%%/tutorial/images/jpg/2_04-snd_full_defined.jpg
+%%PORTDOCS%%%%DOCSDIR%%/tutorial/images/jpg/3_01-snd_file_popup.jpg
+%%PORTDOCS%%%%DOCSDIR%%/tutorial/images/jpg/3_02-snd_regions.jpg
+%%PORTDOCS%%%%DOCSDIR%%/tutorial/images/jpg/3_03-snd_mix.jpg
+%%PORTDOCS%%%%DOCSDIR%%/tutorial/images/jpg/3_04-snd_hidden_controls.jpg
+%%PORTDOCS%%%%DOCSDIR%%/tutorial/images/jpg/3_05-snd_enved.jpg
+%%PORTDOCS%%%%DOCSDIR%%/tutorial/images/jpg/3_06-snd_fft_popup.jpg
+%%PORTDOCS%%%%DOCSDIR%%/tutorial/images/jpg/3_07-snd_recorder.jpg
+%%PORTDOCS%%%%DOCSDIR%%/tutorial/images/jpg/4_01-snd_pan_env.jpg
+%%PORTDOCS%%%%DOCSDIR%%/xen.html
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/DotEmacs
+%%X11%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Snd.gtkrc
+%%NLS%%share/locale/de/LC_MESSAGES/snd.mo
+%%GUILE%%%%DATADIR%%/analog-filter.scm
+%%GUILE%%%%DATADIR%%/animals.scm
+%%GUILE%%%%DATADIR%%/autosave.scm
+%%GUILE%%%%DATADIR%%/bess.scm
+%%GUILE%%%%DATADIR%%/bess1.scm
+%%GUILE%%%%DATADIR%%/bird.scm
+%%GUILE%%%%DATADIR%%/clean.scm
+%%GUILE%%%%DATADIR%%/clm-ins.scm
+%%GUILE%%%%DATADIR%%/clm23.scm
+%%GUILE%%%%DATADIR%%/debug.scm
+%%GUILE%%%%DATADIR%%/dlocsig.scm
+%%GUILE%%%%DATADIR%%/draw.scm
+%%GUILE%%%%DATADIR%%/dsp.scm
+%%GUILE%%%%DATADIR%%/edit-menu.scm
+%%GUILE%%%%DATADIR%%/edit123.scm
+%%GUILE%%%%DATADIR%%/effects-utils.scm
+%%GUILE%%%%DATADIR%%/env.scm
+%%GUILE%%%%DATADIR%%/enved.scm
+%%GUILE%%%%DATADIR%%/eval-c.scm
+%%GUILE%%%%DATADIR%%/event.scm
+%%GUILE%%%%DATADIR%%/examp.scm
+%%GUILE%%%%DATADIR%%/export-all.scm
+%%GUILE%%%%DATADIR%%/extensions.scm
+%%GUILE%%%%DATADIR%%/fade.scm
+%%GUILE%%%%DATADIR%%/fft-menu.scm
+%%GUILE%%%%DATADIR%%/fix-optargs.scm
+%%GUILE%%%%DATADIR%%/fmv.scm
+%%GUILE%%%%DATADIR%%/frame.scm
+%%GUILE%%%%DATADIR%%/freeverb.scm
+%%GUILE%%%%DATADIR%%/gauche-format.scm
+%%GUILE%%%%DATADIR%%/gauche-optargs.scm
+%%GUILE%%%%DATADIR%%/generators.scm
+%%GUILE%%%%DATADIR%%/grani.scm
+%%GUILE%%%%DATADIR%%/gtk-effects-utils.scm
+%%GUILE%%%%DATADIR%%/gtk-effects.scm
+%%GUILE%%%%DATADIR%%/gtk-popup.scm
+%%GUILE%%%%DATADIR%%/gui.scm
+%%GUILE%%%%DATADIR%%/hooks.scm
+%%GUILE%%%%DATADIR%%/index.scm
+%%GUILE%%%%DATADIR%%/jcrev.scm
+%%GUILE%%%%DATADIR%%/kmenu.scm
+%%GUILE%%%%DATADIR%%/ladspa-help.scm
+%%GUILE%%%%DATADIR%%/ladspa.scm
+%%GUILE%%%%DATADIR%%/maraca.scm
+%%GUILE%%%%DATADIR%%/marks-menu.scm
+%%GUILE%%%%DATADIR%%/marks.scm
+%%GUILE%%%%DATADIR%%/maxf.scm
+%%GUILE%%%%DATADIR%%/misc.scm
+%%GUILE%%%%DATADIR%%/mix.scm
+%%GUILE%%%%DATADIR%%/mixer.scm
+%%GUILE%%%%DATADIR%%/moog.scm
+%%GUILE%%%%DATADIR%%/musglyphs.scm
+%%GUILE%%%%DATADIR%%/nb.scm
+%%GUILE%%%%DATADIR%%/new-backgrounds.scm
+%%GUILE%%%%DATADIR%%/new-buttons.scm
+%%GUILE%%%%DATADIR%%/new-effects.scm
+%%GUILE%%%%DATADIR%%/noise.scm
+%%GUILE%%%%DATADIR%%/numerics.scm
+%%GUILE%%%%DATADIR%%/oo.scm
+%%GUILE%%%%DATADIR%%/oscope.scm
+%%GUILE%%%%DATADIR%%/panic.scm
+%%GUILE%%%%DATADIR%%/pd-add.scm
+%%GUILE%%%%DATADIR%%/pd-any.scm
+%%GUILE%%%%DATADIR%%/pd-fm.scm
+%%GUILE%%%%DATADIR%%/pd-global.scm
+%%GUILE%%%%DATADIR%%/pd-inout.scm
+%%GUILE%%%%DATADIR%%/pd-local.scm
+%%GUILE%%%%DATADIR%%/pd-mozilla.scm
+%%GUILE%%%%DATADIR%%/pd-send_receive.scm
+%%GUILE%%%%DATADIR%%/pd-stochastic.scm
+%%GUILE%%%%DATADIR%%/peak-env.scm
+%%GUILE%%%%DATADIR%%/peak-phases.scm
+%%GUILE%%%%DATADIR%%/piano.scm
+%%GUILE%%%%DATADIR%%/play.scm
+%%GUILE%%%%DATADIR%%/poly.scm
+%%GUILE%%%%DATADIR%%/popup.scm
+%%GUILE%%%%DATADIR%%/prc95.scm
+%%GUILE%%%%DATADIR%%/pvoc.scm
+%%GUILE%%%%DATADIR%%/rgb.scm
+%%GUILE%%%%DATADIR%%/rt-clm-ins.scm
+%%GUILE%%%%DATADIR%%/rt-compiler.scm
+%%GUILE%%%%DATADIR%%/rt-coroutines.scm
+%%GUILE%%%%DATADIR%%/rt-engine.scm
+%%GUILE%%%%DATADIR%%/rt-examples.scm
+%%GUILE%%%%DATADIR%%/rt-faust.scm
+%%GUILE%%%%DATADIR%%/rt-player.scm
+%%GUILE%%%%DATADIR%%/rt-stalin.scm
+%%GUILE%%%%DATADIR%%/rtio.scm
+%%GUILE%%%%DATADIR%%/rubber.scm
+%%GUILE%%%%DATADIR%%/selection.scm
+%%GUILE%%%%DATADIR%%/singer.scm
+%%GUILE%%%%DATADIR%%/snd-gl.scm
+%%GUILE%%%%DATADIR%%/snd-gtk.scm
+%%GUILE%%%%DATADIR%%/snd-hobbit.scm
+%%GUILE%%%%DATADIR%%/snd-motif.scm
+%%GUILE%%%%DATADIR%%/snd-test.scm
+%%GUILE%%%%DATADIR%%/snd4.scm
+%%GUILE%%%%DATADIR%%/snd5.scm
+%%GUILE%%%%DATADIR%%/snd6.scm
+%%GUILE%%%%DATADIR%%/snd7.scm
+%%GUILE%%%%DATADIR%%/snd8.scm
+%%GUILE%%%%DATADIR%%/snd9.scm
+%%GUILE%%%%DATADIR%%/snd_conffile.scm
+%%GUILE%%%%DATADIR%%/snddiff.scm
+%%GUILE%%%%DATADIR%%/sndins/samples/agn.scm
+%%GUILE%%%%DATADIR%%/sndins/samples/fmviolin.scm
+%%GUILE%%%%DATADIR%%/sndins/samples/ws_s.scm
+%%GUILE%%%%DATADIR%%/sndwarp.scm
+%%GUILE%%%%DATADIR%%/special-menu.scm
+%%GUILE%%%%DATADIR%%/spectr.scm
+%%GUILE%%%%DATADIR%%/spokenword.scm
+%%GUILE%%%%DATADIR%%/stochastic.scm
+%%GUILE%%%%DATADIR%%/strad.scm
+%%GUILE%%%%DATADIR%%/toolbar.scm
+%%GUILE%%%%DATADIR%%/tools/check-gtk.scm
+%%GUILE%%%%DATADIR%%/tools/check-help.scm
+%%GUILE%%%%DATADIR%%/tools/gldata.scm
+%%GUILE%%%%DATADIR%%/tools/lines.scm
+%%GUILE%%%%DATADIR%%/tools/makegl.scm
+%%GUILE%%%%DATADIR%%/tools/makexg.scm
+%%GUILE%%%%DATADIR%%/tools/nor.scm
+%%GUILE%%%%DATADIR%%/tools/table.scm
+%%GUILE%%%%DATADIR%%/tools/va.scm
+%%GUILE%%%%DATADIR%%/tools/xgdata.scm
+%%GUILE%%%%DATADIR%%/v.scm
+%%GUILE%%%%DATADIR%%/ws.scm
+%%GUILE%%%%DATADIR%%/xm-enved.scm
+%%GUILE%%%%DATADIR%%/zip.scm
+%%GUILE%%@dirrm %%DATADIR%%/tools
+%%GUILE%%@dirrm %%DATADIR%%/sndins/samples
+%%GUILE%%@dirrm %%DATADIR%%/sndins
+%%GUILE%%@dirrm %%DATADIR%%
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%
+%%PORTDOCS%%@dirrm %%DOCSDIR%%/tutorial/images/jpg
+%%PORTDOCS%%@dirrm %%DOCSDIR%%/tutorial/images
+%%PORTDOCS%%@dirrm %%DOCSDIR%%/tutorial/files
+%%PORTDOCS%%@dirrm %%DOCSDIR%%/tutorial
+%%PORTDOCS%%@dirrm %%DOCSDIR%%/pix
+%%PORTDOCS%%@dirrm %%DOCSDIR%%
>Release-Note:
>Audit-Trail:
>Unformatted:



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