Re: devel/sope: make (stage-qa) now fails with DEVELOPER=yes complaining about iconv dependency

2016-07-22 Thread Mathieu Arnold
+--On 12 juillet 2016 23:08:52 +0800 Euan Thoms wrote: | I'm the maintainer of devel/sope2 (required for www/sogo2). | | Upon updating the port for an upstream version increment, I now get an | error running "make" when DEVELOPER=yes is set in /etc/make.conf. The | upstream project is in maintain

Re: devel/sope: make (stage-qa) now fails with DEVELOPER=yes complaining about iconv dependency

2016-07-22 Thread Mathieu Arnold
+--On 15 juillet 2016 11:02:23 +0200 Walter Schwarzenfeld wrote: | USES? ssl:libressl | | the question mark is a typo, should be | USES= ssl:libressl Yes, because this doesn't mean anything, there is no USES=ssl:libressl, ssl does not take any argument. I'll change the ssl.mk file so that it

Re: Restricted character set for Github repo names?

2016-07-22 Thread Mathieu Arnold
+--On 14 juillet 2016 12:37:16 +0100 Ben Lavery wrote: | Thanks Jan, | | For some reason it didn't like the GH_TUPLE - although it didn't | complain the tar.gz wasn't fetched... | | I renamed the :group as you suggested, make(1) is happy and the | files are fetched! To be precise, it is not m

Re: Passing target to source Makefile

2016-07-22 Thread Jan Beich
Russell Haley writes: > 1) It does not use the recommended "freebsd" target. While the port > overlays many of the same options, the system doesn't seem to respect > the targets and also performs the installation without specifically > calling the "install" target. Try adding ALL_TARGET=freebsd.

GraphicsMagick *and* ImageMagick fail to compile

2016-07-22 Thread Patrick M. Hausen
Hi, all, I need some help here. Poudriere, 2016Q3 quarterly ports branch, 10.2-RELEASE-p19 build jail. Both ports fail with very similar error messages. GrahicsMagick: [...] ---Begin OPTIONS List--- ===> The following configuration options are available for Gra

FreeBSD ports you maintain which are out of date

2016-07-22 Thread portscout
Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated, you

Updating Samba to 4.3.11_1

2016-07-22 Thread Gerard Seibert
I am having the same problem as reported by this PR: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=211140 Does anyone know of a way to get this port installed? The older version is reported as having a vulnerability. -- Carmel ___ freebsd-ports@fre

John The Ripper 1.8.0 Jumbo 1

2016-07-22 Thread CeDeROM
Hello, is it possible to update John to 1.8.0-jumbo1? :-) -- CeDeROM, SQ7MHZ, http://www.tomek.cedro.info ___ freebsd-ports@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports

Re: John The Ripper 1.8.0 Jumbo 1

2016-07-22 Thread Alexey Dokuchaev
On Fri, Jul 22, 2016 at 01:04:54PM +0200, CeDeROM wrote: > Hello, is it possible to update John to 1.8.0-jumbo1? :-) Yes, it is anticipated. Alexander (Solar Designer) expressed a number of wishes about the port, so it's not going to be just a simple version bump. Stay tuned, and sorry for bunkin

Re: John The Ripper 1.8.0 Jumbo 1

2016-07-22 Thread CeDeROM
On Fri, Jul 22, 2016 at 6:10 PM, Alexey Dokuchaev wrote: > On Fri, Jul 22, 2016 at 01:04:54PM +0200, CeDeROM wrote: >> Hello, is it possible to update John to 1.8.0-jumbo1? :-) > Yes, it is anticipated. Alexander (Solar Designer) expressed a number of > wishes about the port, so it's not going to

Re: Passing target to source Makefile

2016-07-22 Thread Russell Haley
Sorry for the top post. Thank you for taking the time to clarify.  Russ Sent from my BlackBerry 10 smartphone on the Koodo network.   Original Message   From: Jan Beich Sent: Friday, July 22, 2016 2:54 AM To: Russell Haley Cc: olli hauer; freebsd-ports@freebsd.org Subject: Re: Passing target to s

Re: Updating Samba to 4.3.11_1

2016-07-22 Thread Dimitry Andric
On 22 Jul 2016, at 12:19, carmel...@outlook.com wrote: > > I am having the same problem as reported by this PR: > https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=211140 > > Does anyone know of a way to get this port installed? The older version > is reported as having a vulnerability. Uninstal

Re: stunnel fails to build

2016-07-22 Thread Walter Schwarzenfeld
found something: maybe, this could help remove or comment out--with-ssl="${OPENSSLBASE}" and add to the Makefile: CONFIGURE_ENV= OPENSSL_LIBS="-L${OPENSSLLIB} -lcrypto" OPENSSL_CFLAGS="-I${OPENSSLINC}" MAKE_ARGS= LDFLAGS="${LDFLAGS}" ___ fr

Re: GraphicsMagick *and* ImageMagick fail to compile

2016-07-22 Thread Walter Schwarzenfeld
First: what is in /etc/make.conf ? - try compile it with GCC either withe GCC=4.8+ in the Makefile or with CC=gcc48 CXX=g++48 CPP=cpp48 (you can use gcc48 or gcc49 or gcc5) -- I had a similar error with irc/hexchat (it compiled only with GCC not with clang). add to the Mak

Re: GraphicsMagick *and* ImageMagick fail to compile

2016-07-22 Thread Kevin Oberman
On Fri, Jul 22, 2016 at 11:46 PM, Walter Schwarzenfeld < w.schwarzenf...@utanet.at> wrote: > First: > what is in /etc/make.conf ? > - > try compile it with GCC > either > withe GCC=4.8+ > in the Makefile > or > with CC=gcc48 CXX=g++48 CPP=cpp48 > (you can use gcc48 or gcc49 or gcc5) > ---