Re: FreeBSD unmaintained ports which are currently marked broken

2009-09-09 Thread Mel Flynn
On Monday 07 September 2009 08:29:16 lini...@freebsd.org wrote:

 portname:   graphics/gephex
 broken because: does not build
 build errors:
 http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.6.2009081417/ge
phex-0.4.4_1.log (_Aug_17_05:37:40_UTC_2009) overview:  
 http://portsmon.FreeBSD.org/portoverview.py?category=graphicsportname=geph
ex

This is a libtool regression / creative use of libtool15 by upstream. I have 
fixed the offending module, by patching Makefile.am[1], but then run into issues
with the frbinmodule. I could probably fix that too, but since I'm neither a
videojock, nor have a joystick, I wonder if making it compile is good enough.
So are there any users of this port that could do runtime testing?

-- 
Mel

--- modules/src/chromakeymodule/Makefile.am.orig2007-04-29 
16:53:43.0 +0200
+++ modules/src/chromakeymodule/Makefile.am 2009-09-09 08:43:28.0 
+0200
@@ -11,7 +11,7 @@
 chromakeymodule.def: chromakeymodule.spec
$(PLUC) def @srcdir@/chromakeymodule.spec
 
-exeex...@sharedlibext@
+EXEEXT=.la
 
 bin_PROGRAMS = chromakeymodule
 
@@ -47,7 +47,7 @@
 cpuinfoINCLUDES = -I @srcdir@/../../../util/src/cpuinfo
 endif
 
-chromakeymodule_LDFLAGS = @SHARED_LD_FLAGS@
+chromakeymodule_LDFLAGS = @SHARED_LD_FLAGS@ -module
 
 INCLUDES = -...@srcdir@/../../../engine/src/engine \
-...@srcdir@/../../../util/include \

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


Re: security/engine_pkcs11 unable to use it

2009-09-09 Thread Alex Dupre
Mel Flynn ha scritto:
 As per http://www.opensc-project.org/engine_pkcs11/wiki/QuickStart I've 
 modified my /etc/ssl/openssl.cnf, yet:

Can you try the command-line alternative?

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


Re: security/engine_pkcs11 unable to use it

2009-09-09 Thread Mel Flynn
On Wednesday 09 September 2009 10:41:32 Alex Dupre wrote:
 Mel Flynn ha scritto:
  As per http://www.opensc-project.org/engine_pkcs11/wiki/QuickStart I've
  modified my /etc/ssl/openssl.cnf, yet:

 Can you try the command-line alternative?

OpenSSL engine -t dynamic -pre 
SO_PATH:/usr/local/lib/engines/engine_pkcs11.so -pre ID:pkcs11 -pre LIST_ADD:1 
-pre LOAD
(dynamic) Dynamic engine loading support
[Success]: SO_PATH:/usr/local/lib/engines/engine_pkcs11.so
[Success]: ID:pkcs11
[Success]: LIST_ADD:1
[Success]: LOAD
Loaded: (pkcs11) pkcs11 engine
unable to load module (null)

OpenSSL engine -t dynamic -pre 
SO_PATH:/usr/local/lib/engines/engine_pkcs11.so -pre ID:pkcs11 -pre LIST_ADD:1 
-pre LOAD -pre MODULE_PATH:/usr/local/lib/engines/engine_pkcs11.so
(dynamic) Dynamic engine loading support
[Success]: SO_PATH:/usr/local/lib/engines/engine_pkcs11.so
[Success]: ID:pkcs11
[Success]: LIST_ADD:1
[Success]: LOAD
[Success]: MODULE_PATH:/usr/local/lib/engines/engine_pkcs11.so
Loaded: (pkcs11) pkcs11 engine
unable to load module /usr/local/lib/engines/engine_pkcs11.so
 [ unavailable ]

