Commit graph

3136 commits

Author SHA1 Message Date
uebayasi
ea0e75019a Remove the LICENSE to match the real license, LGPL. Reported by
Vincent Stemen.
2004-10-25 12:44:44 +00:00
xtraeme
1709d2d877 - streamtuner-{live365,local} 2004-10-25 09:05:53 +00:00
xtraeme
6336b4da44 Update audio/streamtuner to 0.99.
0.99                                    23 October 2004

        * The plugins have been included in the core distribution
        * The plugins can now be disabled from the preferences
        * The paned position and column widths were not saved anymore:
          fixed
        * The Local plugin now depends on TagLib (instead of libid3tag
          and libvorbis)
        * The Xiph plugin has been fixed, it now lists all the streams
          (but depends on libxml2)
        * STREAMTUNER_LOCAL_ROOT has been deprecated: the music folder
          can now be set from the preferences
        * The session is now always saved upon exit
        * Tab labels now have their own popup menu, containing
          tab-specific actions
        * The german translations have been updated (submitted by
          Martin Stromberger)
        * Minor fixes and cleanups
2004-10-25 09:05:27 +00:00
xtraeme
30c87c0744 Remove streamtuner-{live365,local}, the plugins are now built by
default by the new streamtuner version.
2004-10-25 09:03:22 +00:00
wiz
c41dc61e0d Add rexima. 2004-10-23 09:25:56 +00:00
wiz
31ff2831e1 Initial import of rexima-1.4:
rexima is a curses-based interactive mixer which can also be used
from the command-line. It runs on any terminal with a screen size
of 80x24 or greater. It's intended to be a simple, general, usable
mixer without all the chrome usually present in other mixers.
2004-10-23 09:24:54 +00:00
jmmv
8c39ce6281 Split aumix into two different packages:
- aumix 2.8nb6, which only provides ncurses support.  Note that its revision
  is bumped to note the differences from the previous package.
- aumix-gtk 2.8, which includes GTK 2.x and ncurses support.  While here,
  add a missing build dependency on pkgconfig.

The descriptions have also been rewritten to note the differences.

Addresses PR pkg/27340.
2004-10-22 18:30:42 +00:00
snj
2e4ee7957f Substitute custom post-patch with REPLACE_PERL. From Leonarch Schmidt
in PR pkg/27320.
2004-10-22 15:05:18 +00:00
adam
b47b288ca2 Fixed buildlink problems 2004-10-20 10:55:46 +00:00
ben
bca5f2e21d Add newly imported package rip. 2004-10-19 03:13:52 +00:00
ben
50dcc17e05 Initial import of rip-1.07, a command-line based audio CD ripper and
encoder.  Provided by Leonard Schmidt in PR#27269 and PR#27290.

rip is a wrapper for rippers and encoders which provides a common
interface for ripping any CD audio track and encoding it into
MP3, Ogg Vorbis, or FLAC. Manual and CDDB based renaming schemes
are available for naming and tagging your ripped tracks.
2004-10-19 03:13:11 +00:00
sekiya
e16c787a71 Update to ifp-line-0.2.4.4:
* 2004-08-18 ifp-line-0.2.4.4
          + Stable release.
          + Fixed upload process.
2004-10-19 01:57:45 +00:00
ben
e91ac2c19c Correct platform from *-*-ppc to *-*-powerpc. 2004-10-18 18:25:49 +00:00
ben
8cb5a03640 FLAC recently gained PPC optimizations that only work with Apple's
assembler.  Since they cause the FLAC build to fail on AIX and NetBSD,
only enable the optimizations if the OPSYS is Darwin.

There is also a misplaced #endif in lpc.h that causes the build to
fail on all platforms if assembler optimizations are disabled.  This
is fixed by patch-af.

Thanks to Michael <macallan18@earthlink.net> for troubleshooting!
2004-10-18 14:23:29 +00:00
cube
a4775d2f5d Update to version 12.17.6. Note that this version fixes some
buffer overflows in the WAV parser that could lead to arbitrary
code execution.

