summaryrefslogtreecommitdiff
path: root/audio/easytag
AgeCommit message (Collapse)AuthorFilesLines
2010-09-14Bump dependency on pixman to 0.18.4 because cairo-1.10 needs thatwiz1-2/+2
version, and bump all depends. Per discussion on pkgsrc-changes.
2010-06-13Bump PKGREVISION for libpng shlib name change.wiz1-2/+2
Also add some patches to remove use of deprecated symbols and fix other problems when looking for or compiling against libpng-1.4.x.
2009-08-26bump revision because of graphics/jpeg updatesno1-2/+2
2009-07-22Remove USE_DIRS from pkgsrc.wiz1-2/+1
Shared directories can now be created independently by the pacakges needing them and will be removed automatically by pkg_delete when empty. Packages needing empty directories can use the @pkgdir command in PLIST. Discussed and ok'd in thread starting at http://mail-index.netbsd.org/tech-pkg/2009/06/30/msg003546.html
2009-06-14Remove @dirrm entries from PLISTsjoerg1-4/+1
2009-02-24Drop maintainership.wiz1-2/+2
2008-06-12Add DESTDIR support.joerg1-1/+3
2007-11-21update for changed signature of MP4GetMetadataCoverArt() in libmp4v2-1.6.1,drochner4-3/+19
bump required version of libmp4v2 and PKGREVISION should resolve PR pkg/37418 by Johann Franz (the other half of it)
2007-10-16Remove some legacy support after branching 2007Q3.wiz1-3/+1
2007-07-07Rename option from easytag-gtk2 to easytag, and add compat code for previouswiz1-2/+4
option name.
2007-05-10Update to 2.1:wiz2-6/+6
2.1 - May 7th, 2007 : ===================== * Fixed a crash in the Artist/Album view after saving files, * Italian translation updated (thanks to Costantino Ceoldo), * Brazilian Portuguese translation updated (thanks to doutor.zero), * French translation updated.
2007-05-03Update to 2.0.2:wiz2-6/+6
2.0.2 - March 1st, 2007 : ========================= * Fixed a runtime crash on Mac OS 10.x platform (thanks to Timothy Lee), * When adding a picture to a file, the selection window starts on the same directory of the file, * Fixed command buttons not disabled when using the scanner command, * Fixed a compilation bug under Solaris (thanks to Ben Taylor), * Fixed sorting of filenames containing some particular UTF-8 characters, * Fixed a crash when double clicking over the file list when no file loaded, * Fixed a crash when deleting severals files, * Some code improvments to increase speed, * Czech translation updated (thanks to Zbynek Mrkvicka), * German translation updated (thanks to Götz Waschk), * French translation updated.
2007-04-21Update to 2.0.1:wiz2-6/+6
2.0.1 - April 12th, 2007 : ========================== * Added WavPack support (thanks to Maarten Maathuis), * Added a log area in the main window to avoid sending all messages to the console, * Added local access to the cddb search for the automatic mode, * Fixed some bugs in the cddb window, * Fixed the reloading of the current which was done two times when changing state of the "Show hidden directories" checkbox, * Fixed Glib warnings on startup, * Italian translation updated (thanks to Costantino Ceoldo), * Brazilian Portuguese translation updated (thanks to doutor.zero), * French translation updated.
2007-02-27Update to 2.0, based on audio/easytag-devel.wiz6-169/+75
Changes to previous version in easytag-devel (1.99.13): 2.0 - February 21th, 2007 : =========================== * Added buttons in toolbar to search files, to search in cddb and to write playlist, * Added in the cddb window the option to match lines with the Levenshtein algorithm, * Fixed crash when no audio player is defined and problem of checking in the preferences window, * Added automatically removing of APE tag in a MP3 file, * Improved decoding of Arabic characters, * Added French Users Guide (Than to Emmanuel Brun), * Swedish translation updated (thanks to Anders Strömer), * Brazilian Portuguese translation updated (thanks to doutor.zero), * Czech translation updated (thanks to Zbynek Mrkvicka), * German translation updated (thanks to Götz Waschk), * Italian translation updated (thanks to Costantino Ceoldo), * Japanese translation updated (thanks to Takeshi Aihana), * French translation updated and typo fixed (thanks to Emmanuel Brun). Windows version : * Fixed autocompletion of year when a partial one was entered, * Fixed crash when no audio player selected in preferences window, * Improved detection of the locale.
2007-02-22pkglint cleanup; update HOMEPAGE/MASTER_SITES.wiz1-2/+2
From Sergey Svishchev in private mail.
2007-01-12Actually, do support flac-1.1.3 by using a patch fromwiz3-2/+136
ftp.altlinux.org /pub/people/thresh
2007-01-12Does not build with flac-1.1.3; I am not going to backport the fix, sincewiz1-2/+1
easytag-devel already supports the new API, use that instead.
2007-01-07PKGREVISION bump for flac shlib major bump and corresponding ABIwiz1-2/+2
depends bump.
2006-12-18Drop maintainership, I am tracking easytag-devel.wiz1-2/+2
2006-04-17Strip ${PKGLOCALEDIR} from PLISTs of packages that already obeyjlam1-15/+15
PKGLOCALEDIR and which install their locale files directly under ${PREFIX}/${PKGLOCALEDIR} and sort the PLIST file entries. From now on, pkgsrc/mk/plist/plist-locale.awk will automatically handle transforming the PLIST to refer to the correct locale directory.
2006-04-13xgettext is now a proper tool, so we can just add it to USE_TOOLS.jlam1-3/+2
2006-04-13BUILD_USE_MSGFMT and USE_MSGFMT_PLURALS are obsolete. Replace withjlam1-3/+2
USE_TOOLS+=msgfmt.
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg1-1/+2
2005-06-01Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc.jlam1-2/+1
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-05-22Remove USE_GNU_TOOLS and replace with the correct USE_TOOLS definitions:jlam1-2/+2
USE_GNU_TOOLS -> USE_TOOLS awk -> gawk m4 -> gm4 make -> gmake sed -> gsed yacc -> bison
2005-04-19Update to 1.1:wiz2-6/+6
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-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-02-23Add RMD160 digests to the SHA1 ones.agc1-1/+2
2004-11-26Update to 1.0 (snj made me do it!):wiz3-7/+7
1.0 - November 20th, 2004 : =========================== * Added ability to request Cddb database automatically from the selected files (computing the CddbId) (thanks to Justus Schwartz), * When applying Cddb results to the files, the cddb genre is converted to an ID3 genre, * Improved settings of character set (for ID3 tags) to allow you to fix some tags (for example if tags were written with UTF-8 instead of ISO-8859-15), * Fixed request to cddb for getting album tracks, * Fixed UTF-8 strings into easytag.desktop (thanks to Ville Skyttä), * Some updates in the USERS-GUIDE files (thanks to David Greaves), * A new Danish translation (thanks to Morten Brix Pedersen), * French translation updated, * Hungarian translation updated (thanks to Nagy Boldizsar). * Russian translation updated (thanks to Andrey Astafiev), * Dutch translation updated (thanks to Björn Olievier), * Czech translation updated (thanks to Milan Siebenburger), * Japanese translation updated (thanks to Takeshi Aihana), * Italian translation updated (thanks to Kostantino), * German translation updated (thanks to Götz Waschk).
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv1-1/+2
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-06-30Update to 0.31:wiz3-10/+9
0.31 - May 29th, 2004 : ======================= * Tried to fixed the problem to get list of selected files after deleting of files, * Added ability to set/unset padding in ID3v2 tags, * Added an option in the 'Playlist window' to write only the selected files or directly all the files in the playlist, * Polish translation updated (thanks to Artur Polaczynski), * Russian translation updated (thanks to Andrey Astafiev), * Romanian translation updated (thanks to George Pauliuc), * Dutch translation updated (thanks to Björn Olievier), * Japanese translation updated (thanks to Takeshi Aihana), * Czech translation updated (thanks to Milan Siebenburger), * Italian translation updated (thanks to Kostantino). 0.30.2 - March 25th, 2004 : =========================== * Some tabs in the preferences window have been reorganized, * Fixed in configure script, the detection of libFLAC when using the switch --disable-ogg, * Fixed a wrong numbering in sub directories for the new track field button (to set the number of files in the directory to the track field), * German translation updated (thanks to Götz Waschk). 0.30.1 - March 22th, 2004 : =========================== * Added support of FLAC Vorbis tag for FLAC files (if the file has no FLAC vorbis file, it tries to read the ID3 tag) (thanks to Pavel Minayev), * Added support of APE tag for OptimFROG files (.ofr, .ofs), * Added ability to write by default ID3v2.3 tags to ISO-8859-1, * Version of libFLAC (1.0.3) supplied in the package was removed, * Added ability in the Process Fields scanner to convert a character by an other on (patch from Ben Hearsum), * Added ability to display the files by Artists and by Albums, * Added ability to set independently the character conversion for the Tag scanner and the Rename File scanner, * Added a new button to set the number of files in the directory to the track field, * Added the entry "Tag selected files with this field" in the popup menu of tag entries, * Added a sub menu Scanner into popup menu over the file list, * When resizing the main window, the tag area doesn't grow, * The fields identifiers for Ogg Vorbis tag are written with upper letters (ex: TITLE= instead of title=) as they are recommended by Vorbis standard, * The CDDB results can be applied to the files selected in the main list, * Fixed the execution of scanner, when using entries of the main menu 'Scanner' in the menu bar, * Fixed the CDDB server name, that wasn't saved in the configuration file, * Fixed connection to CDDB under FreeBSD 5.1 (thanks to from Jan Kanty Palus), * Fixed a bug when using "Repeat action for the rest of the files" when deleting files, * Fixed a bug that doesn't save the changed files, which aren't selected, when changing of directory or exiting, even if you select the button "Yes" in the dialog box, * Fixed a bug when renaming files with the scanner and using the character conversion (some spaces or underscores weren't replaced), * Fixed some memory leaks (in browser, scanner, ...), * Updated easytag.desktop and EasyTAG icon, * French translation updated, * Spanish translation updated (thanks to Fernando), * Italian translation updated (thanks to Kostantino), * Dutch translation updated (thanks to Björn Olievier), * Ukrainian translation updated (thanks to Cawko Xakep).
2004-04-14Make use of the new USE_DIRS variable, instead of directly depending on thejmmv1-2/+2
*-dirs packages.
2004-04-11bl3ifyxtraeme1-6/+6
2004-03-08Handle some shared directories by depending on (or updating dependancies tojmmv1-3/+3
the latest versions) xdg-dirs, xdg-x11-dirs or gnome*-dirs. Bump PKGREVISION.
2004-02-14LIBTOOL_OVERRIDE and SHLIBTOOL_OVERRIDE are now lists of shell globsjlam1-2/+1
relative to ${WRKSRC}. Remove redundant LIBTOOL_OVERRIDE settings that are automatically handled by the default setting in bsd.pkg.mk.
2004-01-22replace deprecated USE_GMAKE with USE_GNU_TOOLS+=make.grant1-2/+2
2003-12-08Bump PKGREVISION for libogg (or, in 5 cases, libao) updates.wiz1-1/+2
2003-10-05Update to 0.30:wiz2-5/+5
0.30 - September 8th, 2003 : ============================ * Added an option to define the number of characters to use for the Track field (see Misc tab), * Added a button in the browser to jump to the parent directory, * Pressing the Enter key in the tag entries set the focus to the next entry, * The selection of files in the search window select also the corresponding files in the main list, * Added ability to select files of the same directory by double clicking over the list, triple clicking select all files, * The tree browser is sorted again after renaming a directory, * The tree browser is sorted ignoring the word case, * Content of the clipboard is automatically set in the 'Words' field of the CDDB window and Search window, when opening them, * Added button in the CDDB window to filtrate the 'red' lines in the albums list, * Added button in the CDDB window to select/unselect all lines and invert the selection in the tracks album list, * Fixed position in the list when selecting a file with the mouse (use of the next or previous button select the wrong line), * Fixed state of the Undo and Redo buttons when using the command to select all files and invert the selection, * Czech translation updated (thanks to Milan Siebenburger), * German translation updated (thanks to Götz Waschk).
2003-09-04Update to 0.29:wiz2-5/+5
0.29 - September 1rst, 2003 : ============================= * When selecting a "changed" file, the background color is set to red (as for the filename in the normal state), * Fixed problem when selecting file after to have been sorted, * Fixed problem to display file data, when selecting finally only one file of the last selected files, * Added ability to sort the CDDB results by track name or track number or manually, * Added detection and linking with iconv in the configure script to avoid compilation error, * When using buttons 'first', 'previous', 'next' and 'last', only one line is selected, * Russian translation updated (thanks to Andrey Astafiev), * Dutch translation updated (thanks to Björn Olievier), * Japanese translation updated (thanks to Takeshi Aihana), * Polish translation updated (thanks to Artur Polaczynski), * Italian translation updated (thanks to Lorenzo Cappelletti), * Romanian translation updated (thanks to George Pauliuc), * German translation updated (thanks to Götz Waschk).
2003-07-30Update to 0.28.1:wiz2-6/+5
* Added the ability to perform an action only for the selected files : to set a field to other files, to remove tags, to scan files, to save files, to delete files, to use undo and redo, to open files with an external program, * Added ability to (un)select all files or to invert the selection, * Changed writing of the genre in ID3v2.3 tags (according to id3v2.3.0 standard), * Added displaying of number of files in the directory of the selected file (in the browser area), * Added preview for the Fill Tag scanner, * Added buttons in the toolbar to select all files and invert the selection, * Cleanup in the toolbar and in menus, * Warning : Many shortcuts have been changed!, * A lot of code cleanup, * Fixed a small bug in the preview of the Rename File Scanner, * Fixed problem of zombie process when terminating the audio player (thanks to Tony Mancill), * Fixed a bug when starting with some gtk themes as H2O (no window appeared) (thanks to Tony Mancill), * Fixed a bug when applying CDDB results to the files excepted for the filename, * Romanian translation updated (thanks to George Pauliuc), * German translation updated (thanks to Götz Waschk), * Russian translation updated (thanks to Andrey Astafiev).
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-07-13PKGREVISION bump for libiconv update.wiz1-1/+2
2003-06-05Update to 0.28, from Soren Jacobsen in PR 21790.wiz3-20/+5
* Added ability to add the CRC-32 value (for files with ID3 tags only) as default comment when using scanner (thanks to Oliver), * Added ability to write the playlist with DOS directory separator (thanks to Oliver), * Added ability to write the playlist in the parent directory (thanks to Oliver), * Fix for Ogg Vorbis files : skip the ID3v2 tag (if it exists) to open the file without error, * Bugfixes in the playlist generator (character replacement, ...), * Fixed refreshing of file path when renaming a directory, * Now the configuration and history files were created at the start up to avoid error messages, * Added some patch for NetBSD (thanks to Soren Jacobsen), * French translation updated, * German translation updated (thanks to Götz Waschk).
2003-05-23Update to 0.27.1nb1: remove another trailing slash for mkdir(2).wiz3-2/+16
Soren Jacobsen contributed the patch in PR 21463.
2003-05-08Update to 0.27.1.wiz2-12/+5
* Added support of APE tag for MusePack and Monkey's Audio files (thanks to Artur Polaczyñski), * Cast and pointers fixes for a clean compilation on 64bits platform (thanks to Philipp Thomas), * Fixed a bug when using "Open File With..." after renaming a file without reloading the directory (it was using the old filename), * Cleaning in the configure script (thanks to Philipp Thomas), * When loading files with id3 tags, it checks if it has the versions of tags specified in the preferences window, * Genre in ID3v2 tag : use only the string for an unknowm id3v1 genre, * Added the missing instruction "#include <errno.h>" in about.c that may produce compilation problems, * Dutch translation updated (thanks to Björn Olievier), * Polish translation updated (thanks to Artur Polaczyñski), * Czech translation updated (thanks to Milan Siebenburger), * German translation updated (thanks to Götz Waschk).
2003-05-02Dependency bumps, needed because of devel/pth's major bump, and relatedwiz1-2/+2
dependency bumps.
2003-03-05PKGREVISION++ for id3lib dependency bump.wiz1-1/+2
2003-02-14Update to 0.27:wiz4-40/+14
* Fixed an other filepointer leak when renaming file and directories (thanks to Artur Polaczynski), * Improved speed when applying a field to all other files, removing all tags and scanning all files, * Fixed problem with too long track name in CDDB albums, * When getting files list of a cddb album, it tries to reconnect severals ti mes if the connection fails, * Ability to run the scanner when loading filenames from a TXT file, * Ability to run the scanner when loading fields from CDDB results, * Ability to load CDDB results only for the selected lines, * Ability to generate the playlist name from mask codes, * Added tab in "About" window to display the ChangeLog, * Fixed detection of version id3lib (due to an error in configure.in), * Added german help documentation (thanks to Daniel Pichler), * Russian translation updated (thanks to Andrey Astafiev), * German translation updated (thanks to Götz Waschk).
2003-02-05gnome[12]-dirs shouldn't have buildlink2.mk files as they don't havejlam1-3/+4
either shared libraries or header files. Remove references to these buildlink2.mk files from package Makefiles.
2003-01-27Depend on gnome1-dirs to handle shared directories. Bump PKGREVISION.jmmv2-4/+5