aboutsummaryrefslogtreecommitdiff
path: root/audio/libcddb
Commit message (Collapse)AuthorAgeFilesLines
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* - Add LICENSEDmitry Marakasov2018-08-281-3/+4
| | | | | | | | | - Switch to USES=localbase Approved by: portmgr blanket Notes: svn path=/head/; revision=478293
* Cleanup patches, a* categories.Mathieu Arnold2016-07-262-4/+4
| | | | | | | | | | Rename them to follow the make makepatch naming, and regenerate them. With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=419133
* Replace USES=libtool:oldver with USES=libtool or USES=libtool:keepla inTijl Coosemans2014-12-082-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the 32 ports that still use it. Bump PORTREVISION on their dependent ports except the ones that depend on these: audio/libogg audio/libvorbis devel/pcre ftp/curl graphics/jpeg graphics/libart_lgpl graphics/tiff textproc/expat2 textproc/libxslt In these cases the same trick as in the recent gettext update is used. The ports install a symlink with the old library version. When enough of their dependent ports have had regular updates the remaining ones can get a PORTREVISION bump and the links can be removed. Also remove the devel/pcre dependency from USE_GNOME=glib20. It causes over 2200 packages to depend on devel/pcre while less than 200 actually link with it. The glib20 package still depends on devel/pcre so this should not make a difference for ports with USE_GNOME=glib20. Also, libdata/pkgconfig/glib-2.0.pc lists pcre as a private library so USE_GNOME=glib20 should not propagate it. PR: 195724 Exp-run by: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=374303
* Strip binariesBaptiste Daroussin2014-09-222-1/+1
| | | | | | | Cleanup plist Notes: svn path=/head/; revision=368838
* When linking a library libA with a library libB using libtool, if libB.laTijl Coosemans2014-04-231-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | exists, libtool will add all libraries libB.la refers to (dependency_libs field) to the linker command line and store them in the dependency_libs field of libA.la. So everything that subsequently links with libA will also link to these extra libraries. This causes too much overlinking. This commit modifies Mk/Uses/libtool.mk so it empties the dependency_libs field in .la libraries during staging. However, because .la libraries have very limited use when dependency_libs is empty it makes sense to completely remove them during staging. So with this commit USES=libtool is modified to remove .la libraries and a new form (USES=libtool:keepla) is introduced in case they need to be kept (dependency_libs is still emptied). PORTREVISION is bumped on all ports with USES=libtool that install .la libraries. Most ports are also changed to add :keepla because .la libraries have to be kept around as long as there are dependent ports with .la libraries that refer to them in their dependency_libs field. In most cases :keepla can be removed again as soon as all dependent ports that install .la libraries have some form of USES=libtool added to their Makefile. PR: ports/188759 Exp-run: bdrewery Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=351936
* - Add patches to fix include guards (found by Clang).Tijl Coosemans2014-03-203-5/+26
| | | | | | | - Modernise port Makefile a bit. Notes: svn path=/head/; revision=348703
* - Remove NO_STAGE as these have been tested to be safeBryan Drewery2013-09-251-1/+0
| | | | | | | With hat: portmgr Notes: svn path=/head/; revision=328226
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-1/+2
| | | | | | | audio) Notes: svn path=/head/; revision=327706
* - Convert USE_ICONV=yes to USES=iconvMarcus von Appen2013-04-271-2/+1
| | | | | | | | | - Change USE_GNOME=pkgconfig|gnomehack to USES=pathfix|pkgconfig while here Reviewed by: bapt, kwm Notes: svn path=/head/; revision=316654
* Convert USE_PKGCONFIG -> USES=pkgconf for audio categoryBaptiste Daroussin2013-04-221-2/+1
| | | | Notes: svn path=/head/; revision=316287
* This changes almost all the "gnomehack" only USE_GNOME cases to USES= pathfix.Eitan Adler2013-03-191-1/+1
| | | | | | | | | | | | If a port used other USE_GNOME items it was untouched. The ports that used other USES were fixed by hand. PR: ports/177081 Reviewed by: bapt Approved by: portmgr (miwi) Notes: svn path=/head/; revision=314640
* Fix typoKoop Mast2012-10-071-1/+1
| | | | Notes: svn path=/head/; revision=305442
* convert libcddb and libsamplerate to only build depend on pkgconf, trackBaptiste Daroussin2012-10-061-7/+3
| | | | | | | dependency impact Notes: svn path=/head/; revision=305356
* - Remove WITH_FBSD10_FIX, is no longer neededMartin Wilke2011-11-091-1/+0
| | | | Notes: svn path=/head/; revision=285379
* - Fix build on FreeBSD 10Martin Wilke2011-10-281-0/+1
| | | | | | | Approved by: kwm Notes: svn path=/head/; revision=284547
* - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)Dmitry Marakasov2011-09-231-2/+2
| | | | | | | | | | | | - Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead PR: 157936 Submitted by: myself Exp-runs by: pav Approved by: pav Notes: svn path=/head/; revision=282282
* Remove USE_GNOME=gnometarget from ports. It has been a empty keyword sinceKoop Mast2011-08-111-1/+1
| | | | | | | | | | mid 2008. PR: ports/159624 Submitted by: Ruslan Mahmatkhanov <cvs-src@yandex.ru> Notes: svn path=/head/; revision=279506
* - Get Rid MD5 supportMartin Wilke2011-03-191-1/+0
| | | | Notes: svn path=/head/; revision=271305
* Tell configure where to find libiconv. Somehow gcc managed to compile it.Koop Mast2010-06-091-1/+4
| | | | | | | | | | | | Clang however didn't. [1] While here add dependancy on libiconv. This probably went unnoticed because gettext already pulls libiconv in. Submitted by: Andrius Morkunas <hinokind@gmail.com> [1] Notes: svn path=/head/; revision=256232
* - Update to 1.3.2Sylvio Cesar Teixeira2010-05-302-4/+4
| | | | Notes: svn path=/head/; revision=255315
* Update to 1.3.1Michael Johnson2009-12-292-4/+4
| | | | Notes: svn path=/head/; revision=246873
* - Switch SourceForge ports to the new File Release System: categories ↵Dmitry Marakasov2009-08-221-2/+1
| | | | | | | starting with A Notes: svn path=/head/; revision=240066
* A few typo fixes for ports/audio descriptions.Jimmy Olgeni2008-06-151-1/+1
| | | | Notes: svn path=/head/; revision=214897
* Update to 1.3.0Michael Johnson2007-04-163-5/+5
| | | | Notes: svn path=/head/; revision=190134
* [patch] audio/alac - cleanup non-supported FreeBSD versionsEdwin Groothuis2007-04-163-28/+1
| | | | | | | | | | | | | [patch] audio/grip - cleanup non-supported FreeBSD versions [patch] audio/jack - cleanup non-supported FreeBSD versions [patch] audio/libcddb - cleanup non-supported FreeBSD versions PR: ports/111646, ports/111660, ports/111662, ports/111668 Submitted by: Edwin Groothuis <edwin@mavetju.org> Appproved by: Michael Johnson <ahze@> Notes: svn path=/head/; revision=190062
* - Update to 1.2.2Michael Johnson2006-10-312-8/+7
| | | | Notes: svn path=/head/; revision=175593
* - Transfer MAINTAINER to multimedia@Michael Johnson2006-06-091-1/+1
| | | | | | | | Approved by: dhw (postmaster, for using multimedia@ as maintainer) gnome (gstreamer ports) Notes: svn path=/head/; revision=164918
* Conversion to a single libtool environment.Ade Lovett2006-02-232-1/+3
| | | | | | | Approved by: portmgr (kris) Notes: svn path=/head/; revision=156749
* Mass-conversion to the USE_AUTOTOOLS New World Order. The code presentAde Lovett2005-11-151-1/+1
| | | | | | | | | | | | | | | | | | | | in bsd.autotools.mk essentially makes this a no-op given that all the old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in exactly the same way as USE_AUTOTOOLS itself. Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME team -- all GNOME 2.12.x ports use it. Preliminary documentation can be found at: http://people.FreeBSD.org/~ade/autotools.txt which is in the process of being SGMLized before introduction into the Porters Handbook. Light blue touch-paper. Run. Notes: svn path=/head/; revision=148323
* - Add SHA256Michael Johnson2005-11-091-0/+1
| | | | | | | - Add SIZE to a few ports Notes: svn path=/head/; revision=147668
* - Update to 1.2.1Michael Johnson2005-08-282-3/+5
| | | | Notes: svn path=/head/; revision=141130
* - Update to 1.2.0Michael Johnson2005-07-243-4/+5
| | | | Notes: svn path=/head/; revision=139996
* - Update to 1.1.0Michael Johnson2005-07-113-4/+5
| | | | Notes: svn path=/head/; revision=138882
* - Update to 1.0.2Michael Johnson2005-05-102-3/+5
| | | | Notes: svn path=/head/; revision=134967
* - Update to 1.0.0Michael Johnson2005-04-173-4/+5
| | | | Notes: svn path=/head/; revision=133498
* update to 0.9.6Michael Johnson2004-10-303-20/+4
| | | | | | | | PR: ports/72771 Approved by: adamw (mentor) Notes: svn path=/head/; revision=120494
* Change email to new FreeBSD.org addressMichael Johnson2004-10-291-1/+1
| | | | | | | Approved by:adamw (mentor) Notes: svn path=/head/; revision=120470
* upgrade to 0.9.5Ying-Chieh Liao2004-07-226-22/+37
| | | | | | | | PR: 69393 Submitted by: maintainer Notes: svn path=/head/; revision=114380
* Apply a big libtool patch to allow porters to use the libtool installed byJoe Marcus Clarke2004-07-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the libtoolX ports instead of the one included with each port. Ports that set USE_LIBTOOL_VER=X will now use the ports version of libtool instead of the included version. To restore previous behavior, use the new macro, USE_INC_LIBTOOL_VER. Both macros accept the same argument: a libtool version. For example, to use the ports version of libtool-1.5, add the following to your Makefile: USE_LIBTOOL_VER= 15 To use the included version of libtool with extra hacks provided by libtool-1.5, add the following to your Makefile: USE_INC_LIBTOOL_VER= 15 With this change, ports that had to add additional libtool hacks to prevent .la files from being installed or to fix certain threading issues can now delete those hacks (after appropriate testing, of course). PR: 63944 Based on work by:eik and marcus Approved by: ade (autotools maintainer) Tested by: kris on pointyhat Bound to be hidden problems: You bet Notes: svn path=/head/; revision=113296
* - Switch to MASTER_SITE_SOURCEFORGE_EXTENDEDPav Lucistnik2004-05-251-1/+1
| | | | | | | | PR: ports/67190 Submitted by: michael johnson <ahze@ahze.net> (maintainer) Notes: svn path=/head/; revision=110002
* - Utilize lthackKirill Ponomarev2004-04-092-3/+3
| | | | | | | | PR: ports/65348 Submitted by: michael johnson <ahze@ahze.net> Notes: svn path=/head/; revision=106550
* Whoa there, boy, that's a mighty big commit y'all have there...Ade Lovett2004-03-141-1/+1
| | | | | | | | | | | | | | | | | | Begin autotools sanitization sequence by requiring ports to explicitly specify which version of {libtool,autoconf,automake} they need, erasing the concept of a "system default". For ports-in-waiting: USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13 USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213 USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14 Ports attempting to use the old style system after June 1st 2004 will be sorely disappointed. Notes: svn path=/head/; revision=103963
* Add libcddb, a library that implements the different protocols (CDDBP,Pav Lucistnik2004-03-016-0/+70
HTTP, SMTP) to access data on a CDDB server (http://freedb.org). It tries to be as cross-platform as possible. The initial libary will have a C API. PR: ports/63576 Submitted by: michael johnson <ahze@ahze.net> Notes: svn path=/head/; revision=102671