sox-12.17.6
-----------
  o Changed comment code to always use copies of strings to
    fix bug in WAV handlering freeing argv[] memory.
  o Use calloc() to create ft_t structures so that all
    memory is initialized before being referenced.
  o Fixed VOC EOF bug were it thought there was an extra
    block when there wasn't.
  o Restructured directory layout so that source code is in
    a seperate directory.
  o Modified SoX to accept multiple input files.  Concatenates
    files together in this case.
  o Removed map effect so that loops and instr could be removed
    from effects structures.  This makes effects engine stand
    alone from the rest of the sox package.
  o Benedikt Zeyen found a bug in synth effect when generating
    brown noise that could cause clipping.
  o David Leverton sent another patch to prevent crashes on
    amd64's when resampling.
  o Fixed a bug were MP3 files with large ID3v2 tags could
    cause SoX to stick in a loop forever.  Now, it will
    abort on IDv3 tags larger then 100k.  Could still be
    improved to handle any size.
  o Changed volume option (-v) so that it tracks the file
    it was specified.  This means that when specified with
    the input file, it changes volume before effects engine
    and when specified with output file, its done after effects
    engine.
  o Added crossfade_cat.sh script that will concatenate to
    audio files and do a crossfade between them.
  o Fixed bug in fade effect were it was impossible to do a
    fadeout starting from the beginning of the audio file.
  o Removed rounding error when changing volume of audio with
    "-v" option.  This error caused doing a "-v -1.0" twice
    to not result in the original file.
  o Fixed a possible overflow in lots of effects were MIN
    value was treated as -MAX instead of -MAX-1.
  o Modifed sox so its OK for effects to not process any
    input or output bytes as long as they return ST_EOF.
  o When effects output data and reported ST_EOF at the
    same time, that buffer was discarded as well as
    data from any chained effect.
  o Added patch from Eric Benson that attempts to do a seek()
    if the first effect is trim.  This greatly speeds up
    processing large files.
  o Daniel Pouzzner implemented a multi-band compander (using
    the butterworth filters to split the audio into bands).
  o Donnie Smith updated the silence effect so that its possible
    to remove silence from the middle of a sound file by
    using a negative value for stop_periods.
  o Changed float routines to only work with normalized values
    from -1:1.
  o Modifed .au handler to be able to read and write 32-bit
    and 64-bit float data.  Only tested reading so far.
  o WAV with GSM data now always pads data to even number of bytes.
  o Added support for writing 32-bit audio to AIFF.

sox-12.17.5
-----------
  o Thomas Klausner sent in patches to compile audio drivers under
    NetBSD.
  o Rahul Powar pointed out a memory leak in the WAV file handler.
    It wasn't calling the correct close() function when closing
    input files.
  o Modified play.1 man page to not use multiple name lines.  This
    appears to confuse some conversion programs.  Updated sox.1
    man page for typo in reverb option.
  o Andrew Church fixed problem with header of stereo 8SVX files.
  o Jimen Ching added support to scan over garbage data at the
    beginning of MP3 files to find valid frames.  This is useful
    to play WAV and AIFF files that have MP3 data in them until
    those handlers support it directly.  To play those, force
    sox to use the mp3 handler with the "-t mp3" option.
  o Added patch from Ulf Harnhammar to wav handler to prevent
    buffer overflows.
  o Added patch from Redhat to allow resample to work on certain 64-bit
    machines (Sam Varshavchik)
  o Tony Seebregts added a file handler for headerless Dialogic/OKI ADPCM
    files (VOX files).
  o Jan Paul Schmidt added a repeat effect to do loops the brute force way.
    This is also good for file format that don't support loops as well.
  o Fix for OSS driver in rate tolerance calcs that were off because
    of type conversion problems.  Guenter Geiger.
  o Allow reading sphere files with headers greater then 256 bytes.  Jimen
    Ching.
  o Fix for vorbis were comments are displayed in KEY=value format always.
    Stop printing some info to stdout in case output is a pipe. Guenter
    Geiger.
  o J Robert Ray submitted fix for AIFF handler to ignore lowercase
    chunks that are unknown.
  o Bugfix for 8-bit voc files.  Jimen Ching
  o General warning cleanups (cbagwell)
  o Memory leaks in reading WAV files (Ufuk Kayserilioglu)
  o Rearrange link order of ogg vorbis libraries so that they
    can be compiled as static. (Christian Weisgerbr)
