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) combination for a given watch list. This is what FreshPorts will look for.

non port: japanese/jd/Makefile

Number of commits found: 47

Thursday, 11 May 2017
19:27 antoine search for other commits by this committer
Mark BROKEN: fails to build

In file included from interface.cpp:7:
...
/usr/local/include/glibmm-2.4/glibmm/ustring.h:256:13: error: expected ';' at
end of declaration list

Reported by:	pkg-fallout
Original commitRevision:440648 
Friday, 1 Apr 2016
14:08 mat search for other commits by this committer
Remove ${PORTSDIR}/ from dependencies, categories h, i, j, k, and l.

With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:412347 
Sunday, 27 Mar 2016
14:58 tijl search for other commits by this committer
- Update security/gnutls to 3.4.10.
- Rename the LIBDANE option DANE because that's the name of the protocol
  supported by libgnutls-dane and gnutls-cli.  Also clarify the option
  description.
- Add an IDN option.
- libgnutls-openssl has been removed in 3.4.  Some ports used this library
  in their LIB_DEPENDS but no port actually required it.
- Some old API functions have been removed.  Ports that used these have been
  updated or patched to use the new API.
- Add a patch to print/cups to prevent overlinking of libgnutls.so.
- Bump PORTREVISION on dependent ports.

net-im/jabber: This port used the old API to give users fine grained
control over which crypto algorithms were used via a configuration file.
It's not immediately obvious how to port this to the new API so the port
always uses the defaults now.

www/hydra: Mark BROKEN.  This uses more removed calls than the other ports,
is said to be alpha quality and not fully functional and has been abandoned
10 years ago.

PR:		207768
Exp-run by:	antoine
Approved by:	portmgr (antoine)
Original commitRevision:411990 
Friday, 19 Feb 2016
16:30 rakuco search for other commits by this committer
Update to 2.8.9.

PR:		207322
Submitted by:	townwear@gmail.com (maintainer)
Original commitRevision:409189 
Monday, 11 May 2015
18:34 mat search for other commits by this committer
Cleanup DIST* variables.

When appropriate:
- Try to use DISTVERSION{SUF,PRE}FIX
- Replace PORTNAME-PORTVERSION by DISTNAME
- Convert MASTER_SITES to use macros
- Other light cleanup

With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:386097 
Wednesday, 15 Apr 2015
08:20 tijl search for other commits by this committer
converters/libiconv:
- Remove const qualifier from iconv(3) to match POSIX:
  http://pubs.opengroup.org/onlinepubs/9699919799/functions/iconv.html
- Patch iconv.h to expose more GNU extensions when LIBICONV_PLUG is
  defined because the base system iconv supports these extensions too.

Add/remove patches to/from ports to call iconv with non-const arguments.

This breaks some ports on FreeBSD 10 because base system iconv.h still has
the const qualifier.  Fix this by letting USES=iconv add a build dependency
on converters/libiconv so ports can use its iconv.h (with LIBICONV_PLUG
defined) instead of the base system iconv.h.

This exposed some ports that link with libiconv when it is available instead
of using libc iconv.  In these cases one of the following changes has been
made:
- patch configure scripts to test for libc iconv first
- add ac_cv_lib_iconv_libiconv=no or similar to CONFIGURE_ARGS to disable
  some configure tests
- converters/wkhtmltopdf: this includes Qt4 so add a patch from devel/qt4
- lang/gcc5-aux: respect CFLAGS and friends during configure such that
  LIBICONV_PLUG is defined in the iconv test, also switch to external
  gettext
- mail/gnarwl: replace patches with CPPFLAGS/LIBS
- multimedia/ffmpeg2theora: remove iconv test from SConstruct and use
  ICONV_LIB in port Makefile instead, also fix a bug in subtitles.c
- net-im/licq: finish conversion to cmake
- net-mgmt/bandwidthd, net-mgmt/icinga, net-mgmt/nagios, net-mgmt/nagios4:
  don't need iconv
- textproc/p5-XML-TinyXML: finish conversion to USES=perl5

Other changes:
- databases/qdbm and slaves: respect CFLAGS and friends, also enable bzip2
  and lzo support