% ldd /usr/local/lib/engines/engine_pkcs11.so
/usr/local/lib/engines/engine_pkcs11.so:
libp11.so.3 = /usr/local/lib/libp11.so.3 (0x281b7000)
libssl.so.6 = /usr/lib/libssl.so.6 (0x2830)
libltdl.so.7 = /usr/local/lib/libltdl.so.7 (0x281bf000)
libc.so.7 = /lib/libc.so.7 (0x28091000)
libcrypto.so.6 = /lib/libcrypto.so.6 (0x28346000)

% find /usr/lib /usr/local/lib -name 'opensc-*' -ls|wc -l
   0

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


Re: security/engine_pkcs11 unable to use it

2009-09-09 Thread Mel Flynn
On Wednesday 09 September 2009 11:45:15 Alex Dupre wrote:
 Mel Flynn ha scritto:
  Mel Flynn ha scritto:
  As per http://www.opensc-project.org/engine_pkcs11/wiki/QuickStart I've
  modified my /etc/ssl/openssl.cnf, yet:
 
  Can you try the command-line alternative?
 
  OpenSSL engine -t dynamic -pre
  SO_PATH:/usr/local/lib/engines/engine_pkcs11.so -pre ID:pkcs11 -pre
  LIST_ADD:1 -pre LOAD -pre
  MODULE_PATH:/usr/local/lib/engines/engine_pkcs11.so (dynamic) Dynamic
  engine loading support
  [Success]: SO_PATH:/usr/local/lib/engines/engine_pkcs11.so
  [Success]: ID:pkcs11
  [Success]: LIST_ADD:1
  [Success]: LOAD
  [Success]: MODULE_PATH:/usr/local/lib/engines/engine_pkcs11.so
  Loaded: (pkcs11) pkcs11 engine
  unable to load module /usr/local/lib/engines/engine_pkcs11.so
   [ unavailable ]

 Ops, I didn't notice it before, but which PKCS11 token are you using?
 This is the engine, MODULE_PATH must address a criptoki library.

Aha! Maybe patch below is an idea?
OpenSSL engine -t dynamic -pre 
SO_PATH:/usr/local/lib/engines/engine_pkcs11.so -pre ID:pkcs11 -pre LIST_ADD:1 
-pre LOAD -pre MODULE_PATH:/usr/local/lib/opensc-pkcs11.so
(dynamic) Dynamic engine loading support
[Success]: SO_PATH:/usr/local/lib/engines/engine_pkcs11.so
[Success]: ID:pkcs11
[Success]: LIST_ADD:1
[Success]: LOAD
[Success]: MODULE_PATH:/usr/local/lib/opensc-pkcs11.so
Loaded: (pkcs11) pkcs11 engine

--- security/engine_pkcs11/Makefile.orig2009-08-05 22:28:40.0 
+0200
+++ security/engine_pkcs11/Makefile 2009-09-09 12:01:51.0 +0200
@@ -33,4 +33,8 @@
${WRKSRC}/Makefile.in ${WRKSRC}/doc/Makefile.in
 .endif

+post-install:
+   @${ECHO_MSG} You will need a criptoki library to use the engine.
+   @${ECHO_MSG} One is provided by security/opensc
+
 .include bsd.port.mk

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


Re: security/engine_pkcs11 unable to use it

2009-09-09 Thread Alex Dupre
Mel Flynn ha scritto:
 +post-install:
 +   @${ECHO_MSG} You will need a criptoki library to use the engine.
 +   @${ECHO_MSG} One is provided by security/opensc
 +

If you need engine_pkcs11, you know what you want, the cryptoki library
should be the start.

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


Re: security/engine_pkcs11 unable to use it

2009-09-09 Thread Mel Flynn
On Wednesday 09 September 2009 12:15:46 Alex Dupre wrote:
 Mel Flynn ha scritto:
  +post-install:
  +   @${ECHO_MSG} You will need a criptoki library to use the
  engine. +   @${ECHO_MSG} One is provided by security/opensc
  +

 If you need engine_pkcs11, you know what you want, the cryptoki library
 should be the start.