2004-10-18 13:24:47 +00:00
ben
c30227fdac Correct the case of CDDB in the description. 2004-10-18 03:48:30 +00:00
ben
fa066b2425 Add SUBDIR for p5-CDDB_get import. 2004-10-18 03:44:55 +00:00
ben
f7974c6740 Initial import of p5-CDDB_get-2.23, a perl interface to query for
CDDB-information.  This is separate package from p5-CDDB.  Package
provided by Leonard Schmidt in PR#27270.
2004-10-18 03:44:05 +00:00
ben
ebc609a745 Fix mikmod option parsing using patch provided by David Holland in
PR#27280.
2004-10-18 02:32:14 +00:00
ben
84ea478aef Update xmms-flac to version 1.1.1 to match recent flac update.
This addresses PR#27198.
2004-10-15 22:56:50 +00:00
kristerw
1f62789c93 Make this work on NetBSD 1.6 again, by reverting the last change.
(That change was a work-in-progress to get this to build with gcc3,
so no functionality is lost by reverting it. The "correct" way of
fixing this package is to upgrade to a newer version...)
2004-10-15 16:50:17 +00:00
minskim
1a09815902 With gettext-lib/builtin.mk 1.11, this package doesn't modify
charset.alias or locale.alias any more.  Remove comments about them.
2004-10-14 18:20:42 +00:00
minskim
66c8c7d291 Enable pkgviews installation. 2004-10-14 18:07:10 +00:00
adrianp
4c07e58e98 - Update to 2.0.2
- Fixes a security issue - upgrade recommended
- Patch submitted in PR 27253 by pancake@phreaker.net, thanks !
2004-10-13 21:20:00 +00:00
adam
e46551c9de Changes 2.13.1:
* Various bug fixes
* Some feature improvements
* Support for libao, FLAC (now in pkgsrc), Speex (pkgsrc as well)
Changes 2.13.2:
* Win32 compile error fix
2004-10-13 15:23:40 +00:00
markd
18a6981ec8 Update to arts 1.3.1 (part of KDE 3.3.1)
changes unknown.
2004-10-13 11:39:23 +00:00
tv
49a12818c2 Make work on Interix. (Its base libao has no direct audio drivers; a
plugin such as libao-esound is required.)
2004-10-12 14:33:58 +00:00
itohy
53d015beda Update to 0.1.3-1
0.1.3-1: (26/05/02)
--------
	- fixed parsing sideinfo (off by 1 bit) for mpeg 1 layer 3 mono
	  (found by Alain Daurat (alain.daurat libertysurf.fr))
2004-10-12 12:48:44 +00:00
tv
ed6eb4e8c9 Note that cygwin_esound is required on Interix for physical audio output. 2004-10-11 22:18:45 +00:00
tv
471e9747c2 Allow this to build on Interix in client-only mode. 2004-10-11 18:02:59 +00:00
wiz
4e48c18b53 Bump PKGREVISION for Charles' fix for kaudiocreator. 2004-10-10 12:30:48 +00:00
mycroft
a63c6c44a2 Fix a problem with our hacked version of cdda_identify_scsi() that was
causing kaudiocreator to fail with a mysterious "Unknown error".
2004-10-10 10:48:39 +00:00
minskim
5a0af98e62 Update moss to 0.1.11. Patch provided by Myung-Gon Park, the maintainer.
Changes since 0.1.9:
  - Avoid an infinite loop with buffer underrun in the live mode.
  - More detailed and consistent log messages.
2004-10-10 09:48:35 +00:00
tv
a62d3fb0e1 Extra PKGREVISION bump to cover the libtool/compiler-wrapper problems.
Since dependencies were actually failing to build, they fortunately don't
require PKGREVISION bumps themselves.
2004-10-07 16:36:47 +00:00
hira
2285465daf Update to 0.8.7. OK'd by jmmv.
Overview of Changes from 0.8.6:

    * Fix periodic crasher in shuffle code.
    * Make documentation valid DocBook.
    * Compile fix for ipod source.
    * Save order of playlists.
    * Enable support for typeahead in property views.
    * Update ko, tr and fi translations.
2004-10-07 13:34:49 +00:00
minskim
fa55cfd7fc Update moss to 0.1.9. Submitted by Myung-Gon Park, new MAINTAINER.
Changes:
  - Bug fix in live mode.
2004-10-06 15:16:03 +00:00
chris
1dfcc92e5f Update taglib to 1.3. Main changes from 1.2 to 1.3 are:
Added support for APE tags
Added support for MPC files
Added support for APE tags in MP3 files
Added support for compressed ID3v2 frames
Added support for uniuque file identifier frames in ID3v2
Added checks for several potential divide by zero (SIGFPE) cases
Fixed support for custom text frames

