Re: automake: use ${SHELL} to run instal-sh

2011-05-18 Thread Landry Breuil
On Mon, May 16, 2011 at 08:24:49AM +0200, Matthieu Herrb wrote:
 On Sun, May 15, 2011 at 06:55:34PM -0400, Brad wrote:
  On 15/05/11 5:55 PM, Matthieu Herrb wrote:
  Similar patches should be added to automake 1.10 and 1.11
  
  ok?
  
  No, do as you said above first.
 
 What do you mean? submit the patches for automake 1.10 and 1.11 
 at the same time? It's the same patch duplicated 3 times.
 
 Here is a full diff that do the 3 versions.

Fwiw, this went in a bulk build without fallout, so it's ok for me.

Landry



Re: NEW: graphics/opencv

2011-05-18 Thread Rafael Sadowski
On Sun May 08, 2011 at 07:03:07PM +0200, Jasper Lievisse Adriaanse wrote:
 On Fri, May 06, 2011 at 08:55:20PM +0200, Andreas Bihlmaier wrote:
 I sent this feedback last week but got no response from Rafael:
 

Sorry Jasper, I'm currently in trouble with work, bachelor thesis
(topic: OpenBSD Network Interface Daemon) and misc bachelor stuff :-/


-- 
http://www.sizeofvoid.org - raf...@sizeofvoid.org
XMPP: z...@jabber.ccc.de
Key fingerprint: BDDD 91E9 28CB 3A52 3E99  61B0 C359 2691 BAC6 A3B1



Re: NEW: graphics/opencv

2011-05-18 Thread Rafael Sadowski
On Sat May 14, 2011 at 01:30:16PM +0200, Andreas Bihlmaier wrote:
 Hello Jasper,
 
 find the updated port attached.
 (Again only tested @i386 since my sparc is currently OoO.)
 

Great work Andreas, I'll test and check it @amd64 with FaceDetection
using by JavaCV ;)

best regards

Rafael Sadowski

-- 
http://www.sizeofvoid.org - raf...@sizeofvoid.org
XMPP: z...@jabber.ccc.de
Key fingerprint: BDDD 91E9 28CB 3A52 3E99  61B0 C359 2691 BAC6 A3B1



GNOME3

2011-05-18 Thread Antoine Jacoutot
Hi.

As you may have noticed, we imported a new x11/gnome3 directory in ports
a few days ago. This is a working/staging area for the ongoing GNOME3
work. A README.gnome3 is provided for people who want to start testing
GNOME3. We have been working a lot on the infrastructure and low level
dependencies and now we can start moving on.

Note that if you want to play with it, you'll have to build all your
packages from ports, do not use binary packages or you will most
probably run into weird failures.
We expect to have most of the pieces ready to play with within a week or
two.

However there are currently 2 big showstoppers (which are being worked
on):
* gnome-shell: this depends on a new clutter-gtk which currently
segfaults in Mesa
* py-gobject: it cannot import GLib from gobject-introspection which
prevents several updates to be enabled (gedit-plugins, gnome-tweak-tools
...)

If all goes well, our current plan is to merge x11/gnome3 into the
regular hierarchy _after_ 5.0 is branched so that GNOME3 should be
available starting from OpenBSD 5.1. That would probably happen around
next September when at this time, gnome-3.2 should be available.

If do you experience issues, please make sure you have the latest ports 
from CVS before reporting any problems. Development is currently very 
active and hectic so your issue may have been fixed already.
If you have any question or want to give feedback, please do not spam
ports@ but directly contact ajacoutot@ and jasper@.
Thanks.

-- 
The Hobbits



Re: NEW: xbattbar-1.4.2

2011-05-18 Thread Alexander Hall
On 05/17/11 19:33, Brynet wrote:
 Here is my port of xbattbar, pretty old, but visually nicer than xbatt.

The man page looks like crap here...

/Alexander



Re: NEW: xbattbar-1.4.2

2011-05-18 Thread Alexander Hall
On 05/18/11 10:52, Alexander Hall wrote:
 On 05/17/11 19:33, Brynet wrote:
 Here is my port of xbattbar, pretty old, but visually nicer than xbatt.
 
 The man page looks like crap here...
 
 /Alexander

FYI, mandoc xbattbar.man seems fine though.



squid.rc diff - add daemon_flags

2011-05-18 Thread MERIGHI Marcus
hello, 

the attached and inlined diff adds daemon_flags to the local 
rc_stop() and rc_reload(); this is important in case you specify a
different config file via -f. 

Index: pkg/squid.rc
===
RCS file: /cvs/ports/www/squid/pkg/squid.rc,v
retrieving revision 1.4
diff -u -r1.4 squid.rc
--- pkg/squid.rc27 Dec 2010 14:50:24 -  1.4
+++ pkg/squid.rc18 May 2011 10:04:45 -
@@ -7,11 +7,11 @@
 . /etc/rc.d/rc.subr
 
 rc_stop() {
-   ${daemon} -k shutdown
+   ${daemon} ${daemon_flags} -k shutdown
 }
 
 rc_reload() {
-   ${daemon} -k reconfigure
+   ${daemon} ${daemon_flags} -k reconfigure
 }
 
 rc_cmd $1

Bye, 

Marcus
Index: pkg/squid.rc
===
RCS file: /cvs/ports/www/squid/pkg/squid.rc,v
retrieving revision 1.4
diff -u -r1.4 squid.rc
--- pkg/squid.rc27 Dec 2010 14:50:24 -  1.4
+++ pkg/squid.rc18 May 2011 10:04:45 -
@@ -7,11 +7,11 @@
 . /etc/rc.d/rc.subr
 
 rc_stop() {
-   ${daemon} -k shutdown
+   ${daemon} ${daemon_flags} -k shutdown
 }
 
 rc_reload() {
-   ${daemon} -k reconfigure
+   ${daemon} ${daemon_flags} -k reconfigure
 }
 
 rc_cmd $1


Re: squid.rc diff - add daemon_flags

2011-05-18 Thread David Coppa
On Wed, May 18, 2011 at 12:10 PM, MERIGHI Marcus mcmer-open...@tor.at wrote:
 hello,

 the attached and inlined diff adds daemon_flags to the local
 rc_stop() and rc_reload(); this is important in case you specify a
 different config file via -f.

 Index: pkg/squid.rc
 ===
 RCS file: /cvs/ports/www/squid/pkg/squid.rc,v
 retrieving revision 1.4
 diff -u -r1.4 squid.rc
 --- pkg/squid.rc        27 Dec 2010 14:50:24 -      1.4
 +++ pkg/squid.rc        18 May 2011 10:04:45 -
 @@ -7,11 +7,11 @@
  . /etc/rc.d/rc.subr

  rc_stop() {
 -       ${daemon} -k shutdown
 +       ${daemon} ${daemon_flags} -k shutdown
  }

  rc_reload() {
 -       ${daemon} -k reconfigure
 +       ${daemon} ${daemon_flags} -k reconfigure
  }

  rc_cmd $1

looks ok to me.

Antoine?



Re: squid.rc diff - add daemon_flags

2011-05-18 Thread Antoine Jacoutot
On Wed, 18 May 2011, David Coppa wrote:

 On Wed, May 18, 2011 at 12:10 PM, MERIGHI Marcus mcmer-open...@tor.at wrote:
  hello,
 
  the attached and inlined diff adds daemon_flags to the local
  rc_stop() and rc_reload(); this is important in case you specify a
  different config file via -f.
 
  Index: pkg/squid.rc
  ===
  RCS file: /cvs/ports/www/squid/pkg/squid.rc,v
  retrieving revision 1.4
  diff -u -r1.4 squid.rc
  --- pkg/squid.rc        27 Dec 2010 14:50:24 -      1.4
  +++ pkg/squid.rc        18 May 2011 10:04:45 -
  @@ -7,11 +7,11 @@
   . /etc/rc.d/rc.subr
 
   rc_stop() {
  -       ${daemon} -k shutdown
  +       ${daemon} ${daemon_flags} -k shutdown
   }
 
   rc_reload() {
  -       ${daemon} -k reconfigure
  +       ${daemon} ${daemon_flags} -k reconfigure
   }
 
   rc_cmd $1
 
 looks ok to me.
 
 Antoine?

It misses a REVISION bump.
I can't test it, but if it works in both cases (daemon_flags set and 
unset) then it's ok with me.

-- 
Antoine



Re: NEW: py-poppler

2011-05-18 Thread Jasper Lievisse Adriaanse
On Tue, May 17, 2011 at 10:31:57AM +0200, Landry Breuil wrote:
 On Tue, May 10, 2011 at 11:05:54PM -0400, Ido Admon wrote:
  Python bindings for print/poppler (PDF rendering lib). Needed for
  pdfshuffler (coming soon).
 
 Fwiw, this needs BUILD_DEPENDS=${RUN_DEPENDS} so that pyugtk is
 installed when building, and there's a strange USE_GMAE= Yes. gmake is
 not needed so that can go away.
 
 Anyone willing to ok the import ?
 
 Landry

This was missing the gettext module, MASTER_SITES could be simpler and it was
lacking a LIB_DEPENDS. Fixed port attached (OK with me). 

-- 
Cheers,
Jasper

Capable, generous men do not create victims, they nurture them.


py-poppler.tgz
Description: application/tar-gz


MySQL: fix floating point string printing

2011-05-18 Thread David Coppa

Hi,

The following diff fixes a bug in MySQL status output (both 
SHOW STATUS; and `mysqladmin status`).

See: http://bugs.mysql.com/bug.php?id=61205

Cheers!
David

Index: Makefile
===
RCS file: /cvs/ports/databases/mysql/Makefile,v
retrieving revision 1.189
diff -u -p -r1.189 Makefile
--- Makefile8 Mar 2011 10:46:31 -   1.189
+++ Makefile18 May 2011 10:51:45 -
@@ -11,7 +11,7 @@ DISTNAME= mysql-${VERSION}
 PKGNAME-main=  mysql-client-${VERSION}
 REVISION-main= 0
 PKGNAME-server=mysql-server-${VERSION}
-REVISION-server=5
+REVISION-server=6
 PKGNAME-tests= mysql-tests-${VERSION}
 CATEGORIES=databases
 V= MySQL-5.1
Index: patches/patch-sql_sql_parse_cc
===
RCS file: patches/patch-sql_sql_parse_cc
diff -N patches/patch-sql_sql_parse_cc
--- /dev/null   1 Jan 1970 00:00:00 -
+++ patches/patch-sql_sql_parse_cc  18 May 2011 10:51:45 -
@@ -0,0 +1,16 @@
+$OpenBSD$
+
+Fix floating point string printing in MySQL status output
+(MySQL Bug #61205)
+
+--- sql/sql_parse.cc.orig  Wed May 18 12:36:24 2011
 sql/sql_parse.cc   Wed May 18 12:37:14 2011
+@@ -1558,7 +1558,7 @@ bool dispatch_command(enum enum_server_command command
+ length= my_snprintf(buff, buff_len - 1,
+ Uptime: %lu  Threads: %d  Questions: %lu  
+ Slow queries: %lu  Opens: %lu  Flush tables: %lu  
+-Open tables: %u  Queries per second avg: %u.%u,
++Open tables: %u  Queries per second avg: %u.%03u,
+ uptime,
+ (int) thread_count, (ulong) thd-query_id,
+ current_global_status_var.long_query_count,



Re: squid.rc diff - add daemon_flags

2011-05-18 Thread Brad
- Original message -
 hello, 
 
 the attached and inlined diff adds daemon_flags to the local 
 rc_stop() and rc_reload(); this is important in case you specify a
 different config file via -f.

Makes sense. Ok with me.

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



NEW: gtkradiant

2011-05-18 Thread Karsten Pedersen
Hello,

I have a port of GtkRadiant lying around that I quickly knocked up during my
dissertation. If anyone has interest in this it can be found at:-

http://devio.us/~kpedersen/ports/gtkradiant.tar.gz

Much of it was copied from the FreeBSD port but there were a few tweaks
needed for OpenBSD. (namely /usr/X11R6 stuff)

Feel free to report back any bugs and I will try to fix them.

Best Regards,

Karsten


Re: NEW: xbattbar-1.4.2

2011-05-18 Thread Brynet
Hmm,

I added USE_GROFF because the build broke otherwise.. I know crap about
man pages.

Should xbattbar.man be copied as-is to ${LOCALDIR}/man/cat1/xbattbar.0?

-Bryan.



Re: dns64 patch for unbound

2011-05-18 Thread Todd T. Fries
Penned by Stuart Henderson on 20110514  5:48.47, we have:
| In gmane.os.openbsd.ports, you wrote:
|  On 2011-05-13, Ryan McBride mcbr...@openbsd.org wrote:
|  This is the patch from http://ecdysis.viagenie.ca/, updated for
|  unbound-1.4.9. Needed for nat64 in pf being tested now, but also useful
|  if you're running nat64 on another box.
| 
|  I'd prefer to download the patchset rather than include it in filesdir:
| 
| This one's better. Don't change the default config settings (just
| add the commented-out examples), and add the missing config parser
| patches so you can specify dns64-prefix without an error.
| 
| $ grep dns64 /var/unbound/etc/unbound.conf
  
| module-config: dns64 validator iterator
| dns64-prefix: 64:ff9b::0/96
| 
| $ dig +short @::1 www.openbsd.org   
| 64:ff9b::8ef4:c2a
| 
| OK?
| 
| If anyone is reading this from outside OpenBSD and not interested in
| the ports bits but just wanting an updated dns64 patch for unbound 1.4.9,
| it's at http://spacehopper.org/mirrors/unbound-1.4.9-dns64.patch.gz

I like this a lot.  Though I question, if the module-config must be adjusted
to use dns64, why make it a flavor at all?

Thanks,
 
| Index: Makefile
| ===
| RCS file: /cvs/ports/net/unbound/Makefile,v
| retrieving revision 1.28
| diff -u -p -r1.28 Makefile
| --- Makefile  24 Mar 2011 20:30:42 -  1.28
| +++ Makefile  14 May 2011 10:47:41 -
| @@ -3,9 +3,11 @@
|  COMMENT= validating DNS resolver
|  
|  DISTNAME=unbound-1.4.9
| +REVISION=0
|  CATEGORIES=  net
|  
|  MASTER_SITES=http://www.unbound.net/downloads/
| +MASTER_SITES0=   http://spacehopper.org/mirrors/
|  HOMEPAGE=http://www.unbound.net/
|  
|  MAINTAINER= Jakob Schlyter ja...@openbsd.org
| @@ -37,6 +39,16 @@ CONFIGURE_ARGS+=   --with-ssl=/usr \
|   --with-conf-file=/var/unbound/etc/unbound.conf \
|   --with-username=_unbound
|  USE_GROFF =  Yes
| +
| +FLAVORS= dns64
| +FLAVOR?=
| +
| +.if ${FLAVOR:L:Mdns64}
| +PATCHFILES=  unbound-1.4.9-dns64.patch.gz:0
| +PATCH_DIST_STRIP= -p1
| +.else
| +SUPDISTFILES=unbound-1.4.9-dns64.patch.gz:0
| +.endif
|  
|  post-install:
|   ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/unbound
| Index: distinfo
| ===
| RCS file: /cvs/ports/net/unbound/distinfo,v
| retrieving revision 1.19
| diff -u -p -r1.19 distinfo
| --- distinfo  24 Mar 2011 20:30:42 -  1.19
| +++ distinfo  14 May 2011 10:47:41 -
| @@ -1,5 +1,10 @@
| +MD5 (unbound-1.4.9-dns64.patch.gz) = 0AOiMRttQ4YSINu9iHL3sQ==
|  MD5 (unbound-1.4.9.tar.gz) = cHnnUhDGVnYdOASp8qx7nw==
| +RMD160 (unbound-1.4.9-dns64.patch.gz) = Ee2Qax67R7JDbjBDTpRLhoRDx3U=
|  RMD160 (unbound-1.4.9.tar.gz) = nDTFX3dvRQavt3XI9E34SmSFQHM=
| +SHA1 (unbound-1.4.9-dns64.patch.gz) = k7ls65yzXBqUvefwV8UVluj/ZE0=
|  SHA1 (unbound-1.4.9.tar.gz) = 8qx7TvHRszDi3V4u7etv0ruthHg=
| +SHA256 (unbound-1.4.9-dns64.patch.gz) = 
PnBRP13Gg0rY0VT01vMlzXHnB9eBFzdi+zOOGkvH9NI=
|  SHA256 (unbound-1.4.9.tar.gz) = 2guYn+jPEOQ0gTQ4c+rt9gvvY75HPIbXPQJUt5xZFrc=
| +SIZE (unbound-1.4.9-dns64.patch.gz) = 94073
|  SIZE (unbound-1.4.9.tar.gz) = 4470329
| Index: pkg/DESCR
| ===
| RCS file: /cvs/ports/net/unbound/pkg/DESCR,v
| retrieving revision 1.1.1.1
| diff -u -p -r1.1.1.1 DESCR
| --- pkg/DESCR 23 May 2008 06:52:21 -  1.1.1.1
| +++ pkg/DESCR 14 May 2011 10:47:41 -
| @@ -1,2 +1,5 @@
|  Unbound is an implementation of a recursive DNS resolver, that does caching
|  and DNSSEC validation.
| +
| +Flavors:
| + dns64   Support for synthesized  records for NAT64

-- 
Todd Fries .. t...@fries.net

 _
| \  1.636.410.0632 (voice)
| Free Daemon Consulting, LLC \  1.405.227.9094 (voice)
| http://FreeDaemonConsulting.com \  1.866.792.3418 (FAX)
| 2525 NW Expy #525, Oklahoma City, OK 73112  \  sip:freedae...@ekiga.net
| ..in support of free software solutions.  \  sip:4052279...@ekiga.net
 \\
 
  37E7 D3EB 74D0 8D66 A68D  B866 0326 204E 3F42 004A
http://todd.fries.net/pgp.txt



Re: dns64 patch for unbound

2011-05-18 Thread Stuart Henderson
On 2011/05/18 17:13, Todd T. Fries wrote:
 Penned by Stuart Henderson on 20110514  5:48.47, we have:
 | In gmane.os.openbsd.ports, you wrote:
 |  On 2011-05-13, Ryan McBride mcbr...@openbsd.org wrote:
 |  This is the patch from http://ecdysis.viagenie.ca/, updated for
 |  unbound-1.4.9. Needed for nat64 in pf being tested now, but also useful
 |  if you're running nat64 on another box.
 | 
 |  I'd prefer to download the patchset rather than include it in filesdir:
 | 
 | This one's better. Don't change the default config settings (just
 | add the commented-out examples), and add the missing config parser
 | patches so you can specify dns64-prefix without an error.
 | 
 | $ grep dns64 /var/unbound/etc/unbound.conf  
 
 | module-config: dns64 validator iterator
 | dns64-prefix: 64:ff9b::0/96
 | 
 | $ dig +short @::1 www.openbsd.org   
 | 64:ff9b::8ef4:c2a
 | 
 | OK?
 | 
 | If anyone is reading this from outside OpenBSD and not interested in
 | the ports bits but just wanting an updated dns64 patch for unbound 1.4.9,
 | it's at http://spacehopper.org/mirrors/unbound-1.4.9-dns64.patch.gz
 
 I like this a lot.  Though I question, if the module-config must be adjusted
 to use dns64, why make it a flavor at all?

I think a flavour makes sense for now as it's a large patch
and upstream haven't decided whether to include it yet, so I'd
rather have it be reasonably clear that it's something that
has been added.

http://permalink.gmane.org/gmane.network.dns.unbound.user/1644



Fw: Segue em anexo !!

2011-05-18 Thread Adriana S. Gouvea.
Segue em anexo conforme solicitado o relatorio e as
cotações de preços e produtos listados a seguir.
Tenha um bom dia!

Arquivo: anexo-documento.doc (155,1 KB)

Agredecemos a sua preferencia.


Re: NEW: arora 0.11.0

2011-05-18 Thread Landry Breuil
On Mon, May 16, 2011 at 11:52:58PM +0200, Landry Breuil wrote:
 On Mon, May 16, 2011 at 02:33:54PM -0400, Brad wrote:
  On Sun, May 15, 2011 at 04:33:01PM -0400, Brad wrote:
   Here is a port of the Arora web browser.
  
  Thanks to RD Thrush for pointing out that the HOMEPAGE
  URL was wrong.
 
 Fwiw, runs fine on i386, and port reads ok. I'll try amd64
 tmrw.

Runs fine on amd64 too. Anyone willing to ok the import ?

Landry



CVS: cvs.openbsd.org: ports

2011-05-18 Thread Robert Nagy
CVSROOT:/cvs
Module name:ports
Changes by: rob...@cvs.openbsd.org  2011/05/18 01:42:29

Modified files:
editors/libreoffice: Makefile 

Log message:
remove bogus wantlib



CVS: cvs.openbsd.org: ports

2011-05-18 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2011/05/18 02:09:27

Modified files:
security/tempwatch: Makefile 
www/zope-zippy : Makefile 

Log message:
Host these files that are not reachable anymore.



CVS: cvs.openbsd.org: ports

2011-05-18 Thread David Coppa
CVSROOT:/cvs
Module name:ports
Changes by: dco...@cvs.openbsd.org  2011/05/18 02:28:55

Modified files:
x11/awesome: Makefile 

Log message:
In pre-install, get rid of a bunch of rm's and use:

find ${WRKDIST}/lib -name '*.lua.in.orig' -print | xargs rm

which will always be good in every case.



CVS: cvs.openbsd.org: ports

2011-05-18 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2011/05/18 02:56:06

Log message:
import eog 3.0.1

This is the Eye of GNOME, an image viewer program.  It is meant to be a
fast and functional image viewer.

ok aja@

Status:

Vendor Tag: jasper
Release Tags:   jasper_20111805

N ports/x11/gnome3/x11/gnome/eog/distinfo
N ports/x11/gnome3/x11/gnome/eog/Makefile
N ports/x11/gnome3/x11/gnome/eog/pkg/DESCR
N ports/x11/gnome3/x11/gnome/eog/pkg/PLIST

No conflicts created by this import



CVS: cvs.openbsd.org: ports

2011-05-18 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2011/05/18 02:58:14

Modified files:
x11/gnome3/x11/gnome: Makefile 

Log message:
sync



CVS: cvs.openbsd.org: ports

2011-05-18 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2011/05/18 02:57:48

Log message:
import eog-plugins 3.0.0 (with map plugin disabled, depends on new clutter)

Set of plugins for Eye of GNOME.

ok aja@

Status:

Vendor Tag: jasper
Release Tags:   jasper_20111805

N ports/x11/gnome3/x11/gnome/eog-plugins/Makefile
N ports/x11/gnome3/x11/gnome/eog-plugins/distinfo
N ports/x11/gnome3/x11/gnome/eog-plugins/patches/patch-configure
N ports/x11/gnome3/x11/gnome/eog-plugins/pkg/DESCR
N ports/x11/gnome3/x11/gnome/eog-plugins/pkg/PLIST

No conflicts created by this import



CVS: cvs.openbsd.org: ports

2011-05-18 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2011/05/18 03:02:31

Modified files:
x11/gnome3 : Makefile 

Log message:
enter databases/



CVS: cvs.openbsd.org: ports

2011-05-18 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2011/05/18 03:06:28

Modified files:
x11/gnome3/x11/gnome/eog-plugins: Makefile 

Log message:
Tweak comment, remove bogus RUN_DEPENDS.



CVS: cvs.openbsd.org: ports

2011-05-18 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2011/05/18 03:12:28

Modified files:
x11/gnome3/x11/gnome/eog: Makefile 

Log message:
bleh, removed devel/gsettings-desktop-schemas from eog instead of eog-plugins..



CVS: cvs.openbsd.org: ports

2011-05-18 Thread Landry Breuil
CVSROOT:/cvs
Module name:ports
Changes by: lan...@cvs.openbsd.org  2011/05/18 04:56:06

Log message:
Import py-poppler 0.12.1 from maintainer Ido Admon.

Python bindings for the Poppler PDF rendering library, needed by an
upcoming pdfshuffler port.

With tweaks and ok jasper@
Grumblings about poppler api changes from kili@

Status:

Vendor Tag: idoamon
Release Tags:   landry_20110518

N ports/print/py-poppler/Makefile
N ports/print/py-poppler/distinfo
N ports/print/py-poppler/pkg/DESCR
N ports/print/py-poppler/pkg/PLIST

No conflicts created by this import



CVS: cvs.openbsd.org: ports

2011-05-18 Thread Landry Breuil
CVSROOT:/cvs
Module name:ports
Changes by: lan...@cvs.openbsd.org  2011/05/18 04:56:41

Modified files:
print  : Makefile 

Log message:
+py-poppler



CVS: cvs.openbsd.org: ports

2011-05-18 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2011/05/18 05:06:05

Modified files:
x11/gnome3/sysutils/notification-daemon: Makefile 

Log message:
remove bogus LIB_DEPENDS

ok aja@



CVS: cvs.openbsd.org: ports

2011-05-18 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2011/05/18 05:06:24

Modified files:
print/py-poppler: Makefile 
print/py-poppler/pkg: DESCR 

Log message:
SHARED_ONLY is already implied by the python module.
Add a full stop in DESCR.



CVS: cvs.openbsd.org: ports

2011-05-18 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2011/05/18 05:17:37

Modified files:
x11/gnome3/www/epiphany-extensions: Makefile 
x11/gnome3/www/epiphany-extensions/pkg: PLIST 
x11/gnome3/x11/gnome/menus: Makefile 
x11/gnome3/x11/gnome/menus/pkg: PLIST 
x11/gnome3/x11/gnome/video-arcade: Makefile 
x11/gnome3/x11/gnome/video-arcade/pkg: PLIST 

Log message:
Remove libtool files from plugins dir.



CVS: cvs.openbsd.org: ports

2011-05-18 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2011/05/18 05:18:31

Modified files:
sysutils/consolekit: Makefile 
sysutils/consolekit/pkg: MESSAGE 

Log message:
- fix path in MESSAGE

sure aja@ (MAINTAINER)



CVS: cvs.openbsd.org: ports

2011-05-18 Thread Sebastian Reitenbach
CVSROOT:/cvs
Module name:ports
Changes by: sebas...@cvs.openbsd.org2011/05/18 07:08:25

Modified files:
x11/gnustep/gworkspace: Makefile 

Log message:
Fix LIB_DEPENDS to sqlite3 due to changes in libxslt

OK landry@, yes please sthen@



CVS: cvs.openbsd.org: ports

2011-05-18 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2011/05/18 07:13:07

Modified files:
graphics/xsane : Makefile 

Log message:
Unbreak runtime: use MAKE_FLAGS, not FAKE_FLAGS.



CVS: cvs.openbsd.org: ports

2011-05-18 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2011/05/18 07:29:11

Modified files:
x11/gnome3/x11/gnome/nettool: Makefile 
x11/gnome3/x11/gnome/nettool/patches: patch-src_info_c 
Added files:
x11/gnome3/x11/gnome/nettool/patches: 
  patch-data_gnome-nettool_ui 

Log message:
prevent a tornado of warnings and let this work a lot better



CVS: cvs.openbsd.org: ports

2011-05-18 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2011/05/18 08:47:55

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

Log message:
Add daemon_flags support to squid.rc. From Marcus MERIGHI.
ok Brad (maintainer), dcoppa@, aja@



CVS: cvs.openbsd.org: ports

2011-05-18 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2011/05/18 09:25:34

Modified files:
x11/gnome3/x11/gnome/nettool: Makefile 
x11/gnome3/x11/gnome/nettool/patches: patch-src_nettool_c 

Log message:
tweak decision logic for deciding if we should use the ipv4 or ipv6 tools.
it would default to ipv6 as most interfaces have an unused ipv6 address, while
actually using the ipv4 address. this fixes ping/traceroute functionality when
using hostnames instead of ip addresses.



CVS: cvs.openbsd.org: ports

2011-05-18 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2011/05/18 09:25:55

Modified files:
x11/gnome/nettool: Makefile 
x11/gnome/nettool/patches: patch-src_nettool_c 

Log message:
tweak decision logic for deciding if we should use the ipv4 or ipv6 tools.
it would default to ipv6 as most interfaces have an unused ipv6 address, while
actually using the ipv4 address. this fixes ping/traceroute functionality when
using hostnames instead of ip addresses.



CVS: cvs.openbsd.org: ports

2011-05-18 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2011/05/18 09:32:45

Log message:
import gnome-panel 3.0.0.1 (needs lots of fixes, so not hooking it up yet)

gnome-panel contains the GNOME panel, the libpanel-applet library and
several applets:
* the GNOME panel is the area on your desktop from which you can run
applications and applets, and perform other tasks.
* the libpanel-applet library allows to develop small applications
which may be embedded in the panel. These are called applets.
Documentation for the API is available with gtk-doc.
* the applets supplied here include the Workspace Switcher, the Window
List, the Window Selector, the Notification Area, the Clock and the
infamous 'Wanda the Fish'.

feedback/ok aja@

Status:

Vendor Tag: jasper
Release Tags:   jasper_20111805

N ports/x11/gnome3/x11/gnome/panel/distinfo
N ports/x11/gnome3/x11/gnome/panel/Makefile
N ports/x11/gnome3/x11/gnome/panel/pkg/DESCR
N ports/x11/gnome3/x11/gnome/panel/pkg/PLIST
N 
ports/x11/gnome3/x11/gnome/panel/patches/patch-applets_clock_calendar-client_c
N ports/x11/gnome3/x11/gnome/panel/patches/patch-gnome-panel_menu_c
N 
ports/x11/gnome3/x11/gnome/panel/patches/patch-gnome-panel_panel-menu-bar_c
N ports/x11/gnome3/x11/gnome/panel/patches/patch-gnome-panel_panel-util_c
N 
ports/x11/gnome3/x11/gnome/panel/patches/patch-gnome-panel_panel-menu-button_c
N 
ports/x11/gnome3/x11/gnome/panel/patches/patch-applets_clock_calendar-window_c
N ports/x11/gnome3/x11/gnome/panel/patches/patch-gnome-panel_xstuff_c

No conflicts created by this import



CVS: cvs.openbsd.org: ports

2011-05-18 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2011/05/18 09:33:29

Modified files:
x11/gnome3/x11/gnome: Makefile 

Log message:
add commented panel entry



CVS: cvs.openbsd.org: ports

2011-05-18 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2011/05/18 09:40:11

Modified files:
x11/gnome/session: Makefile 

Log message:
This is not needed anymore.



CVS: cvs.openbsd.org: ports

2011-05-18 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2011/05/18 09:49:05

Modified files:
x11/gnome/desktop: Makefile 

Log message:
Not really needed.



CVS: cvs.openbsd.org: ports

2011-05-18 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2011/05/18 09:49:32

Modified files:
x11/gnome3/x11/gnome/desktop: Makefile 

Log message:
Not needed.



CVS: cvs.openbsd.org: ports

2011-05-18 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2011/05/18 09:50:37

Modified files:
x11/gnome/panel: Makefile 
x11/gnome/totem: Makefile 

Log message:
Let's not complicate things, remove the xsltproc tweak, it's not really
needed.



CVS: cvs.openbsd.org: ports

2011-05-18 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2011/05/18 10:22:55

Modified files:
x11/gnome3/x11/gnome/panel: Makefile 
x11/gnome3/x11/gnome/panel/pkg: PLIST 

Log message:
don't put all the plugins into the main binary, may ease debugging



CVS: cvs.openbsd.org: ports

2011-05-18 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2011/05/18 10:25:14

Modified files:
sysutils/lsof  : Makefile 
sysutils/lsof/patches: patch-Configure 
sysutils/lsof/pkg: PLIST 

Log message:
No need to support procfs since we use kvm_getproc2(3).

axe it pval@ (maintainer)



CVS: cvs.openbsd.org: ports

2011-05-18 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2011/05/18 10:29:27

Modified files:
graphics/dia   : Makefile 
Removed files:
graphics/dia/patches: patch-doc_en_Makefile_in 
  patch-doc_eu_Makefile_in 

Log message:
No need for these anymore.



CVS: cvs.openbsd.org: ports

2011-05-18 Thread Robert Nagy
CVSROOT:/cvs
Module name:ports
Changes by: rob...@cvs.openbsd.org  2011/05/18 10:31:07

Modified files:
editors/libreoffice: Makefile 
editors/libreoffice/pkg: PFRAG.shared-main PLIST-main 

Log message:
fix plist



CVS: cvs.openbsd.org: ports

2011-05-18 Thread Robert Nagy
CVSROOT:/cvs
Module name:ports
Changes by: rob...@cvs.openbsd.org  2011/05/18 11:02:56

Modified files:
www/chromium   : Makefile 
www/chromium/patches: patch-app_surface_transport_dib_openbsd_cc 

Log message:
sync transport dib code



CVS: cvs.openbsd.org: ports

2011-05-18 Thread Matthieu Herrb
CVSROOT:/cvs
Module name:ports
Changes by: matth...@cvs.openbsd.org2011/05/18 13:38:15

Modified files:
devel/automake/1.10: Makefile 
devel/automake/1.11: Makefile 
devel/automake/1.9: Makefile 
Added files:
devel/automake/1.10/patches: patch-lib_am_header-vars_am 
devel/automake/1.11/patches: patch-lib_am_header-vars_am 
devel/automake/1.9/patches: patch-lib_am_header-vars_am 

Log message:
Use ${SHELL} to run install-sh since it may not be executable.
ok phessler@, landry@ who did run this through a full ports build.



CVS: cvs.openbsd.org: ports

2011-05-18 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2011/05/18 15:06:29

Modified files:
misc/redshift  : Makefile 

Log message:
Nothing in the dep chain provides librsvg, so explicitely depend on it
so that the icon is correctly displayed.



CVS: cvs.openbsd.org: ports

2011-05-18 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2011/05/18 15:11:16

Modified files:
misc/redshift  : Makefile 

Log message:
Grrr.



CVS: cvs.openbsd.org: ports

2011-05-18 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2011/05/18 15:12:08

Modified files:
x11/xpad   : Makefile 

Log message:
Nothing in the dep chain provides librsvg, so explicitely depend on it
so that the icon is correctly displayed.



CVS: cvs.openbsd.org: ports

2011-05-18 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2011/05/18 15:13:49

Modified files:
textproc/catfish: Makefile 
x11/xfce4/xfce4-dict: Makefile 

Log message:
Nothing in the dep chain provides librsvg, so explicitely depend on it
so that the icon is correctly displayed.

ok landry@ (maintainer)



CVS: cvs.openbsd.org: ports

2011-05-18 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2011/05/18 15:26:56

Modified files:
x11/gnome/session: Makefile 

Log message:
missing bump when switching to x11/polkit-gnome,gtk2

spotted by landry@



CVS: cvs.openbsd.org: ports

2011-05-18 Thread William Yodlowsky
CVSROOT:/cvs
Module name:ports
Changes by: will...@cvs.openbsd.org 2011/05/18 20:39:06

Modified files:
java/javaPathHelper: Makefile 
java/javaPathHelper/pkg: DESCR 

Log message:
Fix name of script and bump REVISION.  ok kurt@



CVS: cvs.openbsd.org: ports

2011-05-18 Thread William Yodlowsky
CVSROOT:/cvs
Module name:ports
Changes by: will...@cvs.openbsd.org 2011/05/18 20:45:31

Modified files:
mail/postfix/stable: Tag: OPENBSD_4_9 Makefile distinfo 

Log message:
SECURITY UPDATE to postfix-2.7.4

Resolves CVE-2011-1720

same diff as sthen@
ok brad