Re: Can we bring back sysutils/cronolog?

2015-11-30 Thread Chris H
On Sun, 29 Nov 2015 17:59:12 -0800 "Chris H"  wrote

> On Fri, 27 Nov 2015 20:53:41 +0100 Kurt Jaeger  wrote
> 
> > Hi!
> > 
> > > I still use sysutils/cronolog but lately it's been disabled due to
> > > the web site vanishing. 
> > > 
> > > I still have the distribution files. Can we put them up somewhere on
> > > FreeBSD.org to keep the port alive?
> > 
> > Using freebsd.org to distribute 3rd-party ports distfiles is not
> > possible due to policy reasons, but I can put them up @opsec.eu,
> > and if you provide a fallback master site, that would be sufficient.
> > 
> > > I'm in the process of switching
> > > over to FreeBSD 10 (.2) and need to rebuild this port (along with all
> > > other ports).
> > > 
> > > http://www.neutralgood.org/~kpn/cronolog-1.6.2.tar.gz
> > > http://www.neutralgood.org/~kpn/cronolog-setugid-patch.txt
> > > 
> > > I _could_ host the files myself, but I'm rather bandwidth limited. If
> > > needed I'll need to move the files to a better URL.
> > 
> > There was a 1.7.0 beta at some time -- any ideas where it might be ?
> I discovered I have the source for that version. I'll start a new pr(1)
> for sysutils/cronolog-devel.
> > 
As promised:
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=204920

--Chris


___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Updating php

2015-11-30 Thread Carmel NY
On Mon, 30 Nov 2015 14:00:29 +, Matthew Seaman stated:

>This is why I generally prefer to use php-fpm nowadays, and access them
>from a HTTP server using FCGI.  It provides a useful separation of
>roles: the web server can handle serving pages as efficiently as
>possible and need not know anything of the web application internals or
>the language used, nor does it need to link against all sorts of
>external shared libraries to provide support for whatever languages.
>Keeping things decoupled like that makes it much easier to manage the
>system and cope with these sorts of upgrades.

Thanks for the info. Can you tell me where I can find some documentation on
how to set up "php-fpm" on a FreeBSD-10.2 system running "apache24"?

Thanks! :)

-- 
Carmel
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Poudriere, build older version of port

2015-11-30 Thread Frank de Bot (lists)
Hi,

I have some issue with a certain port version update. If I downgrade
this port everything works well.

I use poudriere to build my own packages with own options. Is it
possible with poudriere to stick to a certain revision of a port?


Regards,

Frank de Bot
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Help needed for VeraCrypt port

2015-11-30 Thread sax12
On the GitHub page of VeraCrypt (a successor of TrueCrypt) I asked, if there 
will be a FreeBSD port.
One developer replied that he already looked into it as there is some FreeBSD 
code left from TrueCrypt. But he encountered a problem with "fuse" and that any 
help by a BSD developer would be appreciated.

As I'm not a developer with the required skill set, I thought I will just 
forward the message to any interested party. Maybe an interested developer will 
get in contact with him on GitHub and help him out. The Issue in question is: 
https://github.com/veracrypt/VeraCrypt/issues/34

It would be great to have VeraCrypt supported on FreeBSD to share encrypted 
containers or hard disks between multiple operating systems.

Have a nice day.
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Poudriere, build older version of port

2015-11-30 Thread Ben Woods
On 30 November 2015 at 21:48, Frank de Bot (lists) 
wrote:

> Hi,
>
> I have some issue with a certain port version update. If I downgrade
> this port everything works well.
>
> I use poudriere to build my own packages with own options. Is it
> possible with poudriere to stick to a certain revision of a port?
>
>
> Regards,
>
> Frank de Bot
>

Yes, you just maintain a ports tree with your custom version of the port.
Depending on how you are updating your ports tree for the poudriere builds,
you may need to make sure it is not overwriting your local changes. You
might be better copying the port to a new port in your local tree, so any
changes to the actual one don't over-write your local changes.

However, I am not sure this is the best idea. If there is a problem with
the port, you should probably either raise a bug report or get in contact
with the port maintainer (you can see who maintains the port using
freshports.org or by looking in the Makefile. If you keep a custom port and
it stops working in the future, you will be on your own. If you report the
problem and get it fixed for everyone, you can enjoy the new port updates
and fixes as they become available in the future.

Regards,
Ben
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Updating php

2015-11-30 Thread Reko Turja
Thanks for the info. Can you tell me where I can find some 
documentation on

how to set up "php-fpm" on a FreeBSD-10.2 system running "apache24"?


As MAtthew said, this removes lots of hassle (and actually allows 
running of threaded Apache and php on top of each other without all 
kinds of interesting side effects)


This is how I've done it based on sources from internet and then 
adjusting the sources into practise - tbh the amount of good how-to's 
on the subject is pretty minimal:


First you need to load mod fcgi (and of course compile/install binary 
too) in httpd.conf like this (just add on the bottom of other 
LoadModules if not already there:

LoadModule fcgid_module libexec/apache24/mod_fcgid.so

For my applications I've had to set some other variables, the 
following is snippet of my httpd conf just after the LoadModules:


FcgidFixPathinfo 1
FcgidMaxRequestLen 13107200
FcgidMaxProcessesPerClass 50
FcgidMaxRequestInMem 131072
FcgidIOTimeout 90


   AddHandler fcgid-script .php
   Options +ExecCGI
   FcgidWrapper /usr/local/bin/php-wrapper .php


As you see, we need a wrapper script in whatever directory we want, 
for sake of consistency I use /usr/local/bin. For my needs the 
contents of the wrapper shell script are very simply:


#!/bin/sh
# Set desired PHP_FCGI_* environment variables.
# Example:
# PHP FastCGI processes exit after 500 requests by default.
PHP_FCGI_MAX_REQUESTS=1000
export PHP_FCGI_MAX_REQUESTS

As we are running cgi from "page directories" we need to tell Apache 
that running CGI is "okay" (as there's always a risk involved, this 
you need to think yourself) from these, so:



  ...
  Options ExecCGI ...
  ...


That's basically how to set the thing up and running.

-Reko
" 


___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


MonoDevelop Rosyln

2015-11-30 Thread Russell Haley
Hi There,

I'm trying to create a current port of the MonoDevelop project. The port
currently it sits at 5.0.1 and says it's broken. I have been able to get a
build from Github working, but not from the tarball download method that
the current port uses.

I am trying to change the port over to use Github. I've anguished over this
decision but want to move forward.

Needless to say, I have now broken the port! The monodevelop project uses
links to other projects. I have created the sub items under GH_PROJECT and
GH_TAGNAME but every "other" sub-project doesn't work. (note, I run make
clean but still get that saved configuration line?) as follows :

#make
===>  Found saved configuration for monodevelop-5.0.1_1
===>   monodevelop-5.11_1 depends on file: /usr/local/sbin/pkg - found
_MASTER_SITES_mono-tools=
https://codeload.github.com/mono/mono-tools/tar.gz/db35c5c?dummy=/: not
found
*** Error code 127

Stop.
make[1]: stopped in /usr/ports/devel/monodevelop
*** Error code 1

Stop.
make: stopped in /usr/ports/devel/monodevelop


Any input would be dandy.

Thanks!
Russ


Makefile
Description: Binary data
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"

lang/gcc: on CURRENT build fails with ./options.h:4301:3: error: redefinition of enumerator 'OPT_d'

2015-11-30 Thread O. Hartmann
Can not update/build lang/gcc on CURRENT, see error message below.

Tried with and without bootstrap and also delete packages related to lang/gcc
to ensure no disturbing remnants are left over.


[...]

echo timestamp > s-options
/usr/bin/awk -f .././../gcc-4.8.5/gcc/opt-functions.awk
-f .././../gcc-4.8.5/gcc/opt-read.awk \ -f .././../gcc-4.8.5/gcc/opth-gen.awk \
   < optionlist > tmp-options.h
/usr/bin/awk -f .././../gcc-4.8.5/gcc/opt-functions.awk
-f .././../gcc-4.8.5/gcc/opt-read.awk \
-f .././../gcc-4.8.5/gcc/optc-save-gen.awk \ -v header_name="config.h system.h
coretypes.h tm.h" < optionlist > options-save.c /usr/bin/awk
-f .././../gcc-4.8.5/gcc/opt-functions.awk
-f .././../gcc-4.8.5/gcc/opt-read.awk \ -f .././../gcc-4.8.5/gcc/optc-gen.awk \
-v header_name="config.h system.h coretypes.h options.h tm.h" < optionlist >
options.c /bin/sh .././../gcc-4.8.5/gcc/../move-if-change tmp-options.h
options.h echo timestamp > s-options-h build/gengtype  \
-S .././../gcc-4.8.5/gcc -I gtyp-input.list -w
tmp-gtype.state c++ -c   -g -DIN_GCC   -fno-exceptions -fno-rtti
-fasynchronous-unwind-tables -W -Wall -Wno-narrowing -Wwrite-strings
-Wcast-qual -Wmissing-format-attribute -pedantic -Wno-long-long
-Wno-variadic-macros -Wno-overlength-strings -fno-common  -DHAVE_CONFIG_H
-DGENERATOR_FILE -I. -Ibuild -I.././../gcc-4.8.5/gcc
-I.././../gcc-4.8.5/gcc/build -I.././../gcc-4.8.5/gcc/../include
-I.././../gcc-4.8.5/gcc/../libcpp/include -DLIBICONV_PLUG \ -o
build/gencheck.o .././../gcc-4.8.5/gcc/gencheck.c c++: warning: treating 'c'
input as 'c++' when in C++ mode, this behavior is deprecated In file included
from .././../gcc-4.8.5/gcc/gencheck.c:23: In file included
from ./tm.h:16: ./options.h:4293:3: error: redefinition of enumerator 'OPT_C'
OPT_C = 129,   /* -C */ ^ ./options.h:4290:3: note:
previous definition is here OPT_C = 126,   /* -C */
^ ./options.h:4301:3: error: redefinition of enumerator 'OPT_d' OPT_d =
137,   /* -d */ ^ ./options.h:4299:3: note:
previous definition is here OPT_d = 135,   /* -d */
  ^
./options.h:4302:3: error: redefinition of enumerator 'OPT_D'
  OPT_D = 138,   /* -D */
  ^
./options.h:4300:3: note: previous definition is here
  OPT_D = 136,   /* -D */
  ^
./options.h:4305:3: error: redefinition of enumerator 'OPT_d'
  OPT_d = 141,   /* -d */
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


FreeBSD ports you maintain which are out of date

2015-11-30 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 can
safely ignore the entry.

You will not be e-mailed again for any of the port/version combinations
below.

Full details can be found at the following URL:
http://portscout.freebsd.org/po...@freebsd.org.html


Port| Current version | New version
+-+
mail/milter-manager | 2.0.4   | 2.0.7
+-+


If any of the above results are invalid, please check the following page
for details on how to improve portscout's detection and selection of
distfiles on a per-port basis:

http://portscout.freebsd.org/info/portscout-portconfig.txt

Thanks.
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Updating php

2015-11-30 Thread Carmel NY
On Mon, 30 Nov 2015 13:51:24 +0100, Torsten Zuehlsdorff stated:

>Hello,
>
>> I just updated php5 (5.4) to php56. I now have two programsthat will not
>> run. "net/phpldapadmin" and "databases/phpmyadmin". When  I attempt to
>> access "net/phpldapadmin"  via the net, I receive this error message:
>>
>> Notice: Undefined variable: _SESSION
>> in /usr/local/www/phpldapadmin/lib/page.php on line 379  
>
>This indicates a missing session module, but your pkg info command lists it.
>
>> Fatal error: Call to a member function getValue() on a non-object
>> in /usr/local/www/phpldapadmin/lib/page.php on line 379
>>
>> I removed all of the old "php5"modules and then rebuilt
>> "net/phpldapadmin". I appeared to successfully rebuild all of its required
>> php modules.
>>
>> I am also experiencing problems with the "databases/phpmyadmin" port. I
>> receive this error message:
>>
>> PHP 5.5+ is required.  
>
>Do you use an apache webserver? Did you restart it? If you use php-fpm: 
>did you restart it?

The problem is fixed. I FORGOT to rebuild the "apache24" server.

-- 
Carmel
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


FreeBSD ports you maintain which are out of date

2015-11-30 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 can
safely ignore the entry.

You will not be e-mailed again for any of the port/version combinations
below.

Full details can be found at the following URL:
http://portscout.freebsd.org/po...@freebsd.org.html


Port| Current version | New version
+-+
comms/gammu | 1.33.0  | 1.36.7
+-+
mail/milter-manager | 2.0.4   | 2.0.6
+-+


If any of the above results are invalid, please check the following page
for details on how to improve portscout's detection and selection of
distfiles on a per-port basis:

http://portscout.freebsd.org/info/portscout-portconfig.txt

Thanks.
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Updating php

2015-11-30 Thread Matthew Seaman
On 2015/11/30 13:39, Carmel NY wrote:
> The problem is fixed. I FORGOT to rebuild the "apache24" server.

Glad to hear is all working now.  Although it's probably not apache24
specifically that was holding you up, but apr (the Apache Runtime) and
mod_php56.

This is why I generally prefer to use php-fpm nowadays, and access them
from a HTTP server using FCGI.  It provides a useful separation of
roles: the web server can handle serving pages as efficiently as
possible and need not know anything of the web application internals or
the language used, nor does it need to link against all sorts of
external shared libraries to provide support for whatever languages.
Keeping things decoupled like that makes it much easier to manage the
system and cope with these sorts of upgrades.

Cheers,

Matthew




signature.asc
Description: OpenPGP digital signature


Updating php

2015-11-30 Thread Carmel NY
FreeBSD-10.2

I just updated php5 (5.4) to php56. I now have two programsthat will not run.
"net/phpldapadmin" and "databases/phpmyadmin". When  I attempt to access
"net/phpldapadmin"  via the net, I receive this error message:

Notice: Undefined variable: _SESSION
in /usr/local/www/phpldapadmin/lib/page.php on line 379

Fatal error: Call to a member function getValue() on a non-object
in /usr/local/www/phpldapadmin/lib/page.php on line 379

I removed all of the old "php5"modules and then rebuilt "net/phpldapadmin". I
appeared to successfully rebuild all of its required php modules.

I am also experiencing problems with the "databases/phpmyadmin" port. I
receive this error message:

PHP 5.5+ is required.

I am hoping that someone can assist me.

Thanks!

pkg info -d "lang/php56"  
php56-5.6.14:
libxml2-2.9.3
pcre-8.37_4

pkg info -d "net/phpldapadmin"
phpldapadmin-1.2.3_7,1:
php56-session-5.6.14
php56-xml-5.6.14
php56-hash-5.6.14
php56-5.6.14
php56-iconv-5.6.14
php56-ldap-5.6.14
php56-openssl-5.6.14
php56-gettext-5.6.14

pkg info -d databases/phpmyadmin
phpMyAdmin-4.5.2:
php56-session-5.6.14
php56-xml-5.6.14
php56-bz2-5.6.14
php56-ctype-5.6.14
php56-filter-5.6.14
php56-zip-5.6.14
php56-openssl-5.6.14
php56-gd-5.6.14_1
php56-mcrypt-5.6.14
php56-5.6.14
php56-mbstring-5.6.14
php56-mysqli-5.6.14
php56-json-5.6.14
php56-zlib-5.6.14

-- 
Carmel
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Is it possible to specify which files are backed up to MASTER_SITE_BACKUP?

2015-11-30 Thread RW via freebsd-ports
On Sun, 29 Nov 2015 21:57:17 -0800
Yuri wrote:

> I have the complex fetch stage which takes one set of distfiles, and 
> produces another distfile, only that distfile is used in build.
> 
> There is the variable CKSUMFILES that controls which distfiles are 
> included in distinfo (in my case all of them should be there). But
> how do I control which distfiles get to MASTER_SITE_BACKUP? Is there
> a variable that controls this, distinct from DISTFILES? In my case I
> only want the distfile that my fetch produces to be cached in 
> MASTER_SITE_BACKUP. How can I do this?

I don't think you can, AFAIK it's just an ordinary DISTDIR that's
populated by port testing and package building.
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Updating php

2015-11-30 Thread Torsten Zuehlsdorff

Hello,


I just updated php5 (5.4) to php56. I now have two programsthat will not run.
"net/phpldapadmin" and "databases/phpmyadmin". When  I attempt to access
"net/phpldapadmin"  via the net, I receive this error message:

Notice: Undefined variable: _SESSION
in /usr/local/www/phpldapadmin/lib/page.php on line 379


This indicates a missing session module, but your pkg info command lists it.


Fatal error: Call to a member function getValue() on a non-object
in /usr/local/www/phpldapadmin/lib/page.php on line 379

I removed all of the old "php5"modules and then rebuilt "net/phpldapadmin". I
appeared to successfully rebuild all of its required php modules.

I am also experiencing problems with the "databases/phpmyadmin" port. I
receive this error message:

PHP 5.5+ is required.


Do you use an apache webserver? Did you restart it? If you use php-fpm: 
did you restart it?


Greetings,
Torsten

___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"