- games/ldmud: respect CFLAGS and friends
- graphics/inventor: replace some patches with MAKE_ARGS/MAKE_ENV to respect
  CFLAGS and friends, also remove FreeBSD/alpha patch and add missing xorg
  dependencies

PR:		199099
Exp-run by:	antoine
Approved by:	portmgr (antoine)
Original commitRevision:384038 
Friday, 2 Jan 2015
18:46 pi search for other commits by this committer
security/libgcrypt: 1.6.1 -> 1.6.2, bump depends

Changes:
- src/sexp.c (do_vsexp_sscan): Return error for invalid args.
- cipher/md.c (_gcry_md_info): Fix a segv in case of calling
  with wrong parameters.
- cipher/primegen.c (_gcry_generate_elg_prime): Change to return an
  error code, possible NULL deref in call to prime generator.
- cipher/dsa.c (generate): Take care of new return code.
- cipher/elgamal.c (generate): Change to return an error code.  Take
	care of _gcry_generate_elg_prime return code.
- ecc: Support the non-standard 0x40 compression flag for EdDSA.
- mpi: Extend the internal mpi_get_buffer.
- mpi: Fix regression for powerpc-apple-darwin detection.
- Fix bug inhibiting the use of the sentinel attribute in src/gcrypt.h.in
- Fix building for the x32 target without asm modules in
  mpi/generic/mpi-asm-defs.h: Use a fixed value for the x32 ABI.
- Fix ARM assembly when building __PIC__
- mpi: Fix a subtle bug setting spurious bits with in mpi_set_bit.
  * mpi/mpi-bit.c (_gcry_mpi_set_bit, _gcry_mpi_set_highbit): Clear
    allocated but not used bits before resizing.
  * tests/t-mpi-bits.c (set_bit_with_resize): New.
- Use internal malloc function in fips.c.
  * src/fips.c (check_binary_integrity): s/gcry_malloc/xtrymalloc/.
- pubkey: Re-map all deprecated RSA algo numbers.
- cipher: Fix possible NULL dereference in cipher/md.c for being NULL.
- Fix ARMv6 detection when CFLAGS modify target CPU architecture.

PR:		193264
Approved by:	cpm@fbsd.es (maintainer)
Original commitRevision:376062 
Friday, 19 Sep 2014
08:07 tijl search for other commits by this committer
Convert to USES=autoreconf
Original commitRevision:368544 
Monday, 1 Sep 2014
19:34 tijl search for other commits by this committer
Add USES=libtool to accessibility/atkmm and bump dependent ports
Original commitRevision:366938 
Wednesday, 30 Jul 2014
03:57 pi search for other commits by this committer
security/libgcrypt: 1.5.3_3 -> 1.6.1

- Update to 1.6.1
- Remove some unneeded patches
- Fix pkg-plist
- report configure bug upstream
  https://bugs.g10code.com/gnupg/issue1668
- report API breakage downstream and find that MacPorts had the same issue
  https://rt.cpan.org/Ticket/Display.html?id=97201
- bump PORTREVISION for dependent ports (approx. 100 ports)
- Thanks to exp-run by antoine@ to find ports that break
- patch ports that would otherwise break
  security/shishi with PR 192164 is already committed
  [1] devel/ccrtp
  [2] editors/abiword
  [3] security/p5-Crypt-GCrypt

PR:		191256, 192162 [1], 192163 [2], 192166 [3]
Submitted by:	Carlos Jacobo Puga Medina <cjpugmed@gmail.com>
Approved by:	maintainer timeout, antoine (exp-run), portmgr (implicit)
Original commitRevision:363436 
Tuesday, 29 Jul 2014
19:11 adamw search for other commits by this committer
Convert a bunch of EXTRACT_SUFX=... into USES=tar:...

Approved by:	portmgr (not really, but touches unstaged ports)
Original commitRevision:363374 
Wednesday, 23 Jul 2014
09:54 tijl search for other commits by this committer
- Replace security/gnutls with security/gnutls3 and update to 3.2.15
- Bump PORTREVISION on all ports that depend on security/gnutls and
  adjust all ports that depend on security/gnutls3
- Update mail/anubis to version 4.2 which supports gnutls 3.x
- Update mail/libvmime to a development snapshot (recommended by upstream
  developers)

PR:		191274
Exp-run by:	antoine
Approved by:	portmgr (antoine)
Original commitRevision:362645 
Saturday, 7 Jun 2014
18:30 danilo search for other commits by this committer
- Update from 2.8.7 to 2.8.8 [1]
- Add libtool to USES
- Add libtoolize to USE_AUTOTOOLS

PR:		ports/190750
Submitted by:	townwear@gmail.com (maintainer) [1]
Original commitRevision:356938 
Friday, 17 Jan 2014
17:27 danilo search for other commits by this committer
- Update from 2.8.6 to 2.8.7

while here
- Remove extra tabs
- Use PLIST_FILES instead of pkg-plist

PR:		ports/185570
Submitted by:	Takashi Kato <townwear@gmail.com>
Original commitRevision:340085 
Sunday, 1 Dec 2013
07:15 antoine search for other commits by this committer
- Update to 2.8.6
- gmake not needed
- Stage support
- use OPTIONS helpers

PR:		ports/184350
Submitted by:	Takashi Kato (maintainer)
Original commitRevision:335366 
Friday, 20 Sep 2013
18:47 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
japanese)
Original commitRevision:327737 
Friday, 13 Sep 2013
17:14 madpilot search for other commits by this committer
- Fix build after iconv change [1]
- Fix build with clang/libc++ ([2] for graphics/ipe)

While here for databases/spatialite:
- Trim Makefile headers
- Remove check for unsupported FreeBSD versions

Submitted by:	marino [1]
Reported by:	swills, antoine [1]
Submitted by:	bsam [2]
Approved by:	portmgr (bapt, implicit)
Original commitRevision:327168 
Wednesday, 14 Aug 2013
22:35 ak search for other commits by this committer
- Remove MAKE_JOBS_SAFE variable

Approved by:	portmgr (bdrewery)
Original commitRevision:324744 
Sunday, 26 May 2013
00:33 jgh search for other commits by this committer
- adoption of optionsNG framework
- trim COMMENTS and historical headers

Approved by:	portmgr (bapt)
Original commitRevision:319081 
Friday, 3 May 2013
16:36 ehaupt search for other commits by this committer
Chase security/libgcrypt update
Original commitRevision:317220 
Tuesday, 5 Feb 2013
16:17 novel search for other commits by this committer
- Add UPDATING entry for gnutls update
- Chase shlib version bump for dependant ports
Original commitRevision:311722 
Tuesday, 28 Aug 2012
11:54 scheidell search for other commits by this committer
- Update to 2.8.5

PR:		ports/171100
Submitted by:	Takashi Kato <townwear@gmail.com> (maintainer)
Original commit
Friday, 1 Jun 2012
05:26 dinoex search for other commits by this committer
- update png to 1.5.10
Original commit
Saturday, 27 Aug 2011
20:25 tota search for other commits by this committer
- Update to 2.8.2 [1]
- Move LICENSE section earlier to make portlint happy

PR:             ports/160028 [1]
Submitted by:   Takashi Kato <townwear_AT_gmail_DOT_com> (maintainer) [1]
Original commit
Tuesday, 26 Jul 2011
20:36 pav search for other commits by this committer
- Mark BROKEN: does not link (gcrypt/gnutls)

Reported by:    pointyhat
Original commit
Sunday, 5 Jun 2011
18:43 novel search for other commits by this committer
Chase security/gnutls update and add an UPDATING entry.
Original commit
Saturday, 9 Apr 2011
13:30 arved search for other commits by this committer
Update to 2.8.1

PR:             156250
Submitted by:   maintainer
Original commit
Saturday, 5 Feb 2011
10:56 miwi search for other commits by this committer
- Update to 2.8.0

PR:             154490
Submitted by:   Takashi Kato <townwear@gmail.com> (maintainer)
Feature safe:   yes
Original commit
Thursday, 6 Jan 2011
14:12 tota search for other commits by this committer
- Update to 2.7.5 [1]
- Use MASTER_SITES_ABBREVS in MASTER_SITES
- Add LICENSE
- Add OPTIONS
- Drop MD5 checksum from distinfo
- Make portlint happy

PR:             ports/153512 [1]
Submitted by:   Takashi Kato <townwear_AT_gmail_DOT_com> (maintainer) [1]
Original commit
Saturday, 4 Dec 2010
07:34 ade search for other commits by this committer
Sync to new bsd.autotools.mk
Original commit
Saturday, 16 Oct 2010
11:52 ade search for other commits by this committer
Punt autoconf267->autoconf268
Original commit
Tuesday, 5 Oct 2010
19:57 ade search for other commits by this committer
Round one migration of ports from automake{19,110} to automake111
Original commit
Wednesday, 15 Sep 2010
18:35 ade search for other commits by this committer
Autotools update.   Read ports/UPDATING 20100915 for details.

Approved by:    portmgr (for Mk/bsd.port.mk part)
Tested by:      Multiple -exp runs
Original commit
Tuesday, 24 Aug 2010
17:11 lwhsu search for other commits by this committer
- Update to 2.7.0

PR:             ports/149939
Submitted by:   Takashi Kato <townwear AT gmail.com> (maintainer)
Original commit
Sunday, 9 May 2010
11:21 miwi search for other commits by this committer
- Update to 2.6.5

PR:             146090
Submitted by:   Takashi Kato <townwear@gmail.com> (maintainer)
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
Wednesday, 10 Feb 2010
14:38 miwi search for other commits by this committer
- Update to 2.6.0

PR:             143702
Submitted by:   Takashi Kato <townwear@gmail.com> (maintainer)
Original commit
Friday, 5 Feb 2010
11:46 dinoex search for other commits by this committer
- update to jpeg-8
Original commit
Thursday, 31 Dec 2009
03:01 wen search for other commits by this committer
- Update to 2.5.5

PR:             ports/142164
Submitted by:   Takashi Kato <townwear@gmail.com> (maintainer)
Original commit
Sunday, 13 Dec 2009
00:21 miwi search for other commits by this committer
- Update to 2.5.0

PR:             141222
Submitted by:   Takashi Kato <townwear@gmail.com> (maintainer)
Original commit
Wednesday, 30 Sep 2009
07:38 amdmi3 search for other commits by this committer
- Update to 2.4.2

PR:             139215
Submitted by:   Takashi Kato <townwear@gmail.com> (maintainer)
Feature safe:   yes
Original commit
Sunday, 16 Aug 2009
18:04 novel search for other commits by this committer
Bump PORTREVISIONs of the gnutls dependant ports to chase gnutls update.
Original commit
Sunday, 2 Aug 2009
19:36 mezz search for other commits by this committer
-Repocopy devel/libtool15 -> libtool22 and libltdl15 -> libltdl22.
-Update libtool and libltdl to 2.2.6a.
-Remove devel/libtool15 and devel/libltdl15.
-Fix ports build with libtool22/libltdl22.
-Bump ports that depend on libltdl22 due to shared library version change.
-Explain what to do update in the UPDATING.

It has been tested with GNOME2, XFCE4, KDE3, KDE4 and other many wm/desktop
and applications in the runtime.

With help:      marcus and kwm
Pointyhat-exp:  a few times by pav
Tested by:      pgollucci, "Romain Tartière" <romain@blogreen.org>, and
                a few MarcusCom CVS users. Also, I might have missed a few.
Repocopy by:    marcus
Approved by:    portmgr
Original commit
Wednesday, 15 Jul 2009
19:30 amdmi3 search for other commits by this committer
- Update to 2.4.1

PR:             136773
Submitted by:   Takashi Kato <townwear@gmail.com> (maintainer)
Original commit
Sunday, 24 May 2009
19:25 dhn search for other commits by this committer
- Update to 2.4.0

PR:             ports/134908
Submitted by:   Takashi Kato <townwear@gmail.com> (maintainer)
Original commit
19:23 dhn search for other commits by this committer
- Update to 2.4.0

Submitted by:   Takashi Kato <townwear@gmail.com> (maintainer)
Original commit
Saturday, 23 May 2009
06:41 beat search for other commits by this committer
jd - a 2ch browser

WWW: http://jd4linux.sourceforge.jp/

PR:             ports/134419
Submitted by:   Takashi Kato <townwear AT gmail.com>
Approved by:    miwi (mentor)
Original commit

Number of commits found: 47