Fixes PR 27061 (basically applied the patch in PR, but added the change to
buildlink3.mk and removed LIBTOOLIZE_PLIST option from Makefile.)
2004-10-06 00:09:02 +00:00
drochner
5d5071b672 include pkgconfig/buildlink3.mk so that libcdio is not found
(we deliberately don't depend on it to avoid a circular dependency)
should fix PR pkg/27077 by diro@nixsys.bz
2004-10-05 14:18:10 +00:00
wiz
d43c7b1a1f Fix DISTNAME. Closes PR 27147. 2004-10-05 13:12:40 +00:00
ben
3f0a667399 Make libtool link libportaudio to LIBOSSAUDIO. 2004-10-05 04:06:30 +00:00
ben
ad6705feb9 Libtoolize portaudio and bump PKGREVISION. This may resolve PR#27050. 2004-10-05 03:53:15 +00:00
tv
c487cb967a Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10
in the process.  (More information on tech-pkg.)

Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and
installing .la files.

Bump PKGREVISION (only) of all packages depending directly on the above
via a buildlink3 include.
2004-10-03 00:12:51 +00:00
adam
f9cab5be8f Changes 1.1.1:
* Almost 2x decoding speed-up on Macintosh
* Better Ogg FLAC support
* Several new options to flac and metaflac
2004-10-01 13:17:50 +00:00
grant
eaa75b4082 there will not be a NetBSD-1.[7-9] but will be a NetBSD-[2-9].*
adjust patterns used in ONLY_FOR_PLATFORM/NOT_FOR_PLATFORM to reflect
this.
2004-10-01 10:37:32 +00:00
tv
31cda8671a Libtoolize PLIST (was missing .la file). 2004-09-30 03:50:02 +00:00
wiz
67313fece1 Update to 1.1.0:
libvorbis 1.1.0 (2004-09-22) -- "Xiph.Org libVorbis I 20040629"

* merges tuning improvements from Aoyumi's aoTuV with fixups
* new managed bitrate (CBR) mode support
* new vorbis_encoder_ctl() interface
* extensive documentation updates
* application/ogg mimetype is now official
* autotools cleanup from Thomas Vander Stichele
* SymbianOS build support from Colin Ward at CSIRO
* various bugfixes
* various packaging improvements

Package change:
install documentation in share/doc instead of share/doc/html.
2004-09-24 13:04:40 +00:00
kim
480cab8d57 Upgrade to ices-mp3-0.4:
* FLAC transcoding support.
* Crossfader added.
2004-09-24 01:39:30 +00:00
scw
e25a61233d Update to mad123-0.8.3.
This version adds support for several different audio backends,
playlists, a manual page contributed by Lubomir Sedlacik, and numerous
bug fixes.

Currently supported audio backends are the original Sun (OSS) backend,
an optional aRts backend (still experimental, so not compiled by default),
and a raw pcm backend which writes the decoded stream to a file or stdout.
2004-09-22 11:16:35 +00:00
jlam
1a280185e1 Mechanical changes to package PLISTs to make use of LIBTOOLIZE_PLIST.
All library names listed by *.la files no longer need to be listed
in the PLIST, e.g., instead of:

	lib/libfoo.a
	lib/libfoo.la
	lib/libfoo.so
	lib/libfoo.so.0
	lib/libfoo.so.0.1

one simply needs:

	lib/libfoo.la

and bsd.pkg.mk will automatically ensure that the additional library
names are listed in the installed package +CONTENTS file.

Also make LIBTOOLIZE_PLIST default to "yes".
2004-09-22 08:09:14 +00:00
jmmv
ae4d760857 Update to 0.8.6. Closes PR pkg/27003.
Overview of Changes in Rhythmbox 0.8.6
======================================

* Updated documentation [Jens Schittenhelm]
* Japanese help translation [SATOH Satoru]
* Fix .pc file to use correct path variables [bugzilla@c0decafe.net]
* Add MimeType to .desktop file [Colin Walters]
* More extensive Bonobo interface [eskil heyn olsen]
* Read disc number tags from ipod [Christophe Fergeau]

New Translations

he (Shoshannah Forbes, Gil Osher)
eu (Iñaki Larrañaga)
nb (Kjartan Maraas)

Updated Translations

en_CA (Adam Weinberger)
nl (Vincent van Adrighem)
ko (Changwoo Ryu)
fi (Tommi Vainikainen)
tr (Baris Cicek)
2004-09-21 17:22:39 +00:00