Commit graph

3438 commits

Author SHA1 Message Date
drochner
bdfb747063 reset PKGREVISION because we have a new PKGNAME 2005-04-26 21:22:59 +00:00
drochner
bf00d49769 belt && suspenders: pass --without-cdio to "configure" 2005-04-26 21:10:20 +00:00
adam
ccbbe321f3 Changes 1.0.1:
* [NEW] Added --without-cdio option to the configure script so you can
  manually disable CD access support for the example program.
* Fixed iconv compiler warnings for Solaris and Cygwin.
* Fixed regex compilation issue on MacOS X.
2005-04-25 18:02:35 +00:00
adam
ecd93ff710 Added fluidsynth-1.0.5 2005-04-25 13:54:39 +00:00
adam
3a81838308 FluidSynth is a real-time software synthesiser based on the SoundFont 2 spec 2005-04-25 13:53:37 +00:00
ben
4cda63c0a7 Fixes for SpiralSound/Midi.C
* test for failure of open() should be == -1, not == 0
	This causes Open() to behave as intended, only creating the
	m_MidiReader thread if the MIDI device is successfully opened.

* unconditionally initialize m_Mutex in Open()

* conditionally close m_MidiReader in Close(), if NULL do nothing

* make m_MidiFd and m_MidiWrFd the same file descriptor.  The MIDI
	device special file can only be opened once at a time.
2005-04-24 14:41:28 +00:00
wiz
1dc6685dc1 Update HOMEPAGE and MASTER_SITES, from Ulrich Heilmann in PR 30047. 2005-04-24 11:24:30 +00:00
ben
c311032905 The problem is that SpiralSynth opens the MIDI device path before
calling SetDeviceName.

The call trace goes something like this:

Synth.C
main() ==> Synth *synth=new Synth; ==> Synth::Synth()
==> MidiDevice::Get()->SetDeviceName(SpiralInfo::MIDIFILE);

SpiralSound/Midi.h
MidiDevice::Get() ==> m_Singleton=new MidiDevice;
==> MidiDevice::MidiDevice() ==> MidiDevice::Open()
==> MidiDevice::SetDeviceName

patches/patch-ao works around this problem by closing the prematurely
opened private variable representing the MIDI device, and setting it to
NULL.  MidiDevice methods check for NULL and re-initialize the private
variable, this time opening the MIDI device path after SetDeviceName.
2005-04-24 03:29:11 +00:00
wiz
764aef1b98 Bump PKGREVISION for md5 fix. 2005-04-21 09:05:37 +00:00
pooka
c5d7370a91 Our md5 tool is called "md5", not "md5sum". And while in here,
fix it for FreeBSD also.
2005-04-21 08:56:18 +00:00
ben
3cd83bdffb Update to csound4-4.23.12.11. Significant changes include:
* fltk fixes
* thread fixes
* many misc. bug fixes
* add support for creating shared libraries for plugins
* this will likely to be the last csound gbs release for a while
2005-04-19 20:22:52 +00:00
rillig
476ccede1c Removed the GCC_REQD line from the Makefile. Instead, patch-ab is used to
disable the i386 MMX statements for gcc-2.95. Approved by kristerw.
2005-04-19 15:38:21 +00:00
wiz
5e6fe11584 Update to 1.1:
1.1 - April 7th, 2005 :
=======================
    * Added ability to authentifiate on the proxy with username
      and password,
    * Added ability to search files in hidden directories,
    * Added shortcut F5 to reload current directory,
    * Improved use of the command line to run EasyTAG with a
      directory as,
    * Removed forcing ID3v2.3 tags to ISO-8859-1 at start (was boring for
      russian people),
    * Removed old function to keep the tree browser in memory (to
      not refresh it
    * Replaced icons for directories in the browser,
    * Fixed requested server when using a proxy for the Cddb
      automatic searching (thanks to bjustus schwartz),
    * Fixed a bug with APE tags (thanks to Daniel Drake and Artur
      Polaczynski),
    * Fixed compilation problem under gcc-4.0,
    * French translation updated,
    * Spanish translation updated (thanks to Fernando M. Bueno Moreno),
    * Romanian translation updated (thanks to George Pauliuc).
2005-04-19 00:24:13 +00:00
drochner
3fa87949db update to 1.0.0
changes:
* [NEW] Added support for proxy authentication.
* [BUGFIX] Memory leaks fixed in regular expression handling.
* Iconv compilation fixes for Solaris.
2005-04-18 17:52:05 +00:00
wiz
c66a9cdd88 tron volunteered to maintain this package. 2005-04-18 13:20:40 +00:00
kristerw
4b7d5ce55b Include "../../mk/pthread.buildlink3.mk" to make this pkg build
on NetBSD 1.6.
2005-04-17 01:06:06 +00:00
rh
28af5e6872 Fix vulnerability pointed out in http://secunia.com/advisories/14877/
Bump PKGREVISION
Update BUILDLINK_RECOMMENDED
2005-04-15 01:50:56 +00:00
jmmv
ec2fbc2586 Apply patch from Gentoo to fix security problem in the cdda module. Bump
gnome-vfs2-cdda's module to 1.

Quoting the Gentoo advisory: "The GnomeVFS and libcdaudio libraries contain
a buffer overflow that can be triggered by a large CDDB response, potentially
allowing the execution of arbitrary code."

See http://www.gentoo.org/security/en/glsa/glsa-200504-07.xml and
http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2005-0706 for more
information.
2005-04-12 20:12:02 +00:00
ben
77cfbd3bef Make MESSAGE refer to correct path for configuration file. 2005-04-12 17:12:16 +00:00
tv
7671a5504e Nuke USE_BUILDLINK3 (some files missed in megacommit). 2005-04-12 15:11:18 +00:00
rillig
5a08cc41cf Added CPPFLAGS to enable deprecated GNOME functions. Needed for
NetBSD-1.6.2. Approved by jlam.
2005-04-12 01:02:19 +00:00
tv
f816d81489 Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used. 2005-04-11 21:44:48 +00:00
markd
a4b2c39f47 Replace a TAB with a SPACE to make some makes happy. 2005-04-09 01:47:02 +00:00
markd
3fca12fe3b Define BSD44SOCKETS when building libaudio on NetBSD.
From PR pkg/20615 by Scott Presnell.
Scott's patch was added to nas before 1.7 but then broken, this fixes that.

Bump PKGREVISION.
2005-04-07 14:33:56 +00:00
markd
05ca5e8b04 Take maintainership. 2005-04-07 12:38:02 +00:00
reed
07fce1f09a Instead of using @dirrm for include/arts remove the directory
with:
@unexec ${RMDIR} %D/include/arts 2>/dev/null || ${TRUE}

This will stop it from complaining when you use pkg_add to
upgrade the arts package when kdelibs is still installed.

Okayed by maintainer, markd.
2005-04-05 21:18:07 +00:00
rillig
80f2f0912f Reformatted patch-aa to make pkglint happy. 2005-04-05 20:27:02 +00:00
agc
3d9dfff788 Add an RMD160 digest for this package. 2005-04-05 15:02:44 +00:00
wiz
016444bea6 Convert to bl3, untested. 2005-04-05 10:56:44 +00:00
wiz
4841e40708 Bump PKGREVISION for DEPENDS change and PLIST fix. 2005-04-03 21:41:29 +00:00
fredb
9cf1eb201a This package does the gnome2 menu style. 2005-04-03 13:24:10 +00:00
minskim
b8b57cab53 Use dlopen.buildlink3.mk to build on platforms with libdl. 2005-03-31 17:17:06 +00:00
minskim
5b0dcc6d15 Linux defines __linux__, not __Linux__. 2005-03-31 17:06:28 +00:00
wiz
9995907d4f Convert to use bl3. 2005-03-30 19:51:35 +00:00
xtraeme
ea3b0754ae DragonFlyBSD support enabled, submitted by Todd Willey in PR pkg/29835. 2005-03-30 15:27:44 +00:00
cube
8ececc7346 Fix a build failure with some picky msgfmt, as found out by one of
Krister's latest bulk build.
2005-03-30 12:17:36 +00:00
martti
48e5ce9040 Fix xfce4 build problems
- make libxfce4gui depend on startup-notification
- rebuild the buildlink3.mk files to catch the new dependencies
2005-03-30 07:04:05 +00:00
seb
df3d641911 Update to version 1.2.3
Changes since last packaged version (1.2.2):
  FEATURES:
    * Graphequalizer script can now enable and disable the equalizer.
    * New DCOP call "player: equalizerEnabled" returns whether or not
      the equalizer is enabled.
    * OSD notification for mute.
    * Mute global shortcut, Win+M.
    * Add %comment token for comment display in OSD. (BR 100944)
    * View/Edit track entry into context menus of ContextBrowser and
      CollectionBrowser.
    * You can mark/unmark albums as compilations via CollectionBrowser's
      right-click contextmenu.
    * New DCOP call "collection: query(const QString& sql)".
      Allows to make arbitrary queries on the Collection database.
    * New DCOP call "playlist: removeCurrentTrack()". (BR 92973)
  CHANGES:
    * Show "Artist - Title" for compilation discs in CollectionBrowser
      and ContextBrowser.
    * Upgraded internal SQLite database to 3.2.0.
    * DCOP call saveCurrentPlaylist() now returns the path to current.xml.
  BUGFIXES:
    * Appropriate context menu entry for changing queue status for multiple
      playlist items.
    * Fix regression preventing dequeuing multiple selected tracks.
    * 'Show Toolbar' remembers its settings between sessions. (BR 98662)
    * When doing Musicbrainz lookup from the Context browser, search for the
      real track, not the whole album.
    * Memleak when a radio stream stalled. (BR 102047)
    * The Collection Scan finally checks for the right file modification time.
    * Adding a compilation disc from ContextBrowser was broken.
    * GStreamer-engine: Reduced the gap when switching to next track without
      crossfading.
    * GStreamer-engine: amaroK was swallowing the beginning of a track when
      Fade-in was set to zero. (BR 94472)
    * Use a better highlight color in the "Configure Collection" dialog.
      (BR 102059)
    * "Remove Duplicates / Missing" fixed. Removes dead entries correctly.
    * Fix units for samplerate. (BR 101528)
    * amaroK using 100% CPU on some systems. (BR 101524)
      (a KHTML bug which got exposed by code in amaroK 1.2.2)
2005-03-29 16:24:14 +00:00
schwarz
5c4f14268e added support for "old" (i.e. pre-6.X) IRIX audio libraries.
(approved by recht and jschauma)
2005-03-28 19:52:21 +00:00
wiz
1f2ba12d0f PKGREVISION bump for glut dependency removal (SDL/buildlink3.mk). 2005-03-27 15:43:32 +00:00
wiz
b8e0eb28f4 Remove FreeBSD RCS Ids. pkgsrc has diverged too much for syncing to be
useful.
2005-03-24 21:12:50 +00:00
wiz
da27f63b71 Does not really need GLUT or GLU, so replace Mesa/bl3 with MesaLib/bl3.
Addresses PR 29778 by Richard Rauch. Bump PKGREVISION.
2005-03-24 10:21:17 +00:00
markd
ae17c3b7c5 Update to KDE 3.4
Highlights at a glance

* Text-to-speech system with support built into Konqueror, Kate, KPDF
  and the standalone application KSayIt
* Support for text to speech synthesis is integrated with the desktop
* Completely redesigned, more flexible trash system
* Kicker with improved look and feel
* KPDF now enables you to select, copy & paste text and images from
  PDFs, along with many other improvements
* Kontact supports now various groupware servers, including eGroupware,
  GroupWise, Kolab, OpenGroupware.org and SLOX
* Kopete supports Novell Groupwise and Lotus Sametime and gets
  integrated into Kontact
* DBUS/HAL support allows to keep dynamic device icons in media:/ and
  on the desktop in sync with the state of all devices
* KHTML has improved standard support and now close to full support for
  CSS 2.1 and the CSS 3 Selectors module
* Better synchronization between 2 PCs
* A new high contrast style and a complete monochrome icon set
* An icon effect to paint all icons in two chosen colors, converting
  third party application icons into high contrast monochrome icons
* Akregator allows you to read news from your favourite RSS-enabled
  websites in one application
* Juk has now an album cover management via Google Image Search
* KMail now stores passwords securely with KWallet
* SVG files can now be used as wallpapers
* KHTML plug-ins are now configurable, so the user can selectively
  disable ones that are not used. This does not include Netscape-style
  plug-ins. Netscape plug-in in CPU usage can be manually lowered, and
  plug-ins are more stable.
* more than 6,500 bugs have been fixed
* more than 1,700 wishes have been fullfilled
* more than 80,000 contributions with several million lines of code and
  documentation added or changed
2005-03-23 21:28:33 +00:00
jmmv
f24d42b923 Fix a threading problem (mutexattr used after it's destroyed).
Patch was in PR pkg/29644 by Antoine Reilles, but I overlooked it.
Bump PKGREVISION to 1.
2005-03-23 10:52:54 +00:00
cube
66f61ba672 Update to 2.1.13.
2.1.13:
  * Brown paper bag bug in alsa backend introduced in the previous version.
2.1.12:
  * Fix mousewheel scrolling in the balance slider (pointed out by
          Philip Lafleur <headcheese@carolina.rr.com>)
  * es translatoion by YoaR <yoar@users.sourceforge.net>
  * Backend support for switches, not available in the frontend yet
2.1.11:
  * Added alsa support !
2.1.10:
  * Updated french translation by Jérôme UZEL <jerome.uzel@free.fr>
  * Fixed some spelling errors in the info thanks to A Costa <agcosta@gis.net>
  * React on horizontal scrolling correctly
2005-03-22 14:58:55 +00:00
seb
73757ec781 Update to version 1.2.2
Changes since last packaged version (1.2.1):
  FEATURES:
    * Context Browser CSS styles can now be installed and selected from the
      appearance settings.
    * Append Suggestions now has an icon in the statusbar.
    * When selecting multiple files, the "View/Edit Meta Information" dialog
      will show the tags that are common to all of them. (BR 100423)
    * A line graph equalizer added as a script "graphequalizer."
  CHANGES:
    * Add 25-track and 50-track smart-playlists.
    * Update current-track icons to include greater padding.
    * The contextbrowser now uses data:-URLs instead of temp image files, so
      they cannot be left on disk when amaroK terminates unexpectedly, and the
      Konqueror/Universal sidebar can show them when amaroK is not running.
  BUGFIXES:
    * escape '&' char in contextmenu entry (BR 101276)
    * Track is set as a number in the database, so shouldn't be added rounded
      by quotes. (BR 101208)
    * Rewrote the broken .pls playlist parser.
    * Handle delay gap between songs properly with aRts engine. (BR 90404)
    * Switched order of "Make playlist" and "Queue after current track" menus
      to avoid playlist destruction. (BR 96164 part 1)
    * Visualizations with LibVisual didn't work in some cases. (BR 99627)
    * amaroK could fail to build if the whole kdeextragear-1 module was
      compiled, due to conflicts with K3B on the MusicBrainz check. (BR 100906)
    * Images shown on OSD where incorrect for action notifications.
    * The handbook translations were not built when amaroK was installed from
      the tarball. I've written a new release script in Ruby, which can
      handle the new structure of kde-i18n. (BR 100498)
    * GStreamer-engine can now play vorbis radio streams properly, with
      full metadata support. (BR 89821)
    * GStreamer-engine now uses the "decodebin" autoplugger, which fixes
      the lag issues that some users had during crossfading. (BR 99570)
2005-03-22 01:09:08 +00:00
jmmv
7511dc8287 Merge some patches from PR pkg/29644 by Antoine Reilles:
- Use SA_NODEFER instead of SA_NOMASK (if the later is not available).
- Use a subdirectory under ${PREFIX}/share to place the data files.
- Print the failing address on SIGSEGV.
- Make an error message more descriptive (specially helpful when using OSS).
- Fix playback of multiple songs.
2005-03-20 15:21:04 +00:00
jmmv
142355a46a Update to 0.2.0. I'm doing this before the freeze ends because:
- 0.1.x doesn't work with libopendaap 0.3.x, the version we have in pkgsrc.
  Simply put, the package didn't build, as seen in several bulk builds.
- 0.1.x was designed for gstreamer 0.6, but we have 0.8 in pkgsrc (which
  are incompatible).  The package was patched to work with 0.8, but there
  might be problems, so it's safer to update.

Changes in 0.2.0:
- Add new Party Shuffle feature to allow selected ordering of songs from any
  available hosts.
- Total rewrite of application core for improved stability and scalability.
- Total rewrite of music player interface, fixes random freezes in gstreamer.
  (Works around gstreamer bug).
- Add support for gstreamer 0.8.
- Various GUI improvements
- Add support for playing local songs dragged into the Party Shuffle area.
- Add support for connecting to mt-daapd servers.
- Plenty of bug fixes.

Changes in 0.1.6:
- Fix slow play start when starting from slow computers.
- Remove host from list when it goes away.
- Various backend changes.
- Beat Birkhofer: Use the ESD sink (generally available on OS
2005-03-20 11:09:47 +00:00
jmmv
46676b0b42 Drop trailing whitespace. 2005-03-20 10:54:33 +00:00
wiz
096e8a4885 Update to 0.11.1, provided by Robert Lillack in PR 29027.
+ Spanish translations from Jose Cedeno
 + Russian translations from Nikolay Pavlov
 + French translations from Yann Cézard
 + ncmpc now supports SIGSTOP and SIGCONT (Ctrl-Z)
 + ncmpc now hides the cursor on the help screen
 + ncmpc now can enqueue and play a song from the browse screen (Enter)
 + configuration changes:
	o ncmpc no longer supports the old configuration file syntax
	o the crossfade time can now be definied in (crossfade-time)
	o support for ncurses mouse events is now optional (enable-mouse)
 + bugfixes:
	o fixed short option handling for multiple short options
	o %time% format fix from Aurelien Foret (use %02d for seconds)
	o Fixed abort (Ctrl-G) handling when saving playlist
	o survive select/find operations on empty lists (Niko Tyni)
2005-03-19 16:54:51 +00:00