notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
This referral link gives you 10% off a Fastmail.com account and gives me a discount on my Fastmail account.

Get notified when packages are built

A new feature has been added. FreshPorts already tracks package built by the FreeBSD project. This information is displayed on each port page. You can now get an email when FreshPorts notices a new package is available for something on one of your watch lists. However, you must opt into that. Click on Report Subscriptions on the right, and New Package Notification box, and click on Update.

FInally, under Watch Lists, click on ABI Package Subscriptions to select your ABI (e.g. FreeBSD:14:amd64) & package set (latest/quarterly) combinatio for a given watch list. This is what FreshPorts will look for.

non port: audio/zinf/Makefile

Number of commits found: 71

Friday, 28 Aug 2020
22:00 zeising search for other commits by this committer
audio/zinf: Mark broken and deprecate

Mark audio/zinf as broken and deprecated.
It does not build with llvm 11, and upstream is dead, and it requires some
work to get it to work.  Just deprecate it and set an expiration date.

MFH:		2020Q3
Original commitRevision:546837 
Friday, 8 Nov 2019
09:27 tobik search for other commits by this committer
a-b: Add missing USES={gnome,php,sdl,xorg}
Original commitRevision:517040 
Wednesday, 9 Oct 2019
10:20 bapt search for other commits by this committer
Drop the ipv6 virtual category for a* category  as it is not relevant anymore
Original commitRevision:514128 
Monday, 25 Feb 2019
14:32 bapt search for other commits by this committer
First step at deorbitting esound:
remove esound options where it is possible to
Original commitRevision:493867 
Sunday, 11 Nov 2018
15:38 danfe search for other commits by this committer
Update `databases/gdbm' to version 1.18.1, an important bugfix release
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)
Original commitRevision:484696 
Wednesday, 26 Sep 2018
16:12 emaste search for other commits by this committer
Add -znotext to LDFLAGS on i386, for lld

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
Original commitRevision:480747 
Saturday, 25 Aug 2018
03:03 tobik search for other commits by this committer
audio/zinf: Fix build with Clang 6

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)
Original commitRevision:477990 
Friday, 2 Mar 2018
22:34 brooks search for other commits by this committer
Work around the lack of definition of union semun per POSIX.

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
Original commitRevision:463452 
Wednesday, 8 Feb 2017
18:08 jbeich search for other commits by this committer
audio/zinf: unbreak with gcc5 or earlier after r433187

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)
Original commitRevision:433662 
Friday, 3 Feb 2017
00:46 jbeich search for other commits by this committer
audio/zinf: unbreak with libc++ 3.9

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
Original commitRevision:433187 
Sunday, 18 Dec 2016
00:57 marino search for other commits by this committer
Four audio ports: USES+= alias (for DF)
Original commitRevision:428814 
Tuesday, 23 Aug 2016
21:21 marino search for other commits by this committer
audio/zinf: document ncurses requirement

While here, import several dports patches to add missing headers
for c++.
Original commitRevision:420749 
Friday, 1 Apr 2016
13:29 mat search for other commits by this committer
Remove ${PORTSDIR}/ from dependencies, Mk and categories a, b, and c.

With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:412344 
Saturday, 18 Apr 2015
09:47 tijl search for other commits by this committer
- Remove libtool hacks and patches that are now handled by USES=libtool
- Remove CONFIG_SHELL from CONFIGURE_ENV because bsd.port.mk handles that
Original commitRevision:384215 
Wednesday, 25 Mar 2015
21:37 marino search for other commits by this committer
audio category: Remove $PTHREAD_LIBS

xmcd didn't pass check-plist (pre-existing), fixed.

approved by:	PTHREAD blanket
Original commitRevision:382272 
Thursday, 15 Jan 2015
20:00 ak search for other commits by this committer
- Remove vestiges of alpha support

Approved by: portmgr (erwin)
Original commitRevision:377141 
Tuesday, 22 Apr 2014
15:53 bapt search for other commits by this committer
USES=libtool
strip binaries
Original commitRevision:351856 
Saturday, 1 Mar 2014
19:10 antoine search for other commits by this committer
Chase last audio/id3lib port change
Original commitRevision:346715 
Tuesday, 18 Feb 2014
18:57 pawel search for other commits by this committer
Bump PORTREVISION, adding pkgconf build dependency in last commit results in
installation of all files named in pkg-plist and fixes plist problems.

Requested by:	antoine@
Original commitRevision:344942 
17:58 pawel search for other commits by this committer
- Fix build with clang
- Support staging
- Convert to new options framework

PR:		ports/186803 (based on)
Submitted by:	Mathias Monnerville <mathias@monnerville.com>
MFH:		2014Q1
Original commitRevision:344932 
Wednesday, 11 Dec 2013
14:35 bapt search for other commits by this committer
In preparation for making libtool generate libraries with a sane name, fix all
LIB_DEPENDS in audio

With hat:	portmgr
Original commitRevision:336166 
Friday, 20 Sep 2013
14:36 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
audio)
Original commitRevision:327706 
Saturday, 3 Aug 2013
08:45 az search for other commits by this committer
- Convert to new perl framework
- Trim Makefile header
Original commitRevision:324181 
Friday, 26 Jul 2013
23:46 bapt search for other commits by this committer
Chase audio/arts removal
Original commitRevision:323767 
Friday, 26 Apr 2013
10:44 ak search for other commits by this committer
- Convert USE_GETTEXT to USES (part 4)

Approved by:	portmgr (bapt)
Original commitRevision:316596 
Thursday, 28 Mar 2013
03:28 eadler search for other commits by this committer
Mechanically convert unmaintained ports which use "gnomehack" to use "pathfix"
instead.
Original commitRevision:315433 
Thursday, 19 Jul 2012
20:15 naddy search for other commits by this committer
libogg.so.8: Bump PORTREVISION for ports that depend on libogg,
directly or indirectly (via libvorbis, libtheora).
Original commit
Friday, 1 Jun 2012
05:26 dinoex search for other commits by this committer
- update png to 1.5.10
Original commit
Friday, 9 Mar 2012
02:11 pgollucci search for other commits by this committer
- Remove LIB_DEPENDS on musicbrainz its toast
- Bump PORTREVISION

PR:             ports/165834
Submitted by:   Jason E. Hale <bsdkaffee@gmail.com>
Original commit
Friday, 23 Sep 2011
22:26 amdmi3 search for other commits by this committer
- Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)
- 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
Original commit
Monday, 12 Sep 2011
23:17 gabor search for other commits by this committer
- Track dependencies after databases/gdbm update
Original commit
Thursday, 11 Aug 2011
19:20 kwm search for other commits by this committer
Remove USE_GNOME=gnometarget from ports. It has been a empty keyword since
mid 2008.

PR:             ports/159624
Submitted by:   Ruslan Mahmatkhanov <cvs-src@yandex.ru>
Original commit
Sunday, 6 Jun 2010
20:44 naddy search for other commits by this committer
Bump PORTREVISION for ports that depend on libogg, directly or indirectly
(via libvorbis, libtheora).
Original commit
Monday, 31 May 2010
02:01 ade search for other commits by this committer
Bounce PORTREVISION for gettext-related ports.  Have fun, ya'll.
Original commit
Sunday, 28 Mar 2010
06:47 dinoex search for other commits by this committer
- update to 1.4.1
Reviewed by:    exp8 run on pointyhat
Supported by:   miwi
Original commit
Friday, 5 Feb 2010
11:46 dinoex search for other commits by this committer
- update to jpeg-8
Original commit
Monday, 6 Jul 2009
21:26 naddy search for other commits by this committer
Bump PORTREVISION after libogg and libvorbisfile major version increment.
Original commit
Friday, 6 Jun 2008
13:07 edwin search for other commits by this committer
Bump portrevision due to upgrade of devel/gettext.

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)
Original commit
Saturday, 19 Apr 2008
17:56 miwi search for other commits by this committer
- Remove unneeded dependency from gtk12/gtk20 [1]
- 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)
Original commit
Saturday, 28 Jul 2007
12:27 miwi search for other commits by this committer
- Chase increase of audio/libvorbis shlib version.
- Bump PORTREVISION
Original commit
Friday, 29 Jun 2007
10:53 danfe search for other commits by this committer
- Fix the build with GCC 4.2 [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]
Original commit
Saturday, 19 May 2007
20:32 flz search for other commits by this committer
- Welcome X.org 7.2 \o/.
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}.
- Bump PORTREVISION for ports intalling files in ${X11BASE}.
Original commit
Monday, 16 Apr 2007
02:44 edwin search for other commits by this committer
Remove always-false conditionals on OSVERSION
Original commit
Friday, 23 Mar 2007
21:18 pav search for other commits by this committer
- Fix after objformat removal
Original commit
Wednesday, 29 Nov 2006
13:04 shaun search for other commits by this committer
Add ipv6 secondary category.

PR:             ports/106002
Submitted by:   Janos Mohacsi <janos.mohacsi@bsd.hu>
Original commit
Friday, 7 Apr 2006
13:44 garga search for other commits by this committer
- Add USE_GETTEXT
- Use DATADIR macro

PR:             ports/95452
Submitted by:   Alexander Botero-Lowry <alex@foxybanana.com>
Original commit
Thursday, 23 Feb 2006
10:40 ade search for other commits by this committer
Conversion to a single libtool environment.

Approved by:    portmgr (kris)
Original commit
Tuesday, 15 Nov 2005
06:52 ade search for other commits by this committer
Mass-conversion to the USE_AUTOTOOLS New World Order.  The code present
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.
Original commit
Saturday, 5 Nov 2005
05:22 marcus search for other commits by this committer
Bump PORTREVISION to chase the glib20 shared library update.
Original commit
Saturday, 12 Mar 2005
10:54 marcus search for other commits by this committer
Bump PORTREVISION to chase the glib20 shared lib version change.
Original commit
Sunday, 7 Nov 2004
22:37 marcus search for other commits by this committer
Bump PORTREVISIONS for all ports that depend on atk or pango to ease in the
big upgrade.
Original commit
Monday, 5 Apr 2004
03:31 marcus search for other commits by this committer
Chase the glib20 update, and bump all affected ports' PORTREVISIONs.
Original commit
Wednesday, 17 Mar 2004
05:21 marcus search for other commits by this committer
Chase the libmusicbrainz shared lib version.
Original commit
Sunday, 14 Mar 2004
06:17 ade search for other commits by this committer
Whoa there, boy, that's a mighty big commit y'all have there...

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.
Original commit
Monday, 1 Mar 2004
18:50 krion search for other commits by this committer
- Fix build against rerolled tarball
* New version just includes removed
  files/patch-ui-musicbrowser-unix-src-musicsearch.cpp

PR:             ports/63589
Submitted by:   Ports Fury
Original commit
Monday, 23 Feb 2004
00:18 kris search for other commits by this committer
BROKEN: Does not fetch
Original commit
Wednesday, 18 Feb 2004
18:52 krion search for other commits by this committer
- Update to version 2.2.5

PR:             ports/63004
Submitted by:   Ports Fury
Original commit
Wednesday, 4 Feb 2004
05:21 marcus search for other commits by this committer
Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.

(Part 2)
Original commit
Saturday, 3 Jan 2004
11:02 edwin search for other commits by this committer
Chase version change of audio/id3lib

PR:             ports/60830
Submitted by:   Roman Shterenzon <roman@xpert.com>
Original commit
Saturday, 20 Dec 2003
16:14 naddy search for other commits by this committer
Catch up with libogg/libvorbis version bump.
Original commit
Saturday, 27 Sep 2003
03:59 edwin search for other commits by this committer
Update port: audio/zinf to 2.2.4

        - Update to version 2.2.4

PR:             ports/57001
Submitted by:   KATO Tsuguru <tkato@prontomail.com>
Original commit
Thursday, 1 May 2003
22:14 arved search for other commits by this committer
Update to 2.2.3

PR:             51670
Submitted by:   KATO Tsuguru <tkato@prontomail.com>
Original commit
Tuesday, 8 Apr 2003
00:40 marcus search for other commits by this committer
Remove the USE_GNOMENG macro.
Original commit
Thursday, 20 Feb 2003
16:49 knu search for other commits by this committer
De-pkg-comment.
Original commit
Tuesday, 28 Jan 2003
06:24 adamw search for other commits by this committer
Update to 2.2.2.

PR:             47322
Submitted by:   KATO Tsuguru <tkato@prontomail.com>
Original commit
Saturday, 21 Dec 2002
20:14 naddy search for other commits by this committer
Fix build of included id3lib on 64-bit platforms.

Obtained from:  id3lib 3.8.0
Original commit
Thursday, 24 Oct 2002
14:17 dwcjr search for other commits by this committer
Update to 2.2.1

PR:             44221
Submitted by:   tkato@prontomail.com
Original commit
Monday, 21 Oct 2002
16:21 lioux search for other commits by this committer
WITHOUT_ESOUND is deprecated. Replace it with a GNOMENG construct

Submitted by:   David Yeske <dyeske@yahoo.com>
Original commit
Monday, 30 Sep 2002
01:41 marcus search for other commits by this committer
Fix install.

PR:             43499
Submitted by:   Tilman Linneweh <tilman@arved.de> (with slight modification)
Original commit
Saturday, 31 Aug 2002
00:13 marcus search for other commits by this committer
Use USE_GNOMENG.

PR:             42232
Submitted by:   Edwin Groothuis <edwin@mavetju.org>
Original commit
Thursday, 8 Aug 2002
19:17 anders search for other commits by this committer
Update freeamp 2.1.1 to zinf 2.2.0.

Add zlib patches for working around zlib 1.1.4 problems (obtained from
src/lib/zlibz in current) + a file that was forgotten in the zlib 1.1.3 to
1.1.4 upgrade between freeamp 2.1.1 and zinf 2.2.0.
Original commit

Number of commits found: 71