aboutsummaryrefslogtreecommitdiff
path: root/audio/zinf/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* a-b: Add missing USES={gnome,php,sdl,xorg}Tobias Kortkamp2019-11-081-1/+2
| | | | Notes: svn path=/head/; revision=517040
* Drop the ipv6 virtual category for a* category as it is not relevant anymoreBaptiste Daroussin2019-10-091-1/+1
| | | | Notes: svn path=/head/; revision=514128
* First step at deorbitting esound:Baptiste Daroussin2019-02-251-5/+4
| | | | | | | remove esound options where it is possible to Notes: svn path=/head/; revision=493867
* Update `databases/gdbm' to version 1.18.1, an important bugfix releaseAlexey Dokuchaev2018-11-111-1/+1
| | | | | | | | | | | | | which restores compatibility with old databases (version 1.8) and some later versions which were built without mmap(2) support. Due to shlib version change, bump port revisions of the consumer ports. PR: 233059 Exp-run by: antoine Approved by: maintainer (johans, numerous timeouts) Notes: svn path=/head/; revision=484696
* Add -znotext to LDFLAGS on i386, for lldEd Maste2018-09-261-0/+1
| | | | | | | | | | | | | | These ports link some non-PIC code, which fails with lld as it defaults to disallowing relocations against read-only segments. For i386 we can just add -znotext unconditionally: for GNU BFD ld it just affirms BFD's existing default. PR: 214864 Approved by: portmgr (lld blanket) Sponsored by: The FreeBSD Foundation Notes: svn path=/head/; revision=480747
* audio/zinf: Fix build with Clang 6Tobias Kortkamp2018-08-251-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | src/zip_header.cpp:43:31: error: constant expression evaluates to 234 which cannot be narrowed to type 'char' [-Wc++11-narrowing] char arjHeaderSign[3]={ 0x60,0xea, 0 }; ^~~~ src/zip_header.cpp:43:31: note: insert an explicit cast to silence this issue char arjHeaderSign[3]={ 0x60,0xea, 0 }; ^~~~ static_cast<char>( ) src/zip_header.cpp:120:15: error: assigning to 'char *' from incompatible type 'char' h->filename='\0'; ^~~~ src/zip_header.cpp:282:15: error: assigning to 'char *' from incompatible type 'char' h->filename='\0'; ^~~~ http://beefy11.nyi.freebsd.org/data/head-i386-default/p477696_s338122/logs/errors/zinf-2.2.5_22.log (and a lot more errors like these and std::bind and bind confusion if one gets past these) Notes: svn path=/head/; revision=477990
* Work around the lack of definition of union semun per POSIX.Brooks Davis2018-03-021-0/+1
| | | | | | | | | | | | | | | When feasible do this by adding -D_WANT_SEMUN to CFLAGS or CXXFLAGS. Where this fails due to ports not honoring C*FLAGS, patch using __FreeBSD_version to enable the definition. PR: 224300, 224443 (exp-run) Approved by: portmgr (antoine) Exp-run: antoine Sponsored by: DARPA, AFRL Differential Revision: https://reviews.freebsd.org/D14137 Notes: svn path=/head/; revision=463452
* audio/zinf: unbreak with gcc5 or earlier after r433187Jan Beich2017-02-081-1/+1
| | | | | | | | | | | | | src/player.cpp: In member function 'void Player::HandlePrefsChanged(Event*)': src/player.cpp:1970:40: error: 'stoi' was not declared in this scope nPort = stoi(buffer.substr(pos)); ^ Reported by: marino Pointy hat to: jbeich (forgot libc++ leaks C++11) Notes: svn path=/head/; revision=433662
* audio/zinf: unbreak with libc++ 3.9Jan Beich2017-02-031-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | src/Http.cpp:771:11: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char* cp = strstr(buffer, "Content-Length:"); ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ src/downloadmanager.cpp:401:15: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char* extension = strrchr(url, '.'); ^ ~~~~~~~~~~~~~~~~~ src/downloadmanager.cpp:561:11: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char* cp = strstr(buffer, "Content-Length:"); ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ src/downloadmanager.cpp:575:11: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char* cp = strstr(buffer, "Last-Modified:"); ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ src/downloadmanager.cpp:799:24: error: assigning to 'char *' from incompatible type 'const char *' file = strchr(item->SourceURL().c_str() + 7, '/'); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ src/player.cpp:552:21: error: assigning to 'char *' from incompatible type 'const char *' extension = strrchr(url.c_str(), '.'); ^~~~~~~~~~~~~~~~~~~~~~~~~ src/player.cpp:1109:17: error: assigning to 'char *' from incompatible type 'const char *' temp_proto = strstr(title, "://"); ^~~~~~~~~~~~~~~~~~~~ src/player.cpp:1129:15: error: assigning to 'char *' from incompatible type 'const char *' temp_ext = strrchr(title, '.'); ^~~~~~~~~~~~~~~~~~~ src/player.cpp:1964:14: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char *port = strchr(buffer.c_str(),':'); ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~ src/playlist.cpp:1964:15: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char* extension = strrchr(url, '.'); ^ ~~~~~~~~~~~~~~~~~ src/playlist.cpp:2045:15: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char* extension = strrchr(url, '.'); ^ ~~~~~~~~~~~~~~~~~ src/ThemeZip.cpp:150:15: error: assigning to 'char *' from incompatible type 'const char *' pPtr = strrchr(oFile.c_str(), DIR_MARKER); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ src/wavoutpmo.cpp:127:10: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char *pPtr = strrchr(GetUrl().c_str(), DIR_MARKER); ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ src/ZinfTheme.cpp:1768:26: error: assigning to 'char *' from incompatible type 'const char *' pExtension = strrchr((*i).c_str(), '.'); ^~~~~~~~~~~~~~~~~~~~~~~~~~ pPtr = strrchr(m_oPath.c_str(), '/'); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ unix/src/cdpmo.cpp:116:10: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char *tracknumber = strrchr(url, '/'); ^ ~~~~~~~~~~~~~~~~~ unix/src/GTKPreferenceWindow.cpp:1755:20: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char *name = strrchr((*i).second.c_str(), '/'); ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ unix/src/gtkmusicbrowser.cpp:1206:11: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char *ext = strrchr(m_currentListName.c_str(), '.'); ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ misc.cpp:109:14: error: assigning to 'char *' from incompatible type 'const char *' cp = strrchr(url, '.'); ^~~~~~~~~~~~~~~~~ id3lib.cpp:366:11: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char *ptr = strrchr(url, '.'); ^ ~~~~~~~~~~~~~~~~~ id3lib.cpp:426:11: error: assigning to 'char *' from incompatible type 'const char *' ptr = strrchr(url, '.'); ^~~~~~~~~~~~~~~~~ id3lib.cpp:488:11: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char *ptr = strrchr(url.c_str(), '.'); ^ ~~~~~~~~~~~~~~~~~~~~~~~~~ vorbis.cpp:151:11: error: assigning to 'char *' from incompatible type 'const char *' ptr = strrchr(url, '.'); ^~~~~~~~~~~~~~~~~ Reported by: pkg-fallout Notes: svn path=/head/; revision=433187
* Four audio ports: USES+= alias (for DF)John Marino2016-12-181-1/+1
| | | | Notes: svn path=/head/; revision=428814
* audio/zinf: document ncurses requirementJohn Marino2016-08-231-2/+2
| | | | | | | | While here, import several dports patches to add missing headers for c++. Notes: svn path=/head/; revision=420749
* Remove ${PORTSDIR}/ from dependencies, Mk and categories a, b, and c.Mathieu Arnold2016-04-011-4/+4
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412344
* - Remove libtool hacks and patches that are now handled by USES=libtoolTijl Coosemans2015-04-181-1/+0
| | | | | | | - Remove CONFIG_SHELL from CONFIGURE_ENV because bsd.port.mk handles that Notes: svn path=/head/; revision=384215
* audio category: Remove $PTHREAD_LIBSJohn Marino2015-03-251-1/+1
| | | | | | | | | xmcd didn't pass check-plist (pre-existing), fixed. approved by: PTHREAD blanket Notes: svn path=/head/; revision=382272
* - Remove vestiges of alpha supportAlex Kozlov2015-01-151-4/+0
| | | | | | | Approved by: portmgr (erwin) Notes: svn path=/head/; revision=377141
* USES=libtoolBaptiste Daroussin2014-04-221-2/+3
| | | | | | | strip binaries Notes: svn path=/head/; revision=351856
* Chase last audio/id3lib port changeAntoine Brodin2014-03-011-1/+1
| | | | Notes: svn path=/head/; revision=346715
* Bump PORTREVISION, adding pkgconf build dependency in last commit results inPawel Pekala2014-02-181-1/+1
| | | | | | | | | installation of all files named in pkg-plist and fixes plist problems. Requested by: antoine@ Notes: svn path=/head/; revision=344942
* - Fix build with clangPawel Pekala2014-02-181-33/+14
| | | | | | | | | | | | - Support staging - Convert to new options framework PR: ports/186803 (based on) Submitted by: Mathias Monnerville <mathias@monnerville.com> MFH: 2014Q1 Notes: svn path=/head/; revision=344932
* In preparation for making libtool generate libraries with a sane name, fix allBaptiste Daroussin2013-12-111-3/+3
| | | | | | | | | LIB_DEPENDS in audio With hat: portmgr Notes: svn path=/head/; revision=336166
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | audio) Notes: svn path=/head/; revision=327706
* - Convert to new perl frameworkAndrej Zverev2013-08-031-2/+1
| | | | | | | - Trim Makefile header Notes: svn path=/head/; revision=324181
* Chase audio/arts removalBaptiste Daroussin2013-07-261-12/+3
| | | | Notes: svn path=/head/; revision=323767
* - Convert USE_GETTEXT to USES (part 4)Alex Kozlov2013-04-261-2/+1
| | | | | | | Approved by: portmgr (bapt) Notes: svn path=/head/; revision=316596
* Mechanically convert unmaintained ports which use "gnomehack" to use ↵Eitan Adler2013-03-281-6/+3
| | | | | | | "pathfix" instead. Notes: svn path=/head/; revision=315433
* libogg.so.8: Bump PORTREVISION for ports that depend on libogg,Christian Weisgerber2012-07-191-1/+1
| | | | | | | directly or indirectly (via libvorbis, libtheora). Notes: svn path=/head/; revision=301188
* - update png to 1.5.10Dirk Meyer2012-06-011-1/+1
| | | | Notes: svn path=/head/; revision=297915
* - Remove LIB_DEPENDS on musicbrainz its toastPhilip M. Gollucci2012-03-091-2/+1
| | | | | | | | | | - Bump PORTREVISION PR: ports/165834 Submitted by: Jason E. Hale <bsdkaffee@gmail.com> Notes: svn path=/head/; revision=292990
* - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)Dmitry Marakasov2011-09-231-3/+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
* - Track dependencies after databases/gdbm updateGabor Kovesdan2011-09-121-2/+2
| | | | Notes: svn path=/head/; revision=281708
* 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
* Bump PORTREVISION for ports that depend on libogg, directly or indirectlyChristian Weisgerber2010-06-061-1/+1
| | | | | | | (via libvorbis, libtheora). Notes: svn path=/head/; revision=255958
* Bounce PORTREVISION for gettext-related ports. Have fun, ya'll.Ade Lovett2010-05-311-1/+1
| | | | Notes: svn path=/head/; revision=255371
* - update to 1.4.1Dirk Meyer2010-03-281-1/+1
| | | | | | | | Reviewed by: exp8 run on pointyhat Supported by: miwi Notes: svn path=/head/; revision=251605
* - update to jpeg-8Dirk Meyer2010-02-051-1/+1
| | | | Notes: svn path=/head/; revision=249285
* Bump PORTREVISION after libogg and libvorbisfile major version increment.Christian Weisgerber2009-07-061-1/+1
| | | | Notes: svn path=/head/; revision=237283
* Bump portrevision due to upgrade of devel/gettext.Edwin Groothuis2008-06-061-1/+1
| | | | | | | | | | | | | The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav) Notes: svn path=/head/; revision=214428
* - Remove unneeded dependency from gtk12/gtk20 [1]Martin Wilke2008-04-191-4/+2
| | | | | | | | | | | | | | | | | | - Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG - Remove X11BASE support in favor of LOCALBASE or PREFIX - Use USE_LDCONFIG instead of INSTALLS_SHLIB - Remove unneeded USE_GCC 3.4+ Thanks to all Helpers: Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr, ehaupt, nox, itetcu, flz, pav PR: 116263 Tested on: pointyhat Approved by: portmgr (pav) Notes: svn path=/head/; revision=211584
* - Chase increase of audio/libvorbis shlib version.Martin Wilke2007-07-281-2/+2
| | | | | | | - Bump PORTREVISION Notes: svn path=/head/; revision=196462
* - Fix the build with GCC 4.2 [1]Alexey Dokuchaev2007-06-291-1/+1
| | | | | | | | | | | - Drop stupid -esound suffix, it just one of many sound servers/proxies available today, nothing special to require such attribution - Kill EOL whitespace in pkg-descr Reported by: pointyhat (logs) [1] Notes: svn path=/head/; revision=194453
* - Welcome X.org 7.2 \o/.Florent Thoumie2007-05-191-1/+1
| | | | | | | | - Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}. Notes: svn path=/head/; revision=191544
* Remove always-false conditionals on OSVERSIONEdwin Groothuis2007-04-161-8/+0
| | | | Notes: svn path=/head/; revision=190056
* - Fix after objformat removalPav Lucistnik2007-03-231-0/+3
| | | | Notes: svn path=/head/; revision=188130
* Add ipv6 secondary category.Shaun Amott2006-11-291-1/+1
| | | | | | | | PR: ports/106002 Submitted by: Janos Mohacsi <janos.mohacsi@bsd.hu> Notes: svn path=/head/; revision=178248
* - Add USE_GETTEXTRenato Botelho2006-04-071-0/+1
| | | | | | | | | | - Use DATADIR macro PR: ports/95452 Submitted by: Alexander Botero-Lowry <alex@foxybanana.com> Notes: svn path=/head/; revision=159048
* Conversion to a single libtool environment.Ade Lovett2006-02-231-2/+1
| | | | | | | 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
* Bump PORTREVISION to chase the glib20 shared library update.Joe Marcus Clarke2005-11-051-1/+1
| | | | Notes: svn path=/head/; revision=147269
* Bump PORTREVISION to chase the glib20 shared lib version change.Joe Marcus Clarke2005-03-121-1/+1
| | | | Notes: svn path=/head/; revision=130974
* Bump PORTREVISIONS for all ports that depend on atk or pango to ease in theJoe Marcus Clarke2004-11-071-1/+1
| | | | | | | big upgrade. Notes: svn path=/head/; revision=121070