summaryrefslogtreecommitdiff
path: root/audio
AgeCommit message (Collapse)AuthorFilesLines
2002-10-24Pull the following up to the 1.6 branch (requested by agc):wiz3-18/+9
Apply patches from Lubomir Sedlacik <salo@Xtrmntr.org> in PR 18115 to generalise the linker flags used to export symbols by setting them on a per-OS basis. > many packages force -Wl,-export-dynamic which is not portable outside GNU ld > and cause problems e.g. on Solaris. some of these packages use if > conditionals either only for NetBSD or except SunOS, but the state is not > coherent and it may complicate later when support for new OS is added to > pkgsrc (e.g. ongoing work on HP-UX support). > > jlam proposed the following framework in discussion on tech-pkg: > > http://mail-index.netbsd.org/tech-pkg/2002/06/21/0009.html > > now, ${EXPORT_SYMBOLS_LDFLAGS} is used instead of directly defining > -Wl,-export-dynamic which is set in appropriate defs.*.mk to reasonable > values. packages should be converted to this framework by: > > 1) replacing LDFLAGS+= -Wl,-export-dynamic and LIBS+= -export-dynamic with: > > LDFLAGS+= ${EXPORT_SYMBOLS_LDFLAGS} > > 2) for use in patchfiles, add this variable to MAKE_ENV if needed: > > MAKE_ENV+= EXPORT_SYMBOLS_LDFLAGS=${EXPORT_SYMBOLS_LDFLAGS} > > 3) replace occurances of -Wl,-export-dynamic and -export-dynamic in patch > files with: > > $(EXPORT_SYMBOLS_LDFLAGS)
2002-08-16Beautify: correct tab-stops.jschauma2-19/+19
2002-08-13Allow this package to depend on either compat14 or compat14-crypto.jdarrow1-2/+2
2002-08-09extract step is also interactive, mark it as such.wiz1-2/+2
Noted by Urban Boquist in pkg/17893.
2002-08-09use correct header for bswap functions. Also fix the test for byte ordering.dmcmahill3-6/+15
fixes complition problem noted in latest alpha bulk build.
2002-08-08These packages install libraries that differ from previous versions if theyjlam4-5/+8
are built using the hard-syscall-enabled pth. Bump the PKGREVISION so we can distinguish these packages from the previous ones.
2002-08-08Bump PKGREVISION as a result of removing the _POSIX_THREAD_SYSCALL_SOFTjlam3-3/+6
definition. The resulting packages are different than before.
2002-08-08The xmms plugins should have the same thread semantics as xmms. Sincejlam3-6/+3
xmms does use _POSIX_THREAD_SYSCALL_SOFT, the plugins shouldn't either.
2002-08-08XMMS requires a pthread library to build.jlam2-2/+8
2002-08-07Dependency on scrollkeeper is required now that the package depends onrh1-1/+2
gnome-libs instead of gnome-core (hi wiz). This hopefully fixes bulk building.
2002-08-07Create new variables INCOMPAT_ZLIB, INCOMPAT_BZIP2, INCOMPAT_READLINE,jlam1-2/+2
INCOMPAT_GETTEXT that are analogous to INCOMPAT_ICONV and contain lists of shell wildcards intended to match against ${MACHINE_PLATFORM}. These variables are used to note those platforms that have the named packages in the base system but are incompatible in some way from the pkgsrc version of the same package. Change INCOMPAT_CURSES to have the same sematics as above. These variables allow much greater precision in specifying which platforms have broken (for the purposes of pkgsrc) versions of software in the base system that must be ignored. The buildlink.mk files for these packages define private _INCOMPAT_* versions of these variables, and they contain the default lists of platforms that are known to have incompatible software bits. This addresses pkg/17775 submitted by Julien T. Letessier <julien.letessier at sun dot com>.
2002-08-06Update to 2.0nb1, distfile has changed:wiz2-4/+7
diff -r old/festival/lib/voices/english/aec_diphone/festvox/aec_diphone.scm new/festival/lib/voices/english/aec_diphone/festvox/aec_diphone.scm 25a26 > (require 'ogi_token) 62a64 > (set! token_pos_cart_trees OGI_english_token_pos_cart_trees) 69,70c71,72 < ;(set! pos_map english_pos_map_wp39_to_wp20) < (set! pos_map nil) --- > (set! pos_map english_pos_map_wp39_to_wp20) > ;(set! pos_map nil) Closes pkg/17822 by Oliver Tonnhofer.
2002-08-05Make splay work on big-endian platforms.wiz7-74/+133
Patches from Martijn van Buul in pkg/15382, tested on macppc and i386.
2002-08-05Update to vorbis-tools 1.0.lukem5-70/+9
(Removed point-patches needed for 1.0rc3)
2002-08-05Update to libvorbis 1.0.lukem6-24/+59
2002-08-05Update to libogg 1.0.lukem6-20/+18
2002-08-05Update libao from 0.8.2 to 0.8.3 (for ogg vorbis 1.0 release).lukem5-10/+38
Notable changes: - fix to ao.m4 macro - minor alsa09 plugin updates - fixes to irix plugin Note: patch-ac added to remove unconditional use of -ldl in libao.la.
2002-08-02Updated mserv to 0.33nb4:abs13-48/+69
Ensure reset message is flushed before restart starts, and fix volume control to correctly report new value so 'volume -' and 'volume +' will always reduce/increase the volume by the minimum value.
2002-08-01add missing patches for lastabs2-0/+30
2002-08-01Convert to use pthread.buildlink.mk.jlam2-18/+19
2002-08-01Adjust to new pthread.buildlink.mk: remove USE_PTHREAD and replace withjlam9-37/+41
appropriate PTHREAD_OPTS incantation, and move the checks for the value of PTHREAD_TYPE below the inclusion of pthread.buildlink.mk.
2002-07-31Update mserv to 0.33nb3:abs10-146/+139
Broadcast an information line both on server RESET initiation and on completion.
2002-07-31Use LIBTOOL_OVERRIDE instead of LTCONFIG_OVERRIDE so that pkgsrc libtoolskrll1-2/+2
is used. Pointed out by Julien Letessier <julien.letessier at sun.com>.
2002-07-31Use PKGLOCALEDIR in PLIST. From Julien T. Letessier in pkg/17777.wiz1-6/+6
2002-07-26Depend on libghttp and gnome-libs instead of gnome-core.wiz1-4/+5
Use LTCONFIG_OVERRIDE. Fixes pkg/17709 by Julio Merino.
2002-07-26On systems that don't have a mixer_info, define it in gmix.h, not gmix.crh4-19/+24
This fixes building under NetBSD-1.4.x Bump PKGREVISION Closes PR pkg/15908 by Olaf Seibert.
2002-07-24Change explicit build dependencies on perl into "USE_PERL5=build". Thisjlam1-2/+2
makes these packages build correctly on Darwin where perl>=5.8.0 is required.
2002-07-24Undo unnecessary version number bump from last commit.wiz1-2/+2
2002-07-24Stronly buildlinkify this package - from Julio Merino in PR 17699agc1-7/+8
2002-07-22Last MASTER_SITE vanished; set it to empty and get the file fromwiz1-2/+2
ftp.netbsd.org.
2002-07-22Strongly buildlink-ify this package.agc1-7/+7
2002-07-21SHA1+size instead of MD5.wiz2-4/+6
2002-07-20Do not mention package's version number in DESCRzuntum1-2/+0
2002-07-19Sync.mycroft1-1/+5
2002-07-19Fix spurious warnings.mycroft2-0/+26
2002-07-19Fix LP64 errors.mycroft2-0/+28
2002-07-19Fix LP64 botch.mycroft2-1/+14
2002-07-18Copy the install-sh and mkinstalldirs scripts, rather thanagc1-3/+3
symbolically linking them, since the GNU configure script uses test -f to test for their presence.
2002-07-18Patch the various pkgconfig files to include proper -Wl,-R options.rh6-4/+30
Bump PKGREVISION
2002-07-17Needs automake during build.wiz1-1/+2
2002-07-17Set localstatedir so the scrollkeeper database gets updated correctlyrh2-3/+6
Add proper @exec/unexec scrollkeeper-rebuilddb statements to PLIST Bump PKGREVISION
2002-07-17Update to KDE 3.0.2skrll6-23/+21
Also, allow the arts SSE detection code to run on modern NetBSD systems. Changes are: arts Again Build fixes. Realtime priority configuration fix kdelibs dcop: Make it possible to disable the Qt bridge. make sure tooltip effects can be configured. kbuildsycoca: avoid crash on unreadable directories. kdockwidget: fixing reading of configuration. kedittoolbar: fix leak. khtml: many fixes. kded: signal handling fixes. kio-http slave: fixes related to form posts and cache handling. kjs: added max recursion limit. kjs: leak and compatibility fixes. kdebase kicker: &-escaping fix audiocd: fix cddb computation thumbnail previewer: calculate the number of bytes to read instead of hardcoding it.
2002-07-16Add buildlink.mk files where necessary (gnome-libs being tha main one)agc3-12/+27
Strongly buildlinkify this package. Adapt coverart to new structure layout in libcdaudio - fixes a problem which showed up in latest bulk build.
2002-07-16This package really requires gmake, since some of the targets are specifiedagc1-1/+2
as %.o
2002-07-13Use gkrellm buildlink.mk, should fix i386 bulk build failure.wiz1-2/+5
2002-07-13Update to libmikmod 3.1.10. Numerous bug fixes across the board; output ismycroft5-81/+23
noticably better. Tested with all the pkgs that use it: mikmod, xmms, xpuyopuyo, xscorch.
2002-07-12Update to sox 12.17.3. Numerous bugs fixed, and most of the NetBSD patchesmycroft13-159/+46
integrated.
2002-07-08Add and enable mixer.app.wiz1-1/+2
2002-07-08Initial import of Mixer.app, provided by ptiJo in pkg/17153:wiz6-0/+65
A dockapp that controls the mixer for three volumes by default: * Master * CD * PCM
2002-07-06Update to 0.99.6, from new homepage at sourceforge.jschauma3-19/+14
Changes too many to list here, see Changelog in tarball.