I was actually looking for a way to decrypt my firefox's signons3.txt, which 
from searches on the net lead me to pkcs11 functions. ls security|grep pkcs11 
lead me to the engine and nothing lead me to security/opensc. Granted, I 
should probably have researched the standard further.

However, the configuration file issue remains. With the correct module_path 
added to openssl.cnf, openssl refuses to look in /usr/local/lib/engines or to 
give any indication it understands the sections added. Is this broken with the 
base openssl?
-- 
Mel
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


FreeBSD Port: php5-5.2.10 update to php5-5.3

2009-09-09 Thread Sudarikov A Alexey
Please put PHP 5.3 into ports of FreeBSD!

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


devel/9base v2 upgrade to v4

2009-09-09 Thread Jason J. Hellenthal


Would it be possible to fit in 9base-4 before the ports freeze. I am planning on 
going off air within the next couple of weeks and this is my preferred window 
manager and the provided with 9base-4 read command sure would come in handy.


http://dl.suckless.org/tools/9base-4.tar.gz

Thanks in advance.

--

 |-|

 Jason J. Hellenthal
 http://www.DataIX.net/
 jas...@dataix.net
 0x691411AC

 - (2^(N-1))
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


Get 15% off the Vintage America Collection for Nine West by Donating to Soles4Souls

2009-09-09 Thread Soles4Souls and Nine West
Get 15% off the Vintage America Collection for Nine West by Donating to 
Soles4Souls
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


Can't get hald to compile in up to date current laptop.

2009-09-09 Thread eculp

I'm running current 9.0

# uname -a
FreeBSD ed.local.net.mx 9.0-CURRENT FreeBSD 9.0-CURRENT #314: Wed Sep   
9 06:15:13 CDT 2009  
r...@ed.local.net.mx:/usr/obj/usr/src/sys/ENCONTACTO  i386


The only ports that need undating are:
hal-0.5.11_25  needs updating (port has 0.5.11_26)
pulseaudio-0.9.15_4needs updating (port has 0.9.15_5)

I have checked ports/UPDATING and found nothing but I could have  
missed something.


plusaudio doesn't bother me but hal does a bit.  The error trying to  
compile follows.


gmake[5]: Entering directory  
`/usr/ports/sysutils/hal/work/hal-0.5.11/hald/freebsd/probing'
cc -DHAVE_CONFIG_H -I. -I../../..   
-DPACKAGE_SYSCONF_DIR=\/usr/local/etc\  
-DPACKAGE_DATA_DIR=\/usr/local/share\  
-DPACKAGE_BIN_DIR=\/usr/local/bin\  
-DPACKAGE_LOCALE_DIR=\/usr/local/share/locale\  
-DPACKAGE_LOCALSTATEDIR=\/var\ -I../../..  
-I/usr/local/include/dbus-1.0 -I/usr/local/include/dbus-1.0/include
-I/usr/local/include -DHAVE_CK_0_3  -O2 -pipe -fno-strict-aliasing  
-Wall -Wchar-subscripts -Wmissing-declarations -Wnested-externs  
-Wpointer-arith -Wcast-align -Wsign-compare -MT probe-hiddev.o -MD -MP  
-MF .deps/probe-hiddev.Tpo -c -o probe-hiddev.o probe-hiddev.c

probe-hiddev.c: In function 'main':
probe-hiddev.c:81: error: 'USB_GET_REPORT_ID' undeclared (first use in  
this function)

probe-hiddev.c:81: error: (Each undeclared identifier is reported only once
probe-hiddev.c:81: error: for each function it appears in.)
gmake[5]: *** [probe-hiddev.o] Error 1
gmake[5]: Leaving directory  
`/usr/ports/sysutils/hal/work/hal-0.5.11/hald/freebsd/probing'

gmake[4]: *** [all-recursive] Error 1
gmake[4]: Leaving directory  
`/usr/ports/sysutils/hal/work/hal-0.5.11/hald/freebsd'

gmake[3]: *** [all-recursive] Error 1
gmake[3]: Leaving directory `/usr/ports/sysutils/hal/work/hal-0.5.11/hald'
gmake[2]: *** [all] Error 2
gmake[2]: Leaving directory `/usr/ports/sysutils/hal/work/hal-0.5.11/hald'
gmake[1]: *** [all-recursive] Error 1
gmake[1]: Leaving directory `/usr/ports/sysutils/hal/work/hal-0.5.11'
gmake: *** [all] Error 2
*** Error code 1

Stop in /usr/ports/sysutils/hal.

Any help or suggestions will be appreciated.

thanks,

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


`portsclean -C` tripping over noschg flag

2009-09-09 Thread Alexander Best
i don't know if this is a known problem or not. i searched the PR database but
couldn't find anything:

certain ports apply flags (noschg e.g.) not during installation but right away
in their working directory. misc/compat4x is one example. when doing make
clean the working directory gets deleted properly. when doing `portsclean .C`
instead portsclean is unable to delete the working directory since it trips
over the noschg flag.

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


Re: CFT - ioquake3 1.36 port

2009-09-09 Thread Alexander Best
tried to grab the patches but the connection to the server times out.

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


Re: FreeBSD Port: php5-5.2.10 update to php5-5.3

2009-09-09 Thread Tobias Lott


On Wed, 9 Sep 2009 17:05:28 +0400
Sudarikov A Alexey a.sudari...@hoster.ru wrote:

 Please put PHP 5.3 into ports of FreeBSD!
 
 ___
 freebsd-ports@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-ports
 To unsubscribe, send any mail to
 freebsd-ports-unsubscr...@freebsd.org

There is only a BETA 1 Patch for Suhosin

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


libx11 build problems

2009-09-09 Thread lenny
getting some weird autoconf errors. begging for help. thanks a lot in
advance.

le...@skywalker:/usr/ports/x11/libX11$sudo make install
===  Extracting for libX11-1.2.1_1,1
= MD5 Checksum OK for xorg/lib/libX11-1.2.1.tar.bz2.
= SHA256 Checksum OK for xorg/lib/libX11-1.2.1.tar.bz2.
===  Patching for libX11-1.2.1_1,1
===  Applying FreeBSD patches for libX11-1.2.1_1,1
===   libX11-1.2.1_1,1 depends on file:
/usr/local/libdata/pkgconfig/xcb.pc - found
===   libX11-1.2.1_1,1 depends on file:
/usr/local/share/aclocal/xorg-macros.m4 - found
===   libX11-1.2.1_1,1 depends on file:
/usr/local/libdata/pkgconfig/bigreqsproto.pc - found
===   libX11-1.2.1_1,1 depends on file:
/usr/local/libdata/pkgconfig/xcmiscproto.pc - found
===   libX11-1.2.1_1,1 depends on file:
/usr/local/libdata/pkgconfig/xextproto.pc - found
===   libX11-1.2.1_1,1 depends on file:
/usr/local/libdata/pkgconfig/xtrans.pc - found
===   libX11-1.2.1_1,1 depends on file:
/usr/local/libdata/pkgconfig/kbproto.pc - found
===   libX11-1.2.1_1,1 depends on file:
/usr/local/libdata/pkgconfig/inputproto.pc - found
===   libX11-1.2.1_1,1 depends on file:
/usr/local/libdata/pkgconfig/xf86bigfontproto.pc - found
===   libX11-1.2.1_1,1 depends on file:
/usr/local/libdata/pkgconfig/xau.pc - found
===   libX11-1.2.1_1,1 depends on file:
/usr/local/libdata/pkgconfig/xdmcp.pc - found
===   libX11-1.2.1_1,1 depends on file:
/usr/local/libdata/pkgconfig/xproto.pc - found
===   libX11-1.2.1_1,1 depends on file: /usr/local/bin/automake-1.10 - found
===   libX11-1.2.1_1,1 depends on file: /usr/local/bin/autoconf-2.62 - found
===   libX11-1.2.1_1,1 depends on package: libtool=2.2 - found
===   libX11-1.2.1_1,1 depends on executable: pkg-config - found
===  Configuring for libX11-1.2.1_1,1
/usr/local/share/aclocal/linc.m4:1: warning: underquoted definition of
AM_PATH_LINC
/usr/local/share/aclocal/linc.m4:1:   run info '(automake)Extending aclocal'
/usr/local/share/aclocal/linc.m4:1:   or see
http://sources.redhat.com/automake/automake.html#Extending-aclocal
configure.ac:22: warning: AC_CACHE_VAL(lt_prog_compiler_static_works,
...): suspicious cache-id, must contain _cv_ to be cached
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
/usr/local/share/aclocal/libtool15.m4:611: AC_LIBTOOL_LINKER_OPTION is
expanded from...
/usr/local/share/aclocal/libtool15.m4:2492: _LT_AC_LANG_C_CONFIG is
expanded from...
/usr/local/share/aclocal/libtool15.m4:2491: AC_LIBTOOL_LANG_C_CONFIG is
expanded from...
/usr/local/share/aclocal/libtool15.m4:95: AC_LIBTOOL_SETUP is expanded
from...
/usr/local/share/aclocal/libtool15.m4:75: _AC_PROG_LIBTOOL is expanded
from...
/usr/local/share/aclocal/libtool15.m4:40: AC_PROG_LIBTOOL is expanded from...
configure.ac:22: the top level
configure.ac:22: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works, ...):
suspicious cache-id, must contain _cv_ to be cached
/usr/local/share/aclocal/libtool15.m4:568: AC_LIBTOOL_COMPILER_OPTION is
expanded from...
/usr/local/share/aclocal/libtool15.m4:4546: AC_LIBTOOL_PROG_COMPILER_PIC
is expanded from...
configure.ac:22: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_CXX,
...): suspicious cache-id, must contain _cv_ to be cached
/usr/local/share/aclocal/libtool15.m4:2600: _LT_AC_LANG_CXX_CONFIG is
expanded from...
/usr/local/share/aclocal/libtool15.m4:2599: AC_LIBTOOL_LANG_CXX_CONFIG is
expanded from...
/usr/local/share/aclocal/libtool15.m4:1646: _LT_AC_TAGCONFIG is expanded
from...
configure.ac:22: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_F77,
...): suspicious cache-id, must contain _cv_ to be cached
/usr/local/share/aclocal/libtool15.m4:3667: _LT_AC_LANG_F77_CONFIG is
expanded from...
/usr/local/share/aclocal/libtool15.m4:3666: AC_LIBTOOL_LANG_F77_CONFIG is
expanded from...
configure.ac:22: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_GCJ,
...): suspicious cache-id, must contain _cv_ to be cached
/usr/local/share/aclocal/libtool15.m4:3767: _LT_AC_LANG_GCJ_CONFIG is
expanded from...
/usr/local/share/aclocal/libtool15.m4:3766: AC_LIBTOOL_LANG_GCJ_CONFIG is
expanded from...
configure.ac:22: warning: AC_CACHE_VAL(lt_prog_compiler_static_works,
...): suspicious cache-id, must contain _cv_ to be cached
../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
aclocal.m4:1498: AC_LIBTOOL_LINKER_OPTION is expanded from...
aclocal.m4:3379: _LT_AC_LANG_C_CONFIG is expanded from...
aclocal.m4:3378: AC_LIBTOOL_LANG_C_CONFIG is expanded from...
aclocal.m4:982: AC_LIBTOOL_SETUP is expanded from...
aclocal.m4:962: _AC_PROG_LIBTOOL is expanded from...
aclocal.m4:927: AC_PROG_LIBTOOL is expanded from...
configure.ac:22: the top level
configure.ac:22: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works, ...):
suspicious cache-id, must contain _cv_ to be cached
aclocal.m4:1455: AC_LIBTOOL_COMPILER_OPTION is expanded from...
aclocal.m4:5421: