Re: NEW: graphics/jpegoptim

2017-08-03 Thread Nils Frohberg
://www.kokkonen.net/tjko/src/ -BUILD_DEPENDS =graphics/jpeg -RUN_DEPENDS = graphics/jpeg +LIB_DEPENDS = graphics/jpeg CONFIGURE_STYLE = gnu CONFIGURE_ARGS = --with-libjpeg=${LOCALBASE} On Thu, Aug 03, 2017 at 03:40:45PM +0200, Nils Frohberg wrote

NEW: graphics/jpegoptim

2017-08-03 Thread Nils Frohberg
$ pkg_info jpegoptim Information for inst:jpegoptim-1.4.4 Comment: utility to optimize jpeg files Description: Jpegoptim is a utility to optimize jpeg files. Provides lossless optimization (based on optimizing the Huffman tables) and "lossy" optimization based on setting maximum quality factor.

Re: NEW: p5-Crypt-OpenSSL-ECDSA

2017-05-24 Thread Nils Frohberg
On Wed, May 24, 2017 at 10:04:12AM +0100, Stuart Henderson wrote: > On 2017/05/24 10:43, Nils Frohberg wrote: > > On Wed, May 24, 2017 at 09:11:24AM +0100, Stuart Henderson wrote: > > > On 2017/05/24 10:03, Nils Frohberg wrote: > > > >

Re: NEW: p5-Crypt-OpenSSL-ECDSA

2017-05-24 Thread Nils Frohberg
On Wed, May 24, 2017 at 09:11:24AM +0100, Stuart Henderson wrote: > On 2017/05/24 10:03, Nils Frohberg wrote: > > The patch disables the symbols > > ECDSA_METHOD_new > > ECDSA_METHOD_free > > ECDSA_METHOD_set_flags > > ECDSA_METHOD_set_name >

NEW: p5-Crypt-OpenSSL-ECDSA

2017-05-24 Thread Nils Frohberg
Crypt::OpenSSL::ECDSA is a perl module that provides an interface to the ECDSA (Elliptic Curve Digital Signature Algorithm) functions in OpenSSL. $ tar tzf p5-Crypt-OpenSSL-ECDSA.tar.gz security/p5-Crypt-OpenSSL-ECDSA security/p5-Crypt-OpenSSL-ECDSA/Makefile

NEW: p5-Crypt-OpenSSL-EC

2017-05-24 Thread Nils Frohberg
Crypt::OpenSSL::EC is a perl module that provides a standard (non-OO) interface to the OpenSSL EC (Elliptic Curve) library. $ tar tzf p5-Crypt-OpenSSL-EC.tar.gz security/p5-Crypt-OpenSSL-EC security/p5-Crypt-OpenSSL-EC/Makefile security/p5-Crypt-OpenSSL-EC/distinfo

Re: patch for net/netatalk and net/netatalk3

2016-07-05 Thread Nils Frohberg
Thanks for looking into this. On Tue, Jul 05, 2016 at 02:19:34PM +0100, Stuart Henderson wrote: [...] > > + memset(ibuf, 0, 255); > > +-if ( strcmp( p, dhxpwd->pw_passwd ) == 0 ) { > > ++if ( (p != NULL) && (strcmp( p, dhxpwd->pw_passwd ) == 0) ) { > > ++

Re: patch for net/netatalk and net/netatalk3

2016-07-05 Thread Nils Frohberg
Ping. Updated patch for net/netatalk3 below (REVISION=2). (cc maintainter (ajacoutot@)) > I had another look at the netatalk3 port and came up with the > following patch. It works for me but that's not a thorough test > (and only for dhx2). It's a more invasive patch than my previous > one, but

Re: patch for net/netatalk and net/netatalk3

2016-06-09 Thread Nils Frohberg
Sorry, wrong patch. Here's the correct one: diff -x CVS -rNu net/netatalk3.orig/Makefile net/netatalk3/Makefile --- net/netatalk3.orig/Makefile Sun Mar 20 17:12:25 2016 +++ net/netatalk3/Makefile Thu Jun 9 16:14:06 2016 @@ -3,7 +3,7 @@ COMMENT= AFP file and print services for

Re: patch for net/netatalk and net/netatalk3

2016-06-09 Thread Nils Frohberg
I had another look at the netatalk3 port and came up with the following patch. It works for me but that's not a thorough test (and only for dhx2). It's a more invasive patch than my previous one, but if this is better I can apply the same to net/netatalk. I looked for the SHADOWPW ifdefs and

patch for net/netatalk and net/netatalk3

2016-06-09 Thread Nils Frohberg
Due to lib/libc/gen/getpwent.c rev 1.61, netatalk segfaults when authenticating via uam_dhx2_passwd.c (crypt(3)'s return value isn't checked against NULL, cf. around line 551 of etc/afpd/uam.c). It should now use getpwnam_shadow(3) instead of getpwnam(3) when looking for the username and password.