aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormiwi <miwi@FreeBSD.org>2008-06-06 06:31:13 +0800
committermiwi <miwi@FreeBSD.org>2008-06-06 06:31:13 +0800
commitb5882a7d0eda22d1b872f560807c3cd4256db65e (patch)
tree2b4e3e7f6cda549ea7ba1f26e20e8045b323edfe
parente358b1be543a25201b2e6d2baa7927fd3c8c0f6a (diff)
downloadfreebsd-ports-gnome-b5882a7d0eda22d1b872f560807c3cd4256db65e.tar.gz
freebsd-ports-gnome-b5882a7d0eda22d1b872f560807c3cd4256db65e.tar.zst
freebsd-ports-gnome-b5882a7d0eda22d1b872f560807c3cd4256db65e.zip
- Update to 9.10
PR: 124309 Submitted by: Ports Fury
-rw-r--r--audio/snd/Makefile212
-rw-r--r--audio/snd/distinfo6
-rw-r--r--audio/snd/files/patch-configure11
-rw-r--r--audio/snd/files/patch-snd-file_c22
-rw-r--r--audio/snd/files/patch-sndplay_c10
-rw-r--r--audio/snd/pkg-descr14
-rw-r--r--audio/snd/pkg-message3
-rw-r--r--audio/snd/pkg-plist477
8 files changed, 589 insertions, 166 deletions
diff --git a/audio/snd/Makefile b/audio/snd/Makefile
index 6ec9ab70b433..2a98fbf48057 100644
--- a/audio/snd/Makefile
+++ b/audio/snd/Makefile
@@ -5,170 +5,142 @@
# $FreeBSD$
#
-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
+CFLAGS+= -I${LOCALBASE}/include
+CPPFLAGS= -I${LOCALBASE}/include
+LDFLAGS= -L${LOCALBASE}/lib
-PLIST= ${WRKDIR}/plist
-PLIST_FILES= share/examples/snd/DotEmacs
-PLIST_DIRS= share/examples/snd
-WRKSRC= ${WRKDIR}/snd-7
-
-.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}
-.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}
+.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
+
+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 --git a/audio/snd/distinfo b/audio/snd/distinfo
index dbc9f37f8658..56b348b10a29 100644
--- a/audio/snd/distinfo
+++ b/audio/snd/distinfo
@@ -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 --git a/audio/snd/files/patch-configure b/audio/snd/files/patch-configure
deleted file mode 100644
index c995cd77b755..000000000000
--- a/audio/snd/files/patch-configure
+++ /dev/null
@@ -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 --git a/audio/snd/files/patch-snd-file_c b/audio/snd/files/patch-snd-file_c
index 3e0f43f50fe3..67894a800a75 100644
--- a/audio/snd/files/patch-snd-file_c
+++ b/audio/snd/files/patch-snd-file_c
@@ -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 --git a/audio/snd/files/patch-sndplay_c b/audio/snd/files/patch-sndplay_c
deleted file mode 100644
index 66b7e371073a..000000000000
--- a/audio/snd/files/patch-sndplay_c
+++ /dev/null
@@ -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 --git a/audio/snd/pkg-descr b/audio/snd/pkg-descr
index 141c3aeeb156..d7b4092a07f6 100644
--- a/audio/snd/pkg-descr
+++ b/audio/snd/pkg-descr
@@ -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 @@ Included with it are some command-line utilities:
- 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 --git a/audio/snd/pkg-message b/audio/snd/pkg-message
deleted file mode 100644
index f185024867ac..000000000000
--- a/audio/snd/pkg-message
+++ /dev/null
@@ -1,3 +0,0 @@
-*** WARNING ***
-The sources for the snd package have not been
-thoroughly reviewed by the FreeBSD maintainer.
diff --git a/audio/snd/pkg-plist b/audio/snd/pkg-plist
new file mode 100644
index 000000000000..1009142fb791
--- /dev/null
+++ b/audio/snd/pkg-plist
@@ -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%%