summaryrefslogtreecommitdiff
path: root/audio
AgeCommit message (Collapse)AuthorFilesLines
2005-06-26Update to 0.09 Mon Apr 25 10:42:42 2005epg2-7/+6
- Added $mb->WSAInit(), $mb->WSAStop() calls to Simple.pm (Sourceforge #1157446) - Updated simple bindings to support release dates and amazon IDs [Matthias Friedrich]
2005-06-24Update to 12.17.7:wiz3-19/+9
o Christian Weisgerber sent patches to man page fixes and patches for sunaudio driver on openbsd. o Default volume for soxmix wrongly set to 0 instead of 1/#_input_files (float rounding error). o Update to ALSA driver to do a better job of detecting unsupported sample rate/size/encoding and change to a supported one. o Fix bug in alsa writing were last last partial buffer wasn't being flushed. o Guentcho Skordev pointed out ogg vorbis files were using the same value for serial numbers each time. o Changed sox to only read the exact size of a WAV data chunk if cooledit IFF LIST chunk is found at the end of the file. Normally, this isn't done to allow reading > 2gig WAV files. o Modified configure to detect cygwin compiler after detecting gcc compiler (fixes some default CFLAGS options). o Added explicit rule for compile *.o from *.c so that CPPFLAGS is always referenced. Not all platform's default rule includes CPPFLAGS (FreeBSD). o Under linux, add include path to /lib/modules/* so that ALSA include files can be auto detected. o Ian Turner added an effect to remove noise from an audio file by first profiling silent periods of the audio to determine what the noise is (like background hiss on cassette tapes).
2005-06-24Remove lang/libperl and modify packages that used libperl to dependjlam1-3/+4
instead on perl>=5.8.0. Bump the PKGREVISIONs of the following packages due to the possible perl dependency changes after the removal of libperl: audio/ices-mp3 databases/postgresql73-plperl databases/postgresql74-plperl textproc/eperl www/ap-perl
2005-06-23Updated xfce4-xmms-plugin to 0.3.1martti4-13/+22
* bug fixes
2005-06-19Prevent paths to the build directories from being included in the package.kristerw3-6/+16
Bump PKGREVISION.
2005-06-17Fix inappropriate uses of ${LOCALBASE} or ${X11PREFIX} instead ofjlam3-7/+7
${PREFIX}.
2005-06-16Fix typo that prevented this package to build on NetBSD.kristerw1-2/+2
2005-06-16Fix C99-isms to make this package compile with gcc 2.95.kristerw2-1/+21
2005-06-16Create directories before installing files into them.jlam47-47/+133
2005-06-14Fix C99-isms to make this package compile with gcc 2.95.kristerw2-1/+19
2005-06-08Convert to options framework.wiz2-9/+14
2005-06-06Copy files only when they exist.minskim1-1/+3
2005-06-06Fix the previous PKGREVISION bump by setting PKGREVISION in Makefile,minskim2-4/+3
instead of Makefile.common.
2005-06-06Replace patches that remove -ldl with those that use BUILDLINK_LDADD.dl.minskim4-8/+11
Bump PKGREVISION.
2005-06-04Update to version 1.7bmarkd6-46/+32
6/3/2005 1.7b (devel) - applied patch from 'Inma', correcting a connection hang in Solaris 9. This reworks some of the very old and primitive fd_set stuff in Aulibint.c . - updated config/config.sub and config.guess to properly detect DragonFly systems. - Applied patch from Mark Davies and Joerg Sonnenberger correcting some BSD issues and adding DragonFly support. Then nasd.conf man page is always installed in $FILEMANDIR for all systems. 4/10/2005 1.7a (devel) - applied patch from Mark Davies correcting audio/Imakefile to properly define BSD44SOCKETS on NetBSD systems. - Applied patch from Steve McIntyre correcting CYWIN -> CYGWIN typo in server/dda/voxware/auvoxware.c - applied patch from Steve McIntyre Correcting some Gcc 4.0 and AMD64 issues.
2005-06-04On Linux, libmikmod also dynamically loads esound support.wiz1-5/+4
Update conditional. Tested by reed@.
2005-06-03Use l: rather than rename: in the BUILDLINK_TRANSFORM as this is a librarymarkd1-2/+2
rename that we are doing.
2005-06-03Convert away from using USE_ESOUND.wiz1-2/+13
Also: On NetBSD, libmikmod dynamically loads esound, so there is no library dependency -- do not include esound bl3.mk in those cases. XXX: please check other OPSYS if they do the same, and add cases
2005-06-01Remove mk/autoconf.mk and mk/automake.mk and replace their usage withjlam7-42/+28
USE_TOOLS and any of "autoconf", "autoconf213", "automake" or "automake14". Also, we don't need to call the auto* tools via ${ACLOCAL}, ${AUTOCONF}, etc., since the tools framework takes care to symlink the correct tool to the correct name, so we can just use aclocal, autoconf, etc.
2005-06-01Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc.jlam59-122/+72
Several changes are involved since they are all interrelated. These changes affect about 1000 files. The first major change is rewriting bsd.builtin.mk as well as all of the builtin.mk files to follow the new example in bsd.builtin.mk. The loop to include all of the builtin.mk files needed by the package is moved from bsd.builtin.mk and into bsd.buildlink3.mk. bsd.builtin.mk is now included by each of the individual builtin.mk files and provides some common logic for all of the builtin.mk files. Currently, this includes the computation for whether the native or pkgsrc version of the package is preferred. This causes USE_BUILTIN.* to be correctly set when one builtin.mk file includes another. The second major change is teach the builtin.mk files to consider files under ${LOCALBASE} to be from pkgsrc-controlled packages. Most of the builtin.mk files test for the presence of built-in software by checking for the existence of certain files, e.g. <pthread.h>, and we now assume that if that file is under ${LOCALBASE}, then it must be from pkgsrc. This modification is a nod toward LOCALBASE=/usr. The exceptions to this new check are the X11 distribution packages, which are handled specially as noted below. The third major change is providing builtin.mk and version.mk files for each of the X11 distribution packages in pkgsrc. The builtin.mk file can detect whether the native X11 distribution is the same as the one provided by pkgsrc, and the version.mk file computes the version of the X11 distribution package, whether it's built-in or not. The fourth major change is that the buildlink3.mk files for X11 packages that install parts which are part of X11 distribution packages, e.g. Xpm, Xcursor, etc., now use imake to query the X11 distribution for whether the software is already provided by the X11 distribution. This is more accurate than grepping for a symbol name in the imake config files. Using imake required sprinkling various builtin-imake.mk helper files into pkgsrc directories. These files are used as input to imake since imake can't use stdin for that purpose. The fifth major change is in how packages note that they use X11. Instead of setting USE_X11, package Makefiles should now include x11.buildlink3.mk instead. This causes the X11 package buildlink3 and builtin logic to be executed at the correct place for buildlink3.mk and builtin.mk files that previously set USE_X11, and fixes packages that relied on buildlink3.mk files to implicitly note that X11 is needed. Package buildlink3.mk should also include x11.buildlink3.mk when linking against the package libraries requires also linking against the X11 libraries. Where it was obvious, redundant inclusions of x11.buildlink3.mk have been removed.
2005-06-01LIBMAN manual pages should have the LIBMAN suffix.markd1-131/+131
2005-06-01Update to 1.2.6nb2:wiz4-10/+13
Fix MIDI playback. Remove configuration option that defaults to yes. From ISIHARA Takanori in PR 30330.
2005-06-01Update to version 0.11.2:simonb5-54/+18
New commands: crop, stats, toggle. Add relative and exact-time seeking. Fix a few bugs. The new "toggle" command is the same as our existing patch for the "playpause" command - we keep the "playpause" command as an alias for "toggle".
2005-05-31Documentation is installed in share/doc, not in doc.rillig2-13/+13
2005-05-31Removed trailing empty line.rillig1-2/+1
2005-05-31Changed #defined to yes in NO_BUILD.rillig1-2/+2
2005-05-31Changed #defined to yes in NO_BUILD.rillig1-2/+2
2005-05-31Changed USE_PERL5 to USE_TOOLS+=perl.rillig1-3/+2
2005-05-31Changed #defined to yes in GNU_CONFIGURE and USE_LIBTOOL.rillig1-3/+3
2005-05-31Removed trailing white-space.rillig1-2/+2
2005-05-31Changed #defined to yes in GNU_CONFIGURE and USE_LIBTOOL.rillig1-3/+3
2005-05-31Changed #defined to yes in GNU_CONFIGURE.rillig1-2/+2
2005-05-31Changed #defined to yes in USE_LIBTOOL and NO_CONFIGURE. Added properrillig1-4/+4
quoting of variables.
2005-05-31Removed trailing empty lines.rillig1-2/+0
2005-05-31Convert USE_GNU_TOOLS into USE_TOOLS as the former is no longer supportedjlam1-2/+1
in pkgsrc.
2005-05-31Replaced direct use of sh with ${SH}. Added proper quoting of variables.rillig1-5/+7
2005-05-31Removed trailing empty line.rillig1-2/+1
2005-05-31Changed USE_PERL5 to USE_TOOLS+=perl.rillig1-2/+2
2005-05-31Normalized the format of the patches.rillig3-61/+43
2005-05-31Changed value of NO_BUILD from #defined to yes.rillig1-2/+2
2005-05-31Convert to options framework.wiz1-6/+9
2005-05-31Finish conversion to options framework.wiz2-10/+9
Remove unnecessary inclusion of bsd.prefs.mk.
2005-05-31Convert to options framework.wiz2-17/+18
2005-05-31Finish conversion to options framework.wiz1-13/+11
2005-05-31Convert to options framework.wiz2-7/+14
2005-05-31Convert to options framework.wiz2-13/+18
2005-05-31Convert to options framework.wiz2-8/+17
2005-05-31Convert to options framework.wiz2-15/+22
2005-05-31Update arts to 1.4.1 (part of KDE 3.4.1)markd3-12/+12
Changes: unknown
2005-05-31Convert to options framework.wiz2-13/+19
While here, clean up gnome1 directory creation.