CVS: cvs.openbsd.org: ports

2011-11-30 Thread Robert Nagy
CVSROOT:/cvs
Module name:ports
Changes by: rob...@cvs.openbsd.org  2011/11/30 04:00:59

Modified files:
www/havp   : Makefile 
www/havp/pkg   : havp.rc 

Log message:
create the working directories with the correct group
so that others can access it
discussed with ajacoutot@



CVS: cvs.openbsd.org: ports

2011-11-30 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2011/11/30 04:13:47

Modified files:
x11/gnome/screensaver: Makefile 
x11/gnome/screensaver/files: gs-auth-bsdauth.c 
x11/gnome/screensaver/patches: patch-config_h_in 
   patch-configure_ac 
   patch-src_Makefile_am 
   patch-src_setuid_c 

Log message:
Sync with what I'm about to commit upstream.



CVS: cvs.openbsd.org: ports

2011-11-30 Thread David Coppa
CVSROOT:/cvs
Module name:ports
Changes by: dco...@cvs.openbsd.org  2011/11/30 04:50:58

Modified files:
x11/awesome: Makefile distinfo 
x11/awesome/patches: patch-CMakeLists_txt 
 patch-awesomeConfig_cmake 
 patch-awesomerc_lua_in 
 patch-lib_awful_util_lua_in 
Added files:
x11/awesome/patches: patch-awesome_c patch-client_c 
 patch-client_h patch-common_xutil_c 
 patch-event_c patch-lib_naughty_lua_in 
 patch-property_c patch-selection_c 
 patch-systray_c patch-window_c 
Removed files:
x11/awesome/patches: patch-lib_awful_mouse_init_lua_in 

Log message:
Update to awesome v3.4.11 (Pickapart)

ChangeLog at http://awesome.naquadah.org/changelogs/short/v3.4.11



CVS: cvs.openbsd.org: ports

2011-11-30 Thread David Coppa
CVSROOT:/cvs
Module name:ports
Changes by: dco...@cvs.openbsd.org  2011/11/30 07:15:39

Modified files:
graphics/feh   : Makefile 
Added files:
graphics/feh/patches: patch-src_Makefile 

Log message:
src/Makefile: respect CPPFLAGS
(upstream git commit 2424b51f3df9e570612f0098600d9877b5c0160b)



CVS: cvs.openbsd.org: ports

2011-11-30 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2011/11/30 08:10:27

Modified files:
lang/vala  : Makefile distinfo 
lang/vala/pkg  : PLIST 

Log message:
- bugfix update to 0.14.1



CVS: cvs.openbsd.org: ports

2011-11-30 Thread Christian Weisgerber
CVSROOT:/cvs
Module name:ports
Changes by: na...@cvs.openbsd.org   2011/11/30 11:57:49

Modified files:
education/gtypist: Makefile distinfo 

Log message:
maintenance update to 2.9.1



CVS: cvs.openbsd.org: ports

2011-11-30 Thread David Hill
CVSROOT:/cvs
Module name:ports
Changes by: dh...@cvs.openbsd.org   2011/11/30 14:16:42

Log message:
import libsrtp

The libSRTP library is an open-source implementation of the Secure
Real-time Transport Protocol (SRTP) originally authored by Cisco
Systems, Inc.

ok benoit@

Status:

Vendor Tag: dhill
Release Tags:   dhill_2030

N ports/security/libsrtp/Makefile
N ports/security/libsrtp/distinfo
N ports/security/libsrtp/pkg/DESCR
N ports/security/libsrtp/pkg/PLIST

No conflicts created by this import



CVS: cvs.openbsd.org: ports

2011-11-30 Thread David Hill
CVSROOT:/cvs
Module name:ports
Changes by: dh...@cvs.openbsd.org   2011/11/30 14:19:13

Modified files:
security   : Makefile 

Log message:
+libsrtp



Re: NEW: openmodeller

2011-11-30 Thread David Coppa
On Tue, Nov 29, 2011 at 7:14 PM, Daniel Bolgheroni dan...@bolgh.eng.br wrote:

 OK, compiling fine on a fresh installation on /i386 and /amd64. Didn't
 test on /macppc yet, but will do soon when I upgrade to -current.

What about the attached one?

cheers!
David

P.S.: other devs willing to ok this?


openmodeller_3.tgz
Description: GNU Zip compressed data


how to work around non existing MSG_NOSIGNAL on OpenBSD?

2011-11-30 Thread Sebastian Reitenbach
Hi,

www/sope now uses MSG_NOSIGNAL as flag for send(2), see the Linux manual page:
http://www.kernel.org/doc/man-pages/online/pages/man2/send.2.html

After some googling, I found that I can define it to 0, and just go ahead. This 
way its right now in SOPE.
I opened a bug report to get the patch upstream::
http://www.sogo.nu/bugs/view.php?id=1460

The answer I got tells, me, that its needed to fix a crash in openchange/samba4 
compatibility.
This is for sope/sogo 2.0, we don't have openchange/samba4 for now, so ignoring 
it, should be no problem for now.

Anyone can give me a hint on how to better handle this MSG_NOSIGNAL instead of 
just defining it to 0?

checking the ports tree for examples, I see it differently handled:
most of them, just define it to 0, others i.e. 

dctc/patches/patch-src_dc_xfer_common_c

does:
+/* compability macros for reading/writing to sockets */
+#ifdef __OpenBSD__
+# define sock_read(sck, buf, size, flags) read(sck, buf, size)
+# define sock_write(sck, buf, size, flags) write(sck, buf, size)
+#else
+# define sock_read(sck, buf, size, flags) recv(sck, buf, size, flags)
+# define sock_write(sck, buf, size, flags) send(sck, buf, size, flags)
+#endif
+

and then later:

-   res=send(sck,buf,sizeof(buf),MSG_NOSIGNAL /* |MSG_WAITALL */ );
+   res=sock_write(sck,buf,sizeof(buf),MSG_NOSIGNAL /* |MSG_WAITALL 
*/ );



I'm unsure whether the dctc approach is good?
Mac OSX seems to have SO_NOSIGPIPE as setsockopt() option, but we also don't 
seem to have this.

any insights or pointers to further research on my side is apprechiated.

cheers,
Sebastian



Re: NEW: kc - console based password storing application

2011-11-30 Thread Sergey Bronnikov
default%  ^DDo you want to write the changes? yes/no y
Changes were NOT saved.
Segmentation fault 

openbsd 5.0 -current, amd64

P.S. from my point of view pwsafe from ports have more reliability than kc.

On 16:09 Tue 29 Nov , LEVAI Daniel wrote:
 Hi!
 
 This is a console based password management app. Useful if you don't
 want to depend on GUI stuff over terminals.
 
 
 Daniel
 
 -- 
 LÉVAI Dániel
 PGP key ID = 0x83B63A8F
 Key fingerprint = DBEC C66B A47A DFA2 792D  650C C69B BE4C 83B6 3A8F



-- 
sergeyb@



Só Hoje Compra Coletiva Incríveis Ofertas com até 90% OFF - Acesse Agora e Compre!

2011-11-30 Thread Incriveis Ofertas - Campo Grande
www.incriveisofertas.com

[IMAGE] 75% de desconto em 1 Cauteriza��o na Big Star ( De R$ 120,00 Por
R$ 33,00 )

de R$ 120,00 por R$ R$ 33,00


[IMAGE] Fique Maravilhosa com 1 Corte + 1 Escova + 1 Cristaliza��o + 1
M�o Simples de R$ 150 por R$49

de R$ 150,00 por R$ R$ 49,90


[IMAGE] Fonte da Beleza traz para voc� 60% OFF em Depila��o Eg�pcia do
Rosto com Linha! De R$ 35,00 Por R$ 13,99

de R$ 35,00 por R$ R$ 13,99


[IMAGE] Quase de gra�a! 90% OFF em Depila��o de Virilha Completa + Axilas
+ Bu�o + Desing de Sombrancelhas ( De R$ 60,00 Por s� R$ 8,00 )

de R$ 60,00 por R$ R$ 8,00


[IMAGE] Deixa sua pele linda para o ver�o! 1 Peeling de Diamante +
Assepsia da Pele + Esfolia��o + Hidrata��o + M�scara Calmate de R$110,00
por apenas R$19,90 na R� Centro de Beleza. (82% OFF)

de R$ 110,00 por R$ R$ 19,90


[IMAGE] Fa�a a festa pela metade do pre�o! Kit Cama Elastica+Casinha de
Bolinhas+Maquina de Algod�o Doce+100 Saquinhos de Pipoca+2 Monitores ( De
R$290,00 Por R$ 145,00 )

de R$ 290,00 por R$ R$ 145,00


[IMAGE] Delicioso Panetone 500gr de Chocolate ou Frutas de R$14,00 Por
Apenas R$7,00

de R$ 14,00 por R$ R$ 7,00


[IMAGE] 53% OFF em Batata Recheada pela metade do Pre�o!? ( De at�
R$15,00 Por R$6,99 ) Compre j� o seu

de R$ 15,00 por R$ R$ 6,99


[IMAGE] Alivia-se dos sintomas da TPM e tenha um �timo Equil�brio
Hormonal com o �leo de Pr�mula de R$ 32,50 por apenas R$ 15,90 na Nattu
Sa�de. (51% OFF).

de R$ 32,50 por R$ R$ 15,90


[IMAGE] 60% de desconto em 1 Embelezador de Couros ( WURTH ) ( De R$
35,00 Por R$ 14,00 )

de R$ 35,00 por R$ R$ 14,00



[IMAGE]

Não desejo mais receber estes e-mails.


Re: NEW: kc - console based password storing application

2011-11-30 Thread LEVAI Daniel
On Wed, Nov 30, 2011 at 13:30:33 +0400, Sergey Bronnikov wrote:
 default%  ^DDo you want to write the changes? yes/no y
 Changes were NOT saved.
 Segmentation fault 
 
 openbsd 5.0 -current, amd64
 
 P.S. from my point of view pwsafe from ports have more reliability than kc.
 

Make sure, you're using the latest libedit from snapshots. It included a
fix which fixed segfaults. Although I can not say without a bt what
was your cause.

In my point of view it's been pretty stable here, for months.


Daniel

-- 
LÉVAI Dániel
PGP key ID = 0x83B63A8F
Key fingerprint = DBEC C66B A47A DFA2 792D  650C C69B BE4C 83B6 3A8F



Hoje Ofertas Incríveis para Mulheres de Campo Grande, até 90% OFF! Confira

2011-11-30 Thread OfertaDelas
Oferta Delas

As melhores ofertas de
Campo Grande

Loucura Mulheres! 80% OFF em Pacote de 1 Colora��o ou 1 Luzes + 1 Corte +
1 Selagem T�rmica + 1 P� e M�o ( De R$ 360,00 Por R$ 79,90 )

R$ 79,90
[IMAGE]

[IMAGE]


Show! 75% de desconto em 1 Hidrata��o da Matrix Loreal + Escova ( De R$
75,00 Por R$ 19,90 )

R$ 19,90
[IMAGE]

[IMAGE]


Mega Pacote com 75% de desconto em 1 Limpeza de Pele + 1 Aplicaca��o de
Ultrasom Facial + 1 Aplica��o de Radiofrequencia ( De R$ 180,00 Por R$
49,90 )

R$ 49,90
[IMAGE]

[IMAGE]


Mulher Cuidado e Limpeza para seu Carro, um luxo com Porta Lixo de Couro
Legit�mo Artesanal ( De R$ 49,90 Por R$ 19,90 ) Diversas Cores

R$ 19,90
[IMAGE]

[IMAGE]


Presente Incr�vel de Natal! Manicure e Pedicure com 50% OFF - Pacote de 4
M�os e 2 P�s ( De R$ 80,00 Por R$ 39,90 )

R$ 39,90
[IMAGE]

[IMAGE]


FisClin Centro Cl�nico traz para voc� 1 Peeling + Esfolia��o Facial +
Hidrata��o Facial ( De R$ 110,00 Por R$ 39,90 )

R$ 39,90
[IMAGE]

[IMAGE]


60% OFF em Pacote de Depila��o com Virilha Completa + Perna Inteira +
Axila + Bu�o! De R$ 60,00 Por R$ 23,99

R$ 23,99
[IMAGE]

[IMAGE]

Ofertas Especiais para Mulheres de campo Grande!
Siga-nos na redes sociais
Facebook Curta-nos!Siga-nos!
Utilizamos Sistema de Compra Segura!
Sua Compra Protegida!

[IMAGE]

Porque voc� recebeu esse e-mail?
Este e-mail foi enviado pela Oferta Delas porque voc� possui cadastro
conosco ou em algum site parceiro, juntamente com a permis�o para
contat�-lo. Pra que futuras ofertas da Oferta Delas sejam entregues na
sua caixa de entrada e n�o sejam tratados como spam, por favor adicione
ofertadela...@querohost.com.br � sua lista de contatos ou lista de
remetentes aprovados.

[IMAGE]

Pol�tica de Privacidade
N�s queremos que voc� se sinta confiante sobre a privacidade de suas
informa��es pessoais, assim como todas as informa��es que temos sobre
voc� est�o protegidas.


[IMAGE]

Não desejo mais receber estes e-mails.


Re: PyPy port (was: Re: Request for an account on a 4Gb RAM account)

2011-11-30 Thread Laurence Tratt
On Wed, Nov 30, 2011 at 12:57:34AM +0100, Piotr Sikora wrote:

 The patches for basic OpenBSD support are now in PyPy and, I hope, PyPy
 1.6, when released, will compile straight out of the box on OpenBSD (on
 amd64 almost certainly; on i386 probably; and on other platforms probably
 not). Once that's released I will create a proper port and submit to the
 list.
 did you have the time to work on the port?

As luck would have it, I'm working on it now. There was a memory consumption
bug which meant a port wasn't really practical for PyPy 1.6. Since last weeks
release of PyPy 1.7, that's now fixed. It might take several days, because
each attempted build takes so long, but it's coming along.


Laurie
-- 
Personal http://tratt.net/laurie/
The Converge programming language  http://convergepl.org/
   https://github.com/ltratt  http://twitter.com/laurencetratt



Re: UPDATE: cherokee 1.0.14 - 1.2.101

2011-11-30 Thread Fernando Quintero
Hi!,
Some news about it?
comments?
oks?

On Wed, Nov 16, 2011 at 12:25 PM, Brad b...@comstyle.com wrote:

 On Sun, Nov 13, 2011 at 11:47:09PM -0500, Fernando Quintero wrote:
  Thanks to brad for the patch and the people who test it.
  I test it on @x86 and @x64
  comments?
  oks?

 Updated diff.


 Index: Makefile
 ===
 RCS file: /home/cvs/ports/www/cherokee/Makefile,v
 retrieving revision 1.31
 diff -u -p -r1.31 Makefile
 --- Makefile16 Sep 2011 12:00:06 -  1.31
 +++ Makefile16 Nov 2011 02:19:05 -
 @@ -2,14 +2,14 @@

  SHARED_ONLY=   Yes

 -COMMENT-main = fast, flexible and easy to configure Web Server
 +COMMENT-main = fast, flexible and easy to configure web server
  COMMENT-geoip =GeoIP module for Cherokee web server
  COMMENT-ldap = LDAP module for Cherokee web server
  COMMENT-mysql =MySQL module for Cherokee web server
  COMMENT-streaming = Streaming module for Cherokee web server

 -DIR =  1.0
 -VERSION =  ${DIR}.14
 +DIR =  1.2
 +VERSION =  ${DIR}.101
  DISTNAME = cherokee-${VERSION}

  PKGNAME-main = ${DISTNAME}
 @@ -18,12 +18,6 @@ PKGNAME-mysql =  cherokee-mysql-${VERSION
  PKGNAME-geoip =cherokee-geoip-${VERSION}
  PKGNAME-streaming = cherokee-streaming-${VERSION}

 -REVISION-main =7
 -REVISION-geoip = 3
 -REVISION-ldap =4
 -REVISION-mysql = 3
 -REVISION-streaming = 6
 -
  SHARED_LIBS =  cherokee-base   0.0 \
cherokee-client 0.0 \
cherokee-server 0.0
 @@ -47,7 +41,8 @@ MASTER_SITES =${HOMEPAGE}download/${DIR

  MULTI_PACKAGES =-main -ldap -mysql -geoip -streaming

 -MODULES =  lang/python lang/php
 +MODULES =  lang/php \
 +   lang/python

  BUILD_DEPENDS =textproc/py-docutils \
lang/php/${MODPHP_VERSION},-fastcgi
 @@ -78,6 +73,7 @@ WANTLIB-streaming += theoradec theoraenc
  WANTLIB-streaming += x264 z
  RUN_DEPENDS-streaming = ${BASE_PKGPATH}

 +USE_GMAKE= Yes
  USE_LIBTOOL =  Yes
  LIBTOOL_FLAGS =--tag=disable-static
  USE_GROFF =Yes
 @@ -89,37 +85,40 @@ FAKE_FLAGS =cherokeeconfdir=${PREFIX}/
  CONFIGURE_STYLE =  gnu
  CONFIGURE_ENV =CPPFLAGS=-I${LOCALBASE}/include \
LDFLAGS=-L${LOCALBASE}/lib \
 -
 PHPCGI=${LOCALBASE}/bin/php-fastcgi-${MODPHP_VERSION} \
ac_cv_func_getgrnam_r=no
  CONFIGURE_ARGS =   ${CONFIGURE_SHARED} \
--disable-static \
 +   --enable-tmpdir=/tmp \
--sysconfdir=${SYSCONFDIR} \
--localstatedir=/var \
 +   --with-cgiroot=/var/cherokee/cgi-bin \
--with-wwwroot=/var/cherokee \
--with-wwwuser=_cherokee \
--with-wwwgroup=_cherokee \
--disable-nls \
--disable-pam \
 +   --with-ffmpeg \
--with-geoip \
--with-ldap \
--with-mysql \
 -   --with-ffmpeg
 +
 --with-php=${LOCALBASE}/bin/php-fastcgi-${MODPHP_VERSION} \
 +   --with-python=${MODPY_BIN}

  .ifdef DEBUG
  CFLAGS +=  -O0 -g3
  CONFIGURE_ARGS +=  --enable-trace
  .endif

 -MODPY_ADJ_FILES= admin/CTK/CTK-run.pre admin/upgrade_config.py \
 +MODPY_ADJ_FILES=admin/CTK/CTK-run.pre admin/upgrade_config.py \
cherokee/cherokee-admin-launcher \
cherokee/cherokee-tweak doc/test_images.py \
 -   gitlog2changelog.py po/po_stats.py svnlog2changelog.py \
 -   admin/server.py qa/run-tests.py contrib/tracelor.py
 +   po/po_stats.py admin/server.py qa/run-tests.py \
 +   contrib/tracelor.py

  LANGUAGES =en es de nl sv_SE zh_CN fr pt_BR pl ca it gl

  pre-configure:
 -   ${SUBST_CMD} ${WRKSRC}/cherokee/main_admin.c
 +   @${SUBST_CMD} ${WRKSRC}/cherokee/main_admin.c

  post-install:
cd ${PREFIX}/share/cherokee/admin  find . -name *.py | \
 @@ -130,5 +129,6 @@ post-install:
${INSTALL_DATA} ${WRKSRC}/po/admin/$i.gmo \
${PREFIX}/share/locale/$i/LC_MESSAGES/cherokee.mo
  .endfor
 +   @find ${PREFIX}/lib/cherokee -name '*.la' -print | xargs rm

  .include bsd.port.mk
 Index: distinfo
 ===
 RCS file: /home/cvs/ports/www/cherokee/distinfo,v
 retrieving revision 1.9
 diff -u -p -r1.9 distinfo
 --- distinfo20 Dec 2010 07:51:58 -  1.9
 +++ distinfo19 Oct 2011 17:13:21 -
 @@ -1,5 +1,5 @@
 -MD5 (cherokee-1.0.14.tar.gz) = baLMjbz/2dnTecTuKJUyBA==
 -RMD160 (cherokee-1.0.14.tar.gz) = WD2bRRFDgFGrZhTQ/YSLL3GLvN0=
 -SHA1 (cherokee-1.0.14.tar.gz) = pyVuudRqBQLkT9fx5lweh+uTLyo=
 -SHA256 (cherokee-1.0.14.tar.gz) =
 

Re: UPDATE: cherokee 1.0.14 - 1.2.101

2011-11-30 Thread Fernando Quintero
ok, I will check.
The problem is with the hard restart?

On Wed, Nov 30, 2011 at 9:30 AM, Antoine Jacoutot ajacou...@bsdfrog.orgwrote:

 On Wed, Nov 30, 2011 at 09:21:19AM -0500, Fernando Quintero wrote:
  Hi!,
  Some news about it?
  comments?
  oks?

 Yes I told Brad the server cannot be properly killed; so something is
 going on.


 
  On Wed, Nov 16, 2011 at 12:25 PM, Brad b...@comstyle.com wrote:
 
   On Sun, Nov 13, 2011 at 11:47:09PM -0500, Fernando Quintero wrote:
Thanks to brad for the patch and the people who test it.
I test it on @x86 and @x64
comments?
oks?
  
   Updated diff.
  
  
   Index: Makefile
   ===
   RCS file: /home/cvs/ports/www/cherokee/Makefile,v
   retrieving revision 1.31
   diff -u -p -r1.31 Makefile
   --- Makefile16 Sep 2011 12:00:06 -  1.31
   +++ Makefile16 Nov 2011 02:19:05 -
   @@ -2,14 +2,14 @@
  
SHARED_ONLY=   Yes
  
   -COMMENT-main = fast, flexible and easy to configure Web Server
   +COMMENT-main = fast, flexible and easy to configure web server
COMMENT-geoip =GeoIP module for Cherokee web server
COMMENT-ldap = LDAP module for Cherokee web server
COMMENT-mysql =MySQL module for Cherokee web server
COMMENT-streaming = Streaming module for Cherokee web server
  
   -DIR =  1.0
   -VERSION =  ${DIR}.14
   +DIR =  1.2
   +VERSION =  ${DIR}.101
DISTNAME = cherokee-${VERSION}
  
PKGNAME-main = ${DISTNAME}
   @@ -18,12 +18,6 @@ PKGNAME-mysql =  cherokee-mysql-${VERSION
PKGNAME-geoip =cherokee-geoip-${VERSION}
PKGNAME-streaming = cherokee-streaming-${VERSION}
  
   -REVISION-main =7
   -REVISION-geoip = 3
   -REVISION-ldap =4
   -REVISION-mysql = 3
   -REVISION-streaming = 6
   -
SHARED_LIBS =  cherokee-base   0.0 \
  cherokee-client 0.0 \
  cherokee-server 0.0
   @@ -47,7 +41,8 @@ MASTER_SITES =${HOMEPAGE}download/${DIR
  
MULTI_PACKAGES =-main -ldap -mysql -geoip -streaming
  
   -MODULES =  lang/python lang/php
   +MODULES =  lang/php \
   +   lang/python
  
BUILD_DEPENDS =textproc/py-docutils \
  lang/php/${MODPHP_VERSION},-fastcgi
   @@ -78,6 +73,7 @@ WANTLIB-streaming += theoradec theoraenc
WANTLIB-streaming += x264 z
RUN_DEPENDS-streaming = ${BASE_PKGPATH}
  
   +USE_GMAKE= Yes
USE_LIBTOOL =  Yes
LIBTOOL_FLAGS =--tag=disable-static
USE_GROFF =Yes
   @@ -89,37 +85,40 @@ FAKE_FLAGS =cherokeeconfdir=${PREFIX}/
CONFIGURE_STYLE =  gnu
CONFIGURE_ENV =CPPFLAGS=-I${LOCALBASE}/include \
  LDFLAGS=-L${LOCALBASE}/lib \
   -
   PHPCGI=${LOCALBASE}/bin/php-fastcgi-${MODPHP_VERSION} \
  ac_cv_func_getgrnam_r=no
CONFIGURE_ARGS =   ${CONFIGURE_SHARED} \
  --disable-static \
   +   --enable-tmpdir=/tmp \
  --sysconfdir=${SYSCONFDIR} \
  --localstatedir=/var \
   +   --with-cgiroot=/var/cherokee/cgi-bin \
  --with-wwwroot=/var/cherokee \
  --with-wwwuser=_cherokee \
  --with-wwwgroup=_cherokee \
  --disable-nls \
  --disable-pam \
   +   --with-ffmpeg \
  --with-geoip \
  --with-ldap \
  --with-mysql \
   -   --with-ffmpeg
   +
   --with-php=${LOCALBASE}/bin/php-fastcgi-${MODPHP_VERSION} \
   +   --with-python=${MODPY_BIN}
  
.ifdef DEBUG
CFLAGS +=  -O0 -g3
CONFIGURE_ARGS +=  --enable-trace
.endif
  
   -MODPY_ADJ_FILES= admin/CTK/CTK-run.pre admin/upgrade_config.py \
   +MODPY_ADJ_FILES=admin/CTK/CTK-run.pre admin/upgrade_config.py \
  cherokee/cherokee-admin-launcher \
  cherokee/cherokee-tweak doc/test_images.py \
   -   gitlog2changelog.py po/po_stats.py svnlog2changelog.py
 \
   -   admin/server.py qa/run-tests.py contrib/tracelor.py
   +   po/po_stats.py admin/server.py qa/run-tests.py \
   +   contrib/tracelor.py
  
LANGUAGES =en es de nl sv_SE zh_CN fr pt_BR pl ca it gl
  
pre-configure:
   -   ${SUBST_CMD} ${WRKSRC}/cherokee/main_admin.c
   +   @${SUBST_CMD} ${WRKSRC}/cherokee/main_admin.c
  
post-install:
  cd ${PREFIX}/share/cherokee/admin  find . -name *.py | \
   @@ -130,5 +129,6 @@ post-install:
  ${INSTALL_DATA} ${WRKSRC}/po/admin/$i.gmo \
  ${PREFIX}/share/locale/$i/LC_MESSAGES/cherokee.mo
.endfor
   +   @find ${PREFIX}/lib/cherokee -name '*.la' -print | xargs rm
  
.include bsd.port.mk
 

Re: UPDATE: cherokee 1.0.14 - 1.2.101

2011-11-30 Thread Antoine Jacoutot
On Wed, Nov 30, 2011 at 09:33:11AM -0500, Fernando Quintero wrote:
 ok, I will check.
 The problem is with the hard restart?

Dunno. I just know that I cannot kill it properly, I need to use -9...


 
 On Wed, Nov 30, 2011 at 9:30 AM, Antoine Jacoutot 
 ajacou...@bsdfrog.orgwrote:
 
  On Wed, Nov 30, 2011 at 09:21:19AM -0500, Fernando Quintero wrote:
   Hi!,
   Some news about it?
   comments?
   oks?
 
  Yes I told Brad the server cannot be properly killed; so something is
  going on.
 
 
  
   On Wed, Nov 16, 2011 at 12:25 PM, Brad b...@comstyle.com wrote:
  
On Sun, Nov 13, 2011 at 11:47:09PM -0500, Fernando Quintero wrote:
 Thanks to brad for the patch and the people who test it.
 I test it on @x86 and @x64
 comments?
 oks?
   
Updated diff.
   
   
Index: Makefile
===
RCS file: /home/cvs/ports/www/cherokee/Makefile,v
retrieving revision 1.31
diff -u -p -r1.31 Makefile
--- Makefile16 Sep 2011 12:00:06 -  1.31
+++ Makefile16 Nov 2011 02:19:05 -
@@ -2,14 +2,14 @@
   
 SHARED_ONLY=   Yes
   
-COMMENT-main = fast, flexible and easy to configure Web Server
+COMMENT-main = fast, flexible and easy to configure web server
 COMMENT-geoip =GeoIP module for Cherokee web server
 COMMENT-ldap = LDAP module for Cherokee web server
 COMMENT-mysql =MySQL module for Cherokee web server
 COMMENT-streaming = Streaming module for Cherokee web server
   
-DIR =  1.0
-VERSION =  ${DIR}.14
+DIR =  1.2
+VERSION =  ${DIR}.101
 DISTNAME = cherokee-${VERSION}
   
 PKGNAME-main = ${DISTNAME}
@@ -18,12 +18,6 @@ PKGNAME-mysql =  cherokee-mysql-${VERSION
 PKGNAME-geoip =cherokee-geoip-${VERSION}
 PKGNAME-streaming = cherokee-streaming-${VERSION}
   
-REVISION-main =7
-REVISION-geoip = 3
-REVISION-ldap =4
-REVISION-mysql = 3
-REVISION-streaming = 6
-
 SHARED_LIBS =  cherokee-base   0.0 \
   cherokee-client 0.0 \
   cherokee-server 0.0
@@ -47,7 +41,8 @@ MASTER_SITES =${HOMEPAGE}download/${DIR
   
 MULTI_PACKAGES =-main -ldap -mysql -geoip -streaming
   
-MODULES =  lang/python lang/php
+MODULES =  lang/php \
+   lang/python
   
 BUILD_DEPENDS =textproc/py-docutils \
   lang/php/${MODPHP_VERSION},-fastcgi
@@ -78,6 +73,7 @@ WANTLIB-streaming += theoradec theoraenc
 WANTLIB-streaming += x264 z
 RUN_DEPENDS-streaming = ${BASE_PKGPATH}
   
+USE_GMAKE= Yes
 USE_LIBTOOL =  Yes
 LIBTOOL_FLAGS =--tag=disable-static
 USE_GROFF =Yes
@@ -89,37 +85,40 @@ FAKE_FLAGS =cherokeeconfdir=${PREFIX}/
 CONFIGURE_STYLE =  gnu
 CONFIGURE_ENV =CPPFLAGS=-I${LOCALBASE}/include \
   LDFLAGS=-L${LOCALBASE}/lib \
-
PHPCGI=${LOCALBASE}/bin/php-fastcgi-${MODPHP_VERSION} \
   ac_cv_func_getgrnam_r=no
 CONFIGURE_ARGS =   ${CONFIGURE_SHARED} \
   --disable-static \
+   --enable-tmpdir=/tmp \
   --sysconfdir=${SYSCONFDIR} \
   --localstatedir=/var \
+   --with-cgiroot=/var/cherokee/cgi-bin \
   --with-wwwroot=/var/cherokee \
   --with-wwwuser=_cherokee \
   --with-wwwgroup=_cherokee \
   --disable-nls \
   --disable-pam \
+   --with-ffmpeg \
   --with-geoip \
   --with-ldap \
   --with-mysql \
-   --with-ffmpeg
+
--with-php=${LOCALBASE}/bin/php-fastcgi-${MODPHP_VERSION} \
+   --with-python=${MODPY_BIN}
   
 .ifdef DEBUG
 CFLAGS +=  -O0 -g3
 CONFIGURE_ARGS +=  --enable-trace
 .endif
   
-MODPY_ADJ_FILES= admin/CTK/CTK-run.pre admin/upgrade_config.py \
+MODPY_ADJ_FILES=admin/CTK/CTK-run.pre admin/upgrade_config.py \
   cherokee/cherokee-admin-launcher \
   cherokee/cherokee-tweak doc/test_images.py \
-   gitlog2changelog.py po/po_stats.py svnlog2changelog.py
  \
-   admin/server.py qa/run-tests.py contrib/tracelor.py
+   po/po_stats.py admin/server.py qa/run-tests.py \
+   contrib/tracelor.py
   
 LANGUAGES =en es de nl sv_SE zh_CN fr pt_BR pl ca it gl
   
 pre-configure:
-   ${SUBST_CMD} ${WRKSRC}/cherokee/main_admin.c
+   @${SUBST_CMD} ${WRKSRC}/cherokee/main_admin.c
   
 post-install:
   cd ${PREFIX}/share/cherokee/admin  find . -name 

Re: UPDATE: sysutils/cdrtools

2011-11-30 Thread Christian Weisgerber
Pascal Stumpf:

 Here's an updated diff.

I tried to build this on my alpha, which actually has an old SCSI
CD burner.

* cdda2wav wasn't built at all.
  (I'll look into the details later...)

* Some parts (libedc, libmdigest) are built with
  -O3 -fexpensive-optimizations.  I think we should kill this.

* I'd prefer patches over the substitutions in pre-configure, but then I
  don't think there's much of a point.  You aren't unhiding any
  interesting commands.  Now if you want to fix something there,
  have it honor $(CC) for dependency generation, too.
  Cf. archivers/star/patches/patch-RULES_cc-gcc_rul

Also, somebody should build this on a MACHINE != MACHINE_ARCH
platform (macppc, loongson, sgi), just to be sure that we aren't
using one variable in a place where schily's idiosyncratic build
system picks the other one.

-- 
Christian naddy Weisgerber  na...@mips.inka.de



van Etten's CLIPPINGs - 30 Nov - Focus Media Responds

2011-11-30 Thread CLIPPINGs Central
Circulation: 39,316  30/11/2011  Sent to:ports@openbsd.org 


 








 








 
 



 




Your AD here?
 
contact me
 
l...@talktalk.net












Boxcar Down: The Albanian Incident by Charles L. Lunsford








Publisher
CLIPPINGs
57 Nutbourne Str
London W10 4HW
England   






Subscriptions  Comments to:   
email: l...@talktalk.net


Weniger aber Besser, Rams 


Published Daily and Weekly
In Affiliation with:
DAILY EDITION 



Primary Sponsor




For QUICK REMOVAL send e-mail to l...@talktalk.net - If you received this 
e-mail from a friend and would like to subscribe to our e-mail list, click 
here. To update your e-mail address, click here.  The newsletter is paid for by 
advertisement and sent to Specials Subscribers on behalf of Leadresearch.co.uk. 
If you wish to unsubscribe to future e-mails from CLIPPINGs, please click here. 
Or send a request to: Clippings - 57 Nutbourne Str. London W10 4HW - England 

 
BUSINESSES PLAN FOR END OF EURO...The High Price of Abandoning the Euro
 




Most Popular Link - Yesterday
How Not to Make a Digital Sign Interactive




GENERAL NEWS 
Focus Media Responds Further to Muddy Waters Allegations
 
Challenging Holiday Shopping Ahead interesting facts.
 

Digiadvans and Tottenham Hotspurs in a Winter Wonderland
 
The Interview: Steve Kennedy Animals Inc. #CETW
 
EyePlay Digital Floor Playground Dubbed a “Magic Carpet” in Italian Town

Hull University finds an ally in signageliveThe solution is located in the 
Business School campus. This is a large faculty, which stretches across two 
campuses, Hull and Scarborough, and caters for approximately 3,200 students. 
The school offers undergraduate and postgraduate business degree programmes, 
including an AMBA accredited MBA.
 
Hard Rock Café and Digital Memories: The Magic of Rock  Roll Lives Forever in 
its Memorabilia 
 
Mall of America shoppers line up to enter QR code contest
 
Canada: i-design Signs Contract with Large Bank
 
Europe: Apia Solutions et L’île des Médias apportent leurs tables d’orientation 
interactives à Copenhague
 
Caught? Malls say 'No' to tracking customers via cell phones  but then again we 
have Apple employees: We know where you are   ..  Both concepts are creepy.
 
Kiosks: Print your own Welcome Home banner at Amsterdam Schiphol airport 
 
A Sculptural Installation That Forecasts The Weather (Oh, And Death)








New Stuff  
IDC Retail Insights to Deliver Top 10 Predictions 2012 
 
Report: Microsoft To Bring Office To iPad In 2012 
 
New program will accelerate ad-based digital out-of-home network operator growth
 
New Release – More Digital Signage Transitions, Background Scaling and 
Proportional Sizing
 
Elivision Offers Outdoor Digital Information Displays
 
Optrex launches new high-bright digital signage display
 
COMB gives planners better OOH “navigation” tools
 
IBM ‘checks in’ on EYE's Interactive Media Wall  plus: 
 
Als Distributor mit Platinum-Status des KVM Herstellers RARITAN stellen wir 
dessen Produktinformationen auf einer speziellen Webseite in gebündelter Form 
zur Verfügung.
 
Hitachi Introduces the CP-RX94 Ultra-Portable 3LCD Projector
 
Christie CP4220 and CP4230 Projectors Earn DCI Compliance
 
Berg unveils 'Little Printer' and Berg Cloud
 
Low-cost eye tracking system developed to control computer mice
 
‘Indoor Google Maps’ awesome
 
[ Digital Signage Products ] : best digital signage players under $500 – by: 
Steve_SMB




 


Heard on The Street 
Touchscreen Device Impressions Leap 44% Y-O-Y
Toilet technology targets boredom in the men's urinals
 
Sanyo name to cease by April 1, 2012, Panasonic tells partners..Comment:Sad to 
see the Sanyo name go
 
4D Projection Lights up London for Nokia and Deadmau5 incl. Video 5:02  new 
product launch - here's more on DEADMAU5
 
Opportunity: Waitrose plots “significant” uplift in social media spend
 
Webinar: NEC, Digital Signage Today hosting 'Creating a Memorable Drive-Thru 
Experience with Digital Signage'  NEC Display Solutions of America Inc. and 
DigitalSignageToday.com are hosting a live webinar event, Creating a Memorable 
Drive-Thru Experience with Digital Signage, on Thursday, Dec. 8, at 2 p.m 
 
Touchscreen digital signage: uses, applications and advantages 
 
PRN expands DOOH cooking show
 
Study: Mobile ad spending surges, led by tech companies
 
What Would Google DOOH?
 
Why Locate a Place-Based Media Company in Quick Service Restaurants (QSR)?
 
Industry Roundtable  plus  Good Things Come to Those Who Act
 
Best Buy drives in-store traffic via geotargeted mobile ads
 
OmniVision sees Q3 below estimates on order cutbacks
 
Gerhard Schulz to give inaugural ISE keynote
 
Steve Atkinson leaves Clear Channel   and   Kinetic appoints Andy Jonesco as 
EMEA chief
 
Inside UCView Filter Navigation
 
Electrosonic projection-maps a hotel for trade show party
 
STRATACACHE Named a Finalist in the 2012 Technology InAVation Awards for 
PrimaSee Digital Signage Technology






LunchBreak
Is this 

Re: UPDATE: sysutils/cdrtools

2011-11-30 Thread Christian Weisgerber
Christian Weisgerber na...@mips.inka.de wrote:

 * cdda2wav wasn't built at all.
   (I'll look into the details later...)

Patching cdda2wav/local.cnf.in triggers an attempt to run the
included mutant autoconf in order to regenerate the cdda2wav configure
script.  This fails if GNU m4 isn't installed, causing the cdda2wav
directory to be skipped altogether.

I think the easiest fix is to drop patch-cdda2wav_local_cnf_in and
to add OSS_SOUND_DEV='/dev/audio' to MAKE_FLAGS.

-- 
Christian naddy Weisgerber  na...@mips.inka.de



NEW: x11/sselp

2011-11-30 Thread Jan Klemkow

Hello,

This is a new port.
It is a tool from the suckless.org Projekt.
Tell me everything that's wrong with it, please.

bye,
Jan Klemkow


sselp.tgz
Description: GNU Zip compressed data


Re: NEW: x11/sselp

2011-11-30 Thread Gonzalo L. R.

you don't need REVISION in a new port or release of the port.

On Wed, 30 Nov 2011 18:21:49 +0100, Jan Klemkow wrote:

Hello,

This is a new port.
It is a tool from the suckless.org Projekt.
Tell me everything that's wrong with it, please.

bye,
Jan Klemkow


--
Sending from my computer



Re: NEW: openmodeller

2011-11-30 Thread Daniel Bolgheroni
On Wed, Nov 30, 2011 at 09:16:24AM +0100, David Coppa wrote:
 On Tue, Nov 29, 2011 at 7:14 PM, Daniel Bolgheroni dan...@bolgh.eng.br 
 wrote:
 
  OK, compiling fine on a fresh installation on /i386 and /amd64. Didn't
  test on /macppc yet, but will do soon when I upgrade to -current.
 
 What about the attached one?

Seems fine to me.

Thank you.

-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.



Re: NEW: x11/sselp

2011-11-30 Thread Jan Klemkow

Thank you.
I've fixed it.

Quoting Gonzalo L. R. gonz...@x61.com.ar:


you don't need REVISION in a new port or release of the port.

On Wed, 30 Nov 2011 18:21:49 +0100, Jan Klemkow wrote:

Hello,

This is a new port.
It is a tool from the suckless.org Projekt.
Tell me everything that's wrong with it, please.

bye,
Jan Klemkow


--
Sending from my computer







sselp.tgz
Description: GNU Zip compressed data


UPDATE: devel/mowgli

2011-11-30 Thread Alexandr Shadchin
Hi,

This update package mowgli to the latest release 1.0.0.
Tested on amd64.

Comments ? OK ?

-- 
Alexandr Shadchin

Index: Makefile
===
RCS file: /cvs/ports/devel/mowgli/Makefile,v
retrieving revision 1.3
diff -u -p -r1.3 Makefile
--- Makefile6 Dec 2010 08:24:36 -   1.3
+++ Makefile28 Nov 2011 23:27:02 -
@@ -2,10 +2,10 @@
 
 COMMENT =  performance and usability oriented extensions to C
 
-DISTNAME = libmowgli-0.7.1
+DISTNAME = libmowgli-1.0.0
 PKGNAME =  ${DISTNAME:S/lib//}
 
-SHARED_LIBS =  mowgli  1.0
+SHARED_LIBS =  mowgli  1.1
 
 CATEGORIES =   devel
 
@@ -18,7 +18,6 @@ PERMIT_DISTFILES_CDROM = Yes
 PERMIT_DISTFILES_FTP = Yes
 
 MASTER_SITES = http://distfiles.atheme.org/
-EXTRACT_SUFX = .tgz
 
 MAKE_ENV = LIBmowgli_VERSION=${LIBmowgli_VERSION}
 
Index: distinfo
===
RCS file: /cvs/ports/devel/mowgli/distinfo,v
retrieving revision 1.3
diff -u -p -r1.3 distinfo
--- distinfo6 Dec 2010 08:24:36 -   1.3
+++ distinfo28 Nov 2011 23:27:02 -
@@ -1,5 +1,5 @@
-MD5 (libmowgli-0.7.1.tgz) = Pq9EBcCV2OFFyH/L7toAvA==
-RMD160 (libmowgli-0.7.1.tgz) = R5UEXmXwrFH/bHfgcBg/Ji/n6F4=
-SHA1 (libmowgli-0.7.1.tgz) = Yu8i0/8QHjacZCShMKevg6hA3u4=
-SHA256 (libmowgli-0.7.1.tgz) = st89jWkCZb3ptaKjkrXvndgmnc4pLpkVdTiOASbXDTk=
-SIZE (libmowgli-0.7.1.tgz) = 124251
+MD5 (libmowgli-1.0.0.tar.gz) = EWfh/wkKK3wg3/xoqGykgw==
+RMD160 (libmowgli-1.0.0.tar.gz) = VbPuoCXie+1UxvWbum/ZiWBtofk=
+SHA1 (libmowgli-1.0.0.tar.gz) = QDRzWC4whsGsqv7Vm5kV8ppdDOA=
+SHA256 (libmowgli-1.0.0.tar.gz) = we2aTvr8nslwAULrQazMi/adIF4j5aVmTlq0xWwaWhE=
+SIZE (libmowgli-1.0.0.tar.gz) = 126941
Index: patches/patch-configure
===
RCS file: /cvs/ports/devel/mowgli/patches/patch-configure,v
retrieving revision 1.2
diff -u -p -r1.2 patch-configure
--- patches/patch-configure 6 Dec 2010 08:24:36 -   1.2
+++ patches/patch-configure 28 Nov 2011 23:27:02 -
@@ -1,7 +1,7 @@
 $OpenBSD: patch-configure,v 1.2 2010/12/06 08:24:36 shadchin Exp $
 configure.orig Wed Jul 14 09:43:16 2010
-+++ configure  Sat Dec  4 16:36:13 2010
-@@ -3248,9 +3248,9 @@ $as_echo Solaris 6; }
+--- configure.orig Tue Sep 27 03:48:25 2011
 configure  Sat Oct  1 18:24:30 2011
+@@ -3289,9 +3289,9 @@ $as_echo Solaris 6; }
  $as_echo OpenBSD 6; }
LIB_CPPFLAGS='-DPIC'
LIB_CFLAGS='-fPIC'
Index: patches/patch-src_libmowgli_Makefile
===
RCS file: /cvs/ports/devel/mowgli/patches/patch-src_libmowgli_Makefile,v
retrieving revision 1.2
diff -u -p -r1.2 patch-src_libmowgli_Makefile
--- patches/patch-src_libmowgli_Makefile14 Jan 2009 21:06:39 -  
1.2
+++ patches/patch-src_libmowgli_Makefile28 Nov 2011 23:27:02 -
@@ -1,7 +1,9 @@
 $OpenBSD: patch-src_libmowgli_Makefile,v 1.2 2009/01/14 21:06:39 fgsch Exp $
 src/libmowgli/Makefile.origTue Jan  6 21:03:01 2009
-+++ src/libmowgli/Makefile Tue Jan  6 21:03:47 2009
-@@ -1,4 +1,4 @@
+--- src/libmowgli/Makefile.origTue Sep 27 03:39:19 2011
 src/libmowgli/Makefile Sat Oct  1 18:24:30 2011
+@@ -1,6 +1,6 @@
+ include ../../extra.mk
+ 
 -LIB = ${LIB_PREFIX}mowgli${LIB_SUFFIX}
 +LIB = ${LIB_PREFIX}mowgli${LIB_SUFFIX}.${LIBmowgli_VERSION}
  LIB_MAJOR = 2
Index: pkg/PLIST
===
RCS file: /cvs/ports/devel/mowgli/pkg/PLIST,v
retrieving revision 1.2
diff -u -p -r1.2 PLIST
--- pkg/PLIST   14 Jan 2009 21:06:39 -  1.2
+++ pkg/PLIST   28 Nov 2011 23:27:02 -
@@ -17,6 +17,7 @@ include/libmowgli/mowgli_global_storage.
 include/libmowgli/mowgli_hash.h
 include/libmowgli/mowgli_heap.h
 include/libmowgli/mowgli_hook.h
+include/libmowgli/mowgli_index.h
 include/libmowgli/mowgli_init.h
 include/libmowgli/mowgli_ioevent.h
 include/libmowgli/mowgli_iterator.h



NEW: x11/swarp

2011-11-30 Thread Jan Klemkow

Hello,

This is a new Port for a tool of the suckless.org projekt.
Tell me everything that's wrong with it, please.

bye,
Jan Klemkow


swarp.tgz
Description: GNU Zip compressed data


UPDATE: audio/streamripper

2011-11-30 Thread Alexandr Shadchin
Hi,

This update package streamripper to the latest release 1.64.6.
Tested on amd64.

Comments ? OK ?

-- 
Alexandr Shadchin

Index: Makefile
===
RCS file: /cvs/ports/audio/streamripper/Makefile,v
retrieving revision 1.21
diff -u -p -r1.21 Makefile
--- Makefile16 Sep 2011 08:26:11 -  1.21
+++ Makefile28 Nov 2011 23:27:32 -
@@ -2,8 +2,7 @@
 
 COMMENT=   rip shoutcast streams to local mp3s
 
-DISTNAME=  streamripper-1.64.0
-REVISION=  2
+DISTNAME=  streamripper-1.64.6
 CATEGORIES=audio
 
 HOMEPAGE=  http://streamripper.sourceforge.net/
@@ -12,23 +11,21 @@ MASTER_SITES=   ${MASTER_SITE_SOURCEFORGE:
 
 MODULES=   devel/gettext
 
-# GPL
+# GPLv2
 PERMIT_PACKAGE_CDROM=  Yes
 PERMIT_PACKAGE_FTP=Yes
 PERMIT_DISTFILES_CDROM=Yes
 PERMIT_DISTFILES_FTP=  Yes
 
-WANTLIB += c cdk iberty faad glib-2.0 m mad=2 ogg=5.2 ncurses
-WANTLIB += pthread vorbis=3.0
+WANTLIB += c faad glib-2.0 iberty m mad=2 ogg=5.2 pthread vorbis=3.0
 
 LIB_DEPENDS=   audio/faad \
audio/libmad \
audio/libogg \
audio/libvorbis \
-   devel/glib2 \
-   devel/cdk
+   devel/glib2
 
-AUTOCONF_VERSION=2.61
+AUTOCONF_VERSION=2.63
 CONFIGURE_STYLE= autoconf
 CONFIGURE_ENV= CPPLAGS=-I${LOCALBASE}/include \
LDFLAGS=-L${LOCALBASE}/lib
Index: distinfo
===
RCS file: /cvs/ports/audio/streamripper/distinfo,v
retrieving revision 1.5
diff -u -p -r1.5 distinfo
--- distinfo11 Dec 2008 08:40:25 -  1.5
+++ distinfo28 Nov 2011 23:27:32 -
@@ -1,5 +1,5 @@
-MD5 (streamripper-1.64.0.tar.gz) = +HVIE93CvJbEw0QOJayotg==
-RMD160 (streamripper-1.64.0.tar.gz) = ypliiUtyOOuhRb3R1pJ1cBTTm30=
-SHA1 (streamripper-1.64.0.tar.gz) = sJ92dbuDeWqkEsuUSBADRBw4KCE=
-SHA256 (streamripper-1.64.0.tar.gz) = 
pT9Q0m3jYQ5ZoH6vgcydo0iq97NbxKMC8uX23vsSl64=
-SIZE (streamripper-1.64.0.tar.gz) = 839535
+MD5 (streamripper-1.64.6.tar.gz) = o3oai4+SKFIhlqEiocLdMg==
+RMD160 (streamripper-1.64.6.tar.gz) = PAEAOPe+aVmtpje5M/7/JhaRXbo=
+SHA1 (streamripper-1.64.6.tar.gz) = vIqNOtBF4HcsppHSBjw578wNykU=
+SHA256 (streamripper-1.64.6.tar.gz) = 
wddfLpx7OP1Glb5m7/RTM5UkgTLzzGHzdRlkA8TY3kI=
+SIZE (streamripper-1.64.6.tar.gz) = 900205
Index: patches/patch-lib_charset_c
===
RCS file: patches/patch-lib_charset_c
diff -N patches/patch-lib_charset_c
--- /dev/null   1 Jan 1970 00:00:00 -
+++ patches/patch-lib_charset_c 28 Nov 2011 23:27:32 -
@@ -0,0 +1,11 @@
+$OpenBSD$
+--- lib/charset.c.orig Mon Nov 21 00:21:11 2011
 lib/charset.c  Mon Nov 21 00:21:19 2011
+@@ -26,6 +26,7 @@
+  * at least 16 bits, but this code has only been tested on systems with
+  * 8-bit char, 16-bit short and 32-bit int.
+  */
++#include srconfig.h
+ 
+ #ifndef HAVE_ICONV /* should be ifdef USE_CHARSET_CONVERT */
+ 
Index: patches/patch-lib_iconvert_c
===
RCS file: patches/patch-lib_iconvert_c
diff -N patches/patch-lib_iconvert_c
--- /dev/null   1 Jan 1970 00:00:00 -
+++ patches/patch-lib_iconvert_c28 Nov 2011 23:27:32 -
@@ -0,0 +1,11 @@
+$OpenBSD$
+--- lib/iconvert.c.origMon Nov 21 00:23:32 2011
 lib/iconvert.c Mon Nov 21 00:23:39 2011
+@@ -15,6 +15,7 @@
+  * along with this program; if not, write to the Free Software
+  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+  */
++#include srconfig.h
+ 
+ #ifdef HAVE_ICONV
+ 
Index: patches/patch-lib_utf8_c
===
RCS file: patches/patch-lib_utf8_c
diff -N patches/patch-lib_utf8_c
--- /dev/null   1 Jan 1970 00:00:00 -
+++ patches/patch-lib_utf8_c28 Nov 2011 23:27:32 -
@@ -0,0 +1,11 @@
+$OpenBSD$
+--- lib/utf8.c.origMon Nov 21 00:22:13 2011
 lib/utf8.c Mon Nov 21 00:22:25 2011
+@@ -20,6 +20,7 @@
+ /*
+  * Convert a string between UTF-8 and the locale's charset.
+  */
++#include srconfig.h
+ 
+ #include stdlib.h
+ #include string.h



Re: NEW: x11/sselp

2011-11-30 Thread Jan Klemkow

Thank you.
I've fixed it.

Quoting Gonzalo L. R. gonz...@x61.com.ar:


and you need

fmt -72 pkg/DESCR



On Wed, 30 Nov 2011 18:21:49 +0100, Jan Klemkow wrote:

Hello,

This is a new port.
It is a tool from the suckless.org Projekt.
Tell me everything that's wrong with it, please.

bye,
Jan Klemkow


--
Sending from my computer






sselp.tgz
Description: GNU Zip compressed data


Re: UPDATE: sysutils/cdrtools

2011-11-30 Thread Sebastian Reitenbach
 Hi,

I tried to address all of your concerns, see below, and attached patch.

On Wednesday, November 30, 2011 16:14 CET, Christian Weisgerber 
na...@mips.inka.de wrote: 
 
 Pascal Stumpf:
 
  Here's an updated diff.
 
 I tried to build this on my alpha, which actually has an old SCSI
 CD burner.
 
 * cdda2wav wasn't built at all.
   (I'll look into the details later...)
I used the suggestion with the MAKE_FLAGS that you gave in the other mail.

 
 * Some parts (libedc, libmdigest) are built with
   -O3 -fexpensive-optimizations.  I think we should kill this.
I used MAKE_FLAGS GCCOPTS= to override them.


 
 * I'd prefer patches over the substitutions in pre-configure, but then I
   don't think there's much of a point.  You aren't unhiding any

I did not made a patch, since in the end, it would have been a huge patch.

   interesting commands.  Now if you want to fix something there,
   have it honor $(CC) for dependency generation, too.
   Cf. archivers/star/patches/patch-RULES_cc-gcc_rul
I added MKDEP and MKC++DEP to the MAKE_FLAGS.

 
 Also, somebody should build this on a MACHINE != MACHINE_ARCH
 platform (macppc, loongson, sgi), just to be sure that we aren't
 using one variable in a place where schily's idiosyncratic build
 system picks the other one.

just started a build on a vax. we'll see what happens there.

Sebastian


 
 -- 
 Christian naddy Weisgerber  na...@mips.inka.de
 
 
 
 
 


cdrtools-3.00.diff
Description: Binary data


Re: UPDATE: sysutils/cdrtools

2011-11-30 Thread Christian Weisgerber
Sebastian Reitenbach sebas...@l00-bugdead-prods.de wrote:

don't think there's much of a point.  You aren't unhiding any
 
 I did not made a patch, since in the end, it would have been a huge patch.

Really?  It affects a total of ten lines spread over three files.
Anyway, I suggest to just drop the whole thing.  Now that you are
overriding MKDEP, the only hidden commands left are one

  echo   == MAKING SYMLINKS in ./RULES/  cd ./RULES  sh ./MKLINKS

and a few

  echo   == RANDOMIZING ARCHIVE \foo.a\; ranlib foo.a

And as with the dependency generation, there's nothing interesting
there.  *shrug*

  Also, somebody should build this on a MACHINE != MACHINE_ARCH
  platform (macppc, loongson, sgi),
 
 just started a build on a vax. we'll see what happens there.

Nothing that would trip over MACHINE != MACHINE_ARCH.

Anyway, I managed to burn cd50.iso with this

cd1 at scsibus0 targ 5 lun 0: YAMAHA, CRW2100S, 1.0H SCSI2 5/cdrom removable

on my alpha.  Can't boot from it, though, but I guess the burner
is gummed up with dust.

-- 
Christian naddy Weisgerber  na...@mips.inka.de



Re: UPDATE: sysutils/cdrtools

2011-11-30 Thread Sebastian Reitenbach
 
On Wednesday, November 30, 2011 21:59 CET, na...@mips.inka.de  wrote: 
 
 Sebastian Reitenbach sebas...@l00-bugdead-prods.de wrote:
 
 don't think there's much of a point.  You aren't unhiding any
  
  I did not made a patch, since in the end, it would have been a huge patch.
 
 Really?  It affects a total of ten lines spread over three files.
 Anyway, I suggest to just drop the whole thing.  Now that you are
 overriding MKDEP, the only hidden commands left are one
 
   echo   == MAKING SYMLINKS in ./RULES/  cd ./RULES  sh ./MKLINKS
 
 and a few
 
   echo   == RANDOMIZING ARCHIVE \foo.a\; ranlib foo.a
 
 And as with the dependency generation, there's nothing interesting
 there.  *shrug*
 
I'll look at it again tomorrow.

   Also, somebody should build this on a MACHINE != MACHINE_ARCH
   platform (macppc, loongson, sgi),
  
  just started a build on a vax. we'll see what happens there.

In the meantime, it did built fine on the vax, but there is no cd drive 
connected to it, so don't have much to test.

 
 Nothing that would trip over MACHINE != MACHINE_ARCH.
 
 Anyway, I managed to burn cd50.iso with this
 
 cd1 at scsibus0 targ 5 lun 0: YAMAHA, CRW2100S, 1.0H SCSI2 5/cdrom removable
 
 on my alpha.  Can't boot from it, though, but I guess the burner
 is gummed up with dust.
 
 -- 
 Christian naddy Weisgerber  na...@mips.inka.de
 
 
 
 
 



document AUTOMAKE_VERSION in bsd.port.mk.5

2011-11-30 Thread Amit Kulkarni
1) document AUTOMAKE_VERSION, bought up by Dorian Buttner
2) make COPTS wording clearer

feel free to change wording correctly. run through mandoc -Tlint...

Index: bsd.port.mk.5
===
RCS file: /cvs/src/share/man/man5/bsd.port.mk.5,v
retrieving revision 1.309
diff -u -r1.309 bsd.port.mk.5
--- bsd.port.mk.5   25 Nov 2011 14:04:23 -  1.309
+++ bsd.port.mk.5   30 Nov 2011 21:42:37 -
@@ -883,6 +883,16 @@
 If autoconf must be run manually,
 .Ev MODGNU_AUTOCONF_DEPENDS
 can be used to specify what packages to depend upon.
+.It Ev AUTOMAKE_VERSION
+Several versions of automake may coexist peacefully.
+Setting
+.Ev AUTOMAKE_VERSION
+along with
+.Ev CONFIGURE_STYLE
+set to automake is the correct way to specify which one to use.
+If automake must be run manually,
+.Ev MODGNU_AUTOMAKE_DEPENDS
+can be used to specify what packages to depend upon.
 .It Ev BASE_PKGPATH
 Full
 .Xr pkgpath 7
@@ -1186,7 +1196,7 @@
 User settings.
 Supplementary options appended to ${CFLAGS} for building.
 Since most ports ignore the COPTS convention, they are actually told to use
-${CFLAGS} ${COPTS} as CFLAGS.
+COPTS as CFLAGS.
 .It Ev CXXDIAGFLAGS
 Flags appended to
 .Ev CXXFLAGS



Re: UPDATE: FFmpeg 20111126

2011-11-30 Thread Brett
On Tue, 29 Nov 2011 23:18:16 -0500
Brad b...@comstyle.com wrote:

 On 26/11/11 6:03 PM, Brad wrote:
  Here is an update to FFmpeg 2026 snapshot and updates for some
  of its dependencies.
 
  Tested on amd64.
 
  http://comstyle.com/ports/ffmpeg/
 
 If you use VLC, MPlayer, Xine-lib (Kaffeine / Xine-ui) or anything using
 GStreamer please test this out.
 

Hi,
Tested on amd64 nov 27 -current with a bunch of files using mplayer and
a few using gnome-mplayer and gecko-mediaplayer, all work very well.



UPDATE: security/qca2

2011-11-30 Thread Alexandr Shadchin
Hi,

This update package qca2 to the latest release 2.0.3.
Tested on amd64.

Comments ? OK ?

-- 
Alexandr Shadchin

Index: Makefile
===
RCS file: /cvs/ports/security/qca2/Makefile,v
retrieving revision 1.5
diff -u -p -r1.5 Makefile
--- Makefile18 Oct 2010 21:41:47 -  1.5
+++ Makefile30 Nov 2011 23:41:33 -
@@ -3,14 +3,14 @@
 COMMENT =  Qt Cryptographic Architecture
 SHARED_ONLY =  Yes
 
-DISTNAME = qca-2.0.2
-PKGNAME =  qca2-2.0.2
+DISTNAME = qca-2.0.3
+PKGNAME =  qca2-2.0.3
 CATEGORIES =   security
 SHARED_LIBS += qca 3.0
 
 HOMEPAGE = http://delta.affinix.com/qca/
 
-# LGPL
+# LGPLv2.1
 PERMIT_PACKAGE_CDROM = Yes
 PERMIT_PACKAGE_FTP =   Yes
 PERMIT_DISTFILES_CDROM =Yes
@@ -28,7 +28,6 @@ MAKE_FLAGS =  LIBqca_VERSION=${LIBqca_VER
 FAKE_FLAGS =   INSTALL_ROOT=${WRKINST}
 USE_GROFF =Yes
 
-WANTLIB += c m
-WANTLIB += pthread stdc++
-   
+WANTLIB += c m pthread stdc++
+
 .include bsd.port.mk
Index: distinfo
===
RCS file: /cvs/ports/security/qca2/distinfo,v
retrieving revision 1.2
diff -u -p -r1.2 distinfo
--- distinfo22 Jun 2010 00:35:42 -  1.2
+++ distinfo30 Nov 2011 23:41:33 -
@@ -1,5 +1,5 @@
-MD5 (qca-2.0.2.tar.bz2) = J+vfvZhp2Q2uB4pt7NAp9A==
-RMD160 (qca-2.0.2.tar.bz2) = GLD0l3CflwAidkSXeUZzXS7DxiM=
-SHA1 (qca-2.0.2.tar.bz2) = WkFMMpbNN9HsNBgr4NCJxQc/Vag=
-SHA256 (qca-2.0.2.tar.bz2) = SbVHRFAQSiKYdHwkPeFFGremru1L999D/6S3EoooN7g=
-SIZE (qca-2.0.2.tar.bz2) = 1937201
+MD5 (qca-2.0.3.tar.bz2) = /BW9TaIrgJbFH8/lLS+jCQ==
+RMD160 (qca-2.0.3.tar.bz2) = Mzz9zpH+367AnCBVKN5S17VpxSE=
+SHA1 (qca-2.0.3.tar.bz2) = nIaLBbgdzhcsQbgT3k3mhVQVTGA=
+SHA256 (qca-2.0.3.tar.bz2) = jaIMifOQlU/c/NPE3u83khPdta6da14MkX0j9eR0iV8=
+SIZE (qca-2.0.3.tar.bz2) = 4530731



Re: UPDATE: cherokee 1.0.14 - 1.2.101

2011-11-30 Thread Brad

On 30/11/11 9:30 AM, Antoine Jacoutot wrote:

On Wed, Nov 30, 2011 at 09:21:19AM -0500, Fernando Quintero wrote:

Hi!,
Some news about it?
comments?
oks?


Yes I told Brad the server cannot be properly killed; so something is going on.


Ya. I haven't had a chance to look at this yet as I went to rebuild the port
and had to build PHP 5.3 and ran into a dependency issue and then got 
sidetracked

with other ports stuff.

--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.



Re: UPDATE: security/qca2

2011-11-30 Thread Antoine Jacoutot
On Thu, Dec 01, 2011 at 05:43:36AM +0600, Alexandr Shadchin wrote:
 Hi,
 
 This update package qca2 to the latest release 2.0.3.
 Tested on amd64.
 
 Comments ? OK ?
 

Considering this port is not hooked to the build, I think it's pretty safe...
ok aja@


 -- 
 Alexandr Shadchin
 
 Index: Makefile
 ===
 RCS file: /cvs/ports/security/qca2/Makefile,v
 retrieving revision 1.5
 diff -u -p -r1.5 Makefile
 --- Makefile  18 Oct 2010 21:41:47 -  1.5
 +++ Makefile  30 Nov 2011 23:41:33 -
 @@ -3,14 +3,14 @@
  COMMENT =Qt Cryptographic Architecture
  SHARED_ONLY =Yes
  
 -DISTNAME =   qca-2.0.2
 -PKGNAME =qca2-2.0.2
 +DISTNAME =   qca-2.0.3
 +PKGNAME =qca2-2.0.3
  CATEGORIES = security
  SHARED_LIBS +=   qca 3.0
  
  HOMEPAGE =   http://delta.affinix.com/qca/
  
 -# LGPL
 +# LGPLv2.1
  PERMIT_PACKAGE_CDROM =   Yes
  PERMIT_PACKAGE_FTP = Yes
  PERMIT_DISTFILES_CDROM =Yes
 @@ -28,7 +28,6 @@ MAKE_FLAGS =LIBqca_VERSION=${LIBqca_VER
  FAKE_FLAGS = INSTALL_ROOT=${WRKINST}
  USE_GROFF =  Yes
  
 -WANTLIB += c m
 -WANTLIB += pthread stdc++
 - 
 +WANTLIB += c m pthread stdc++
 +
  .include bsd.port.mk
 Index: distinfo
 ===
 RCS file: /cvs/ports/security/qca2/distinfo,v
 retrieving revision 1.2
 diff -u -p -r1.2 distinfo
 --- distinfo  22 Jun 2010 00:35:42 -  1.2
 +++ distinfo  30 Nov 2011 23:41:33 -
 @@ -1,5 +1,5 @@
 -MD5 (qca-2.0.2.tar.bz2) = J+vfvZhp2Q2uB4pt7NAp9A==
 -RMD160 (qca-2.0.2.tar.bz2) = GLD0l3CflwAidkSXeUZzXS7DxiM=
 -SHA1 (qca-2.0.2.tar.bz2) = WkFMMpbNN9HsNBgr4NCJxQc/Vag=
 -SHA256 (qca-2.0.2.tar.bz2) = SbVHRFAQSiKYdHwkPeFFGremru1L999D/6S3EoooN7g=
 -SIZE (qca-2.0.2.tar.bz2) = 1937201
 +MD5 (qca-2.0.3.tar.bz2) = /BW9TaIrgJbFH8/lLS+jCQ==
 +RMD160 (qca-2.0.3.tar.bz2) = Mzz9zpH+367AnCBVKN5S17VpxSE=
 +SHA1 (qca-2.0.3.tar.bz2) = nIaLBbgdzhcsQbgT3k3mhVQVTGA=
 +SHA256 (qca-2.0.3.tar.bz2) = jaIMifOQlU/c/NPE3u83khPdta6da14MkX0j9eR0iV8=
 +SIZE (qca-2.0.3.tar.bz2) = 4530731
 

-- 
Antoine