summaryrefslogtreecommitdiff
path: root/audio
AgeCommit message (Collapse)AuthorFilesLines
2005-10-11This package has no manual page.reed1-1/+2
And the configure does not know --mandir, so use CONFIGURE_HAS_MANDIR=NO. Noticed in kristerw's bulk build.
2005-10-11add an option for enabling AAC support in daapdtonio3-7/+18
2005-10-10s/netbsd.org/NetBSD.org/hira1-2/+2
2005-10-10Use pthread variables instead of hard-wired -lpthread for the detectionjoerg2-1/+41
in configure. This allows DragonFly to get threading.
2005-10-10Set GNU_CONFIGURE to get config.guess / config.sub overridejoerg1-2/+2
2005-10-10Add DragonFly support.joerg7-94/+161
Fix the use of errno.h vs. sys/errno.h vs. extern int errno.
2005-10-10Add DrgaonFly support by handling it like FreeBSD.joerg2-1/+15
2005-10-10Add DragonFly support. Also check for -pthread as thread library.joerg2-3/+29
2005-10-10Reorder includes to workaround a bug in sys/socket.h on DragonFly.joerg2-6/+9
2005-10-10Don't hard code the thread library, use pkgsrc variables.joerg2-5/+7
2005-10-09Unlike FreeBSD and DragonFly, NetBSD's sys/errno.h differs from errno.h.joerg2-3/+12
Include the latter to get errno. This was hidden by the nested extern before.
2005-10-09Added a proper COMMENT. Before, the COMMENT from audio/bmp had been used.rillig1-1/+3
Fixes PR #31521.
2005-10-09This change addresses PR#31443ben7-15/+53
Copy config.h to faad2-config.h. Modify systems.h to refer to faad2-config.h, and install faad2-config.h. This situation is discussed here: http://lists.gnu.org/archive/html/automake/2000-10/msg00114.html Remove the undef of PACKAGE and VERSION, and add a 3rd non-empty argument to AM_INIT_AUTOMAKE. This situation is discussed here: http://lists.gnu.org/archive/html/automake/2000-10/msg00108.html Modify the condition from HAVE_GLIB_H to __G_LIB_H__, which was easier because faad2 doesn't depend on glib. Bump pkgrevision.
2005-10-08Bump revision due to a new dependency on a default libao plugin.jmmv7-14/+14
Addresses PR pkg/30920 by Chuck Cranor.
2005-10-08For packages using libao, add a default dependency on a plugin (eitherjmmv6-6/+31
oss or sun), based on the current OS name. This is only used if no other libao plugin is installed, and is binary package friendly. Addresses PR pkg/30920 by Chuck Cranor.
2005-10-06This change addresses PR#31443ben8-18/+52
Install header files in include/faad2 Install include/faad2/config.h Add include/faad2 to search path in buildlink3.mk Since software depending on mp4.h won't be able to build without this change, bump PKGREVISION and update BUILDLINK_DEPENDS.faad2 in buildlink3.mk
2005-10-05Remove some more *LEGACY* settings that are over a month old andwiz3-6/+3
thus were before 2005Q3.
2005-10-04Update abcde to version 2.3.2. Changes since 2.2.6:sketch4-30/+30
abcde 2.3.2 * Too fast... I forgot to make the tarball and change the version strings in several places. Fixed. -- Jesus Climent <jesus.climent@hispalinux.es> Fri, 19 Aug 2005 00:44:37 +0300 abcde 2.3.1 * The new "I knew there were going to be bugs" upstream release! * MKCUE needs to be passed some $CDROM as an option, or otherwise it will not read the CDROM, in case is not /dev/cdrom. * Also, make the CUEREADER a bit more general, since we might be using other CUE extractors. -- Jesus Climent <jesus.climent@hispalinux.es> Thu, 18 Aug 2005 23:44:20 +0300 abcde 2.3.0 * New upstream release! * Defining the tracknumber now resets the first track if given a number different than 1 (that is: abcde -T 1 2-10 creates songs 1 to 9). * Modified the FAQ to reflect the changes on Marillat's repo (Closes: #315724). * Should be "space" safe: works properly when the working directory contains a space (Closes: #147493). * Repared the CD query for the discid code. When failing to read a disc, actually report that there might be no disc in the drive. * Right now, walk over the different encoders we Depends: on in Debian and use the one available: if a user has a FLAC encoder, abcde will no install vorbis-tools, so it will fail to run out of the box (Closes: #321216) * Added CUE support. Still experimental... * Added FLAC on Ogg. Still not activated, since we cannot get comments added as a post-process action. * Applied patches from Fedora Core (Credit goes to Nils Philippsen <nphilipp@redhat.com>) * Added a post_read() function to be executed before ejecting the CD. * Typos reported by A Costa corrected (Closes: #311463) * Problem with abcde being run in a directory with files containing only numbers solved (Closes: #313628). * vorbiscomment uses now "-R" (Closes: #303566). * "-t" and "-T" use the first track as a starter for the track list. (Closes: #305749). * Added CDPARANOIACDROMBUS option to define -d in case of using IDE and SCSI in case of using ide-scsi emulation layer (Closes: #290768). * Define metaflac in abcde.conf (Closes: #303555) -- Jesus Climent <jesus.climent@hispalinux.es> Wed, 10 Aug 2005 07:00:26 +0300
2005-10-04Add DragonFly support.joerg6-1/+116
2005-10-03DragonFly has FreeBSD-style audio support, so use it like that.joerg2-4/+13
2005-10-03Override CONFIG_GUESS_OVERRIDE and CONFIG_SUB_OVERRIDE, since thejoerg6-8/+52
default deals only with two level hierachies. Add explicit saving of %ebp around cpuid, since GCC 3.4 doesn't like the register clobbering. Add DragonFly and OpenBSD conditionals. The latter are not tested, but wiz@ suggested them as most likely correct.
2005-10-03If you check for NAME_MAX, you should include limits.h. This fixes thejoerg2-1/+14
compilation on DragonFly.
2005-10-03Use the FreeBSD rules for DragonFly as well.joerg2-15/+42
2005-10-03Correct usage of errno and ctype macros. The former is wrong when threadjoerg7-17/+67
linking is active, the latter can result in segfaults. Bump revisions of mpg123, mpg123-esound and mpg123-nas for the ctype bugfix.
2005-10-03Allow this to build on DragonFly. Remove a nested extern for errno, GCCjoerg4-39/+70
complains about it anyway.
2005-10-03Allow building on DragonFly.joerg2-1/+30
2005-10-03Unbreak build with GCC 3.4+ (label at end of compound statement).joerg2-1/+22
Include string.h, when using functions from it.
2005-10-03Unbreak build with GCC 3.4 (label at end of compound statement). Includejoerg3-1/+43
string.h when using functions from it.
2005-10-02Update to version 1.3.2.seb3-18/+11
Package changes: aRts engine deactivated. This is prompted by a comment in http://bugs.kde.org/show_bug.cgi?id=106599 about arts-engine not being maintained. Also the xine and the gstreamer engines proved for me much more stable. Thanks to Sergey Svishchev, svs at ropnet dot ru, for the pointer. Changes since last packaged version (1.3.1): VERSION 1.3.2: FEATURES: * Tabs will open automatically when dragging files between tabs. Patch by Christian Baumgart <christianbaumgart@web.de>. * Two new dcop calls which allow scripts to read many of amaroK's configuration options. script readConfig(key) for strings, integers and bools. script readListConfig(key) for lists. Note that these functions aren't guaranteed to always return the latest settings (though many do). * Added a right click menu for blank areas of the playlist, with options to save, clear or shuffle the playlist and to "enable the dynamic mode & repopulate". * Playcount is shown in the tag dialog. * New volume slider, both better looking and better working than the old one. * Podcasts can be saved to any location. (BR 111059) * Added "Save as Playlist" option to the collection and file browser context menus as well. * Allow removing of items in the Media Device browser transfer queue. CHANGES: * Scroll wheel to switch tabs in context browser. * Repopulate button is enabled or disabled together with dynamic mode. * No warning dialog when starting if the directory File Browser is on doesn't exist anymore. It just reverts to home. (BR 99208) * Sorting on Collection Browser now shows "Unknown" items first, and "Various Artists" last. Years are sorted descending now. * When selecting 'Play' from the context menu on multiple items, it'll now play the first and queue the rest. BUGFIXES: * The Equalizer and QueueManager widgets were broken on window managers other than KWin. * "Year - Album" category in the Collection Browser didn't allow for dragging tracks or fetching cover images. * Xine engine no longer adds images to the playlist. * The delete key for removing playlist items works even if the file browser is open. (BR 100145) * Filenames with XML entity codes were not playable in dynamic mode and caused it to stop. (BR 108783) * If the album or artist contained "&", cover fetching wouldn't work properly. * When restarting, Playlist Browser items used for playlist shuffle wouldn't be properly marked, though they would be taken into account. * Don't crash after changing Podcast options, or after manually deleting its first item. * When renaming a playlist, the "." would be removed from the filename. Paych by Elliot Pahl <elliot.pahl@gmail.com>. (BR 112204) * When using next and previous on Tagdialog, after passing by a stream, the fields would be always disabled. (BR 112060) * Restarting track when in dynamic mode didn't work. * Fix issues with the GStreamer engine and alsasink, and reenable it. Patch by Vincent Tondellier <tonton-lists@team1664.org>. (BR 112103) * Dynamic playlist shuffle had some incorrect smart playlist handling. * Robustified the code for handling the '# of tracks in the playlist' part of the statusbar, it should not ever get out of sync with reality now. Nice side effect is you can see the track count increase while a playlist is loading. * "Last played - not in the last" smart playlists would only work for sqlite. (BR 112248) * Podcast and Dynamic subfolders are correctly restored on application start. (BR 112162) * Dropping tracks onto playlist browser folders will work correctly. * Invalid podcasts are no longer discarded on quit. (BR 112116) * Fixed playing of files that have special characters like '#' in helix engine. * Fixed issue where selecting multiple items after filtering the playlist would cause all the other items 'between' them (but invisible due to the filter) to also get selected.
2005-10-02Fix build with qt-3.3.5.seb1-1/+15
2005-10-01Alphabetize and otherwise reorder some entriessmb1-8/+8
2005-10-01Fix two cases of C99 variable declarations to make this pkg compile whenkristerw3-5/+35
using gcc 2.95.
2005-10-01Fix minor glitches in original commit: MESSAGE vs MESSAGE.NetBSD,smb3-3/+6
missing getttext-lib/buildlink3.mk, lack of RMD160 checksum
2005-10-01Added gtkpod 0.94.0smb1-1/+2
2005-10-01Initial pkgsrc entry for gtkpodsmb8-0/+131
2005-09-30Changes 1.0.12:adam10-45/+49
* Add support for FLAC and Apple's Core Audio Format (CAF). * Add virtual I/O interface (still needs docs). * Cygwin and other Win32 fixes. * Minor bug fixes and cleanups.
2005-09-29Do not install *.orig files that are left after patching.kristerw1-1/+2
2005-09-28Replaced "# defined" with "yes" in Makefile variables like GNU_CONFIGURE,rillig3-7/+7
NO_BUILD, USE_LIBTOOL.
2005-09-28Removed trailing white-space.rillig1-2/+2
2005-09-26Enable audio/moc.xtraeme1-1/+2
2005-09-26Initial import of moc-2.3.2 from pkgsrc-wip, packaged by Petterxtraeme5-0/+123
Schuller. MOC (music on console) is a console audio player for LINUX/UNIX designed to be powerful and easy to use. Noteworthy features include: * By default, files are decoded and played in a background process. This allows the user to quit the interface (e.g., if one needs to close the xterm) without affecting playback. It also allows attaching multiple interfaces (e.g. in multiple xterms) to the same player. * Playback should be smooth even under high cpu or I/O load, due to the use of output buffering in a separate thread. * There are no sound gaps in between files, because the next file to be played is precached while playing the current file. Note: To avoid conflicts with Qt's 'moc', the moc binary is called 'mocp'.
2005-09-26Populate PLIST. Bump PKGREVISION.wiz2-3/+4
2005-09-22Add a patch for the previous commit.minskim1-0/+13
2005-09-22- Use CONF_FILES to handle a configuration file, instead of using @exec.minskim3-6/+10
- Add missing files to PLIST. Bump PKGREVISION.
2005-09-22Fix PLIST. Bump PKGREVISION.minskim2-2/+4
2005-09-21make this work on solaris.dmcmahill2-10/+20
2005-09-18Remove nonexistent entries from PLIST. This should fix build errorhira2-38/+3
seen in bulk build. Bump PKGREVISION.
2005-09-14Some days it's harder than others to hide my paucity of brain cells.schmonz1-1/+1
Comment out the RCS Id tag. Thanks Hisashi T Fujinaka.
2005-09-11Do not install unnecessary Makefiles; they contained paths to buildwiz2-15/+8
directories. Add missing directory to PLIST. Bump PKGREVISION.
2005-09-08Catch some NetBSD statvfs() checks phrased alternatively as > 200030000abs2-4/+4
rather than >= 200040000 and one enterprisingly hidden as > 200050000