FreeBSD ports you maintain which are out of date
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 +-+ textproc/elasticsearch-plugin-marvel| 1.3.1 | 2.3.4 +-+ www/tikiwiki| 15.0| 15.2 +-+ 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"
FreeBSD Port: samba44-4.4.3_1
Dear timur, samba-tool of samba-4.4.3 seems to have no --use-ntvfs option. root@fbsd:~ # samba-tool domain provision --interactive --use-xattrs=no --use-ntvfs Usage: samba-tool domain provision [options] samba-tool domain provision: error: no such option: --use-ntvfs root@fbsd:~ # samba-tool domain provision --interactive --use-xattrs=no Realm [EXAMPLE.KR]: ... Setting up self join ERROR(): Provision failed - ProvisioningError: Your filesystem or build does not support posix ACLs, which s3fs requires. Try the mounting the filesystem with the 'acl' option. File "/usr/local/lib/python2.7/site-packages/samba/netcmd/domain.py", line 461, in run nosync=ldap_backend_nosync, ldap_dryrun_mode=ldap_dryrun_mode) File "/usr/local/lib/python2.7/site-packages/samba/provision/__init__.py", line 2171, in provision skip_sysvolacl=skip_sysvolacl) File "/usr/local/lib/python2.7/site-packages/samba/provision/__init__.py", line 1805, in provision_fill names.domaindn, lp, use_ntvfs) File "/usr/local/lib/python2.7/site-packages/samba/provision/__init__.py", line 1557, in setsysvolacl raise ProvisioningError("Your filesystem or build does not support posix ACLs, which s3fs requires. " samba-4.4.5/configure --help shows --with-ntvfs-fileserver and --without-ntvfs-fileserver options. After modifying Makefile to include --with-ntvfs-fileserver configure option, building and installing, --use-ntvfs option works but segfaulted. root@fbsd:~ # samba-tool domain provision --interactive --use-xattrs=no --use-ntvfs Realm [EXAMPLE.KR]: ... Setting up self join Segmentation fault (core dumped) Hmm. ___ 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: Wxlua / Zbstudio
Hello Raymond, I'm a developer of Lua/torch. Currently, I use Ubuntu to write my codes. However, Ubuntu has frequent updates and make my environment unstable. I tried to install Ghost BSD and compile wxlua and zbstudio but both failed. Do you have any plan to port these two to FreeBSD? I started some work on an wxlua port. I got some small progress, but i'm hacking at this error: [ 7%] Building CXX object modules/luamodule/CMakeFiles/wxLuaModule.dir/__/wxbind/src/wxstc_bind.cpp.o In file included from /usr/ports/x11-toolkits/wxlua/work/wxLua-2.8.12.3-src/modules/wxbind/src/wxgl_bind.cpp:19: In file included from /usr/ports/x11-toolkits/wxlua/work/wxLua-2.8.12.3-src/modules/wxbind/include/wxgl_bind.h:47: In file included from /usr/local/include/wx-3.0/wx/glcanvas.h:192: In file included from /usr/local/include/wx-3.0/wx/gtk/glcanvas.h:14: /usr/local/include/wx-3.0/wx/unix/glx11.h:13:10: fatal error: 'GL/glx.h' file not found #include Since i never wrote cmake ports before, i do not know how to tell cmake, that the file is there: $ ls -lah /usr/local/include/GL/glx.h -rw-r--r-- 1 root wheel14K 3 Jun 16:18 /usr/local/include/GL/glx.h Any idea? Until now i can say i just works with lua 5.1. 5.2 fails because of missing compat-mode. 5.3 is untested. Makefile of port looks currently like this: === Start === PORTNAME= wxlua PORTVERSION=2.8.12.3 CATEGORIES= x11-toolkits MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION} DISTNAME= wxLua-${PORTVERSION}-src MAINTAINER= t...@freebsd.org COMMENT=Follows later RUN_DEPENDS=wxgtk30:x11-toolkits/wxgtk30 CMAKE_ARGS= -DwxWidgets_CONFIG_EXECUTABLE=/usr/local/bin/wxgtk2u-3.0-config CMAKE_ARGS+=-DwxLua_LUA_INCLUDE_DIR=${LUA_INCDIR} CMAKE_ARGS+=-DwxLua_LUA_LIBRARY=${LUA_LIBDIR} CMAKE_ARGS+=-DwxLua_LUA_LIBRARY_USE_BUILTIN=FALSE CMAKE_BUILD_TYPE= Release USES= cmake:outsource lua:51 .include .include === End === 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"
Re: Wxlua / Zbstudio
On Thu, Jul 7, 2016 at 6:51 PM, Torsten Zuehlsdorff < mailingli...@toco-domains.de> wrote: > Hello Raymond, > > I'm a developer of Lua/torch. Currently, I use Ubuntu to write my codes. >> However, Ubuntu has frequent updates and make my environment unstable. >> >> I tried to install Ghost BSD and compile wxlua and zbstudio but both >> failed. Do you have any plan to port these two to FreeBSD? >> > > I started some work on an wxlua port. I got some small progress, but i'm > hacking at this error: > > [ 7%] Building CXX object > modules/luamodule/CMakeFiles/wxLuaModule.dir/__/wxbind/src/wxstc_bind.cpp.o > In file included from > /usr/ports/x11-toolkits/wxlua/work/wxLua-2.8.12.3-src/modules/wxbind/src/wxgl_bind.cpp:19: > In file included from > /usr/ports/x11-toolkits/wxlua/work/wxLua-2.8.12.3-src/modules/wxbind/include/wxgl_bind.h:47: > In file included from /usr/local/include/wx-3.0/wx/glcanvas.h:192: > In file included from /usr/local/include/wx-3.0/wx/gtk/glcanvas.h:14: > /usr/local/include/wx-3.0/wx/unix/glx11.h:13:10: fatal error: 'GL/glx.h' > file not found > #include > > > Since i never wrote cmake ports before, i do not know how to tell cmake, > that the file is there: > > $ ls -lah /usr/local/include/GL/glx.h > -rw-r--r-- 1 root wheel14K 3 Jun 16:18 /usr/local/include/GL/glx.h > > Any idea? > > Until now i can say i just works with lua 5.1. 5.2 fails because of > missing compat-mode. 5.3 is untested. > > Makefile of port looks currently like this: > > === Start === > > PORTNAME= wxlua > PORTVERSION=2.8.12.3 > CATEGORIES= x11-toolkits > MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION} > DISTNAME= wxLua-${PORTVERSION}-src > > MAINTAINER= t...@freebsd.org > COMMENT=Follows later > > RUN_DEPENDS=wxgtk30:x11-toolkits/wxgtk30 > > CMAKE_ARGS= > -DwxWidgets_CONFIG_EXECUTABLE=/usr/local/bin/wxgtk2u-3.0-config > CMAKE_ARGS+=-DwxLua_LUA_INCLUDE_DIR=${LUA_INCDIR} > CMAKE_ARGS+=-DwxLua_LUA_LIBRARY=${LUA_LIBDIR} > CMAKE_ARGS+=-DwxLua_LUA_LIBRARY_USE_BUILTIN=FALSE > > CMAKE_BUILD_TYPE= Release > > USES= cmake:outsource lua:51 > > .include > > .include > > === End === > > 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" > I guess, USE_GL=gl ___ 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: Reset your Twitter password
___ 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"
[HEADSUP] change in default openssl coming
Hi, During this summer (sometime in August I think) I will be changing the default OpenSSL for the ports tree from the base system version to security/openssl. I will also, because it goes with it, change the default GSSAPI from base to something else, I think the consensus was to use the MIT version, which is security/krb5. Before I do that, it would be nice if people who actually use Kerberos (so, that's the two of you at the back) could provide some feedback if it changing this will break things. -- Mathieu Arnold pgp8SczYhAegk.pgp Description: PGP signature
gnu screen incompatibility?
It seems that screen 4.4.0_1 can not connect to sessions started with the previous version 4.3.x. At least that was the case for me. -- Andriy Gapon ___ 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: gnu screen incompatibility?
On Friday, July 08, 2016 09:43:17 Andriy Gapon wrote: > It seems that screen 4.4.0_1 can not connect to sessions started with > the previous version 4.3.x. At least that was the case for me. > I noticed that too, but: $ pkg info -D screen screen-4.4.0_1: Always: = As of GNU Screen 4.4.0: Note that there was fix to screen message structure field responsible for $TERM handling, making it impossible to attach to older versions. = -- Greg ___ 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"