Re: [patch] audio/vorbis-tools unlocks mutex twice

2012-05-13 Thread Antoine Jacoutot
On Sun, May 13, 2012 at 11:11:02PM +0200, Thomas Pfaff wrote:
> On Sun, 13 May 2012 18:22:11 +0200
> Antoine Jacoutot  wrote:
> > On Sun, May 13, 2012 at 02:00:38PM +0200, Thomas Pfaff wrote:
> > > ogg123 in audio/vorbis-tools will abort if interrupted or it reaches
> > > the end of a file because it tries to unlock an already unlocked mutex.
> 
> (or maybe it never got locked in the first place)
> 
> > > I suppose the better way to fix this is to figure out why it tries to
> > > unlock the mutex twice and correct that, though I'm going to leave that
> > > to someone else if this quick fix is not satisfactory ;-)
> >
> > I think this particular issue should be fixed, not worked around.
> 
> I spent a bit more time on this one but I'm not getting any wiser ;-/
> 
> Are you sure upstream cares about bugs like this ("works on Linux")?

Yes, kurt@ and I already got several patches upstream for a similar issue on 
some ports.

-- 
Antoine



QEMU 1.1-rc1 for testing

2012-05-13 Thread Brad Smith
Here is an update to QEMU 1.1-rc1 for anyone wanting to do any
testing and provide any feedback before the actual release.


Index: Makefile
===
RCS file: /home/cvs/ports/emulators/qemu/Makefile,v
retrieving revision 1.85
diff -u -p -r1.85 Makefile
--- Makefile16 Mar 2012 11:40:53 -  1.85
+++ Makefile14 May 2012 03:46:41 -
@@ -5,7 +5,7 @@ BROKEN-hppa=compiler bug with gcc 4.2
 
 COMMENT=   multi system emulator
 
-DISTNAME=  qemu-1.0.1
+DISTNAME=  qemu-1.1-rc1
 CATEGORIES=emulators
 MASTER_SITES=  http://wiki.qemu.org/download/
 
@@ -34,7 +34,7 @@ LIB_DEPENDS=  devel/glib2 \
 MODPY_RUNDEP=  No
 
 MAKE_ENV=  V=1
-FAKE_FLAGS=sysconfdir=${PREFIX}/share/examples
+FAKE_FLAGS=qemu_confdir=${PREFIX}/share/examples/qemu
 
 EXTRA_CFLAGS=  -I${LOCALBASE}/include -I${X11BASE}/include
 EXTRA_LDFLAGS= -L${LOCALBASE}/lib -L${X11BASE}/lib
@@ -75,13 +75,15 @@ FLAVORS=debug
 FLAVOR?=
 
 .if ${FLAVOR:Mdebug}
+CFLAGS+=   -O0
 CONFIGURE_ARGS+=--enable-debug
+.else
+CONFIGURE_ARGS+=--disable-debug-info
 .endif
 
 NO_REGRESS=Yes
 
 post-install:
-   ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/qemu
${INSTALL_SCRIPT} ${FILESDIR}/qemu-ifup \
${PREFIX}/share/examples/qemu
${INSTALL_SCRIPT} ${FILESDIR}/qemu-ifdown \
Index: distinfo
===
RCS file: /home/cvs/ports/emulators/qemu/distinfo,v
retrieving revision 1.19
diff -u -p -r1.19 distinfo
--- distinfo16 Mar 2012 11:40:53 -  1.19
+++ distinfo14 May 2012 01:10:24 -
@@ -1,5 +1,5 @@
-MD5 (qemu-1.0.1.tar.gz) = Xv0QkfAeO8Mb/ewnuO3rAA==
-RMD160 (qemu-1.0.1.tar.gz) = 3O80TxUOI4iAhxdo8vB8y26OzOc=
-SHA1 (qemu-1.0.1.tar.gz) = TQi1qDU4/NeyIr7G8cWE2o0SSXo=
-SHA256 (qemu-1.0.1.tar.gz) = GYkC4QeCUX9gfJ7Z5im153COo56zc+0+w/HIoWnZg3g=
-SIZE (qemu-1.0.1.tar.gz) = 10853005
+MD5 (qemu-1.1-rc1.tar.gz) = +5KS6Fg8DAmAPrJVZPjGng==
+RMD160 (qemu-1.1-rc1.tar.gz) = 5T/eyaTVJYlWZSIOiVyS7ennL6o=
+SHA1 (qemu-1.1-rc1.tar.gz) = o7qbN0Z+qUqqVnMJp1ZNY/9GBqM=
+SHA256 (qemu-1.1-rc1.tar.gz) = GnQwYheSUHfTJ4iRb5tl0swrJLAOW7O7rw7bDrSU6CQ=
+SIZE (qemu-1.1-rc1.tar.gz) = 11702330
Index: patches/patch-configure
===
RCS file: /home/cvs/ports/emulators/qemu/patches/patch-configure,v
retrieving revision 1.22
diff -u -p -r1.22 patch-configure
--- patches/patch-configure 16 Mar 2012 11:40:53 -  1.22
+++ patches/patch-configure 14 May 2012 01:19:24 -
@@ -1,29 +1,14 @@
 $OpenBSD: patch-configure,v 1.22 2012/03/16 11:40:53 fgsch Exp $
 configure.orig Fri Feb 17 14:45:39 2012
-+++ configure  Fri Feb 17 16:02:57 2012
-@@ -235,13 +235,11 @@ sdl_config="${SDL_CONFIG-${cross_prefix}sdl-config}"
- 
- # default flags for all hosts
- QEMU_CFLAGS="-fno-strict-aliasing $QEMU_CFLAGS"
--CFLAGS="-g $CFLAGS"
- QEMU_CFLAGS="-Wall -Wundef -Wwrite-strings -Wmissing-prototypes $QEMU_CFLAGS"
- QEMU_CFLAGS="-Wstrict-prototypes -Wredundant-decls $QEMU_CFLAGS"
- QEMU_CFLAGS="-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE 
$QEMU_CFLAGS"
- QEMU_CFLAGS="-D_FORTIFY_SOURCE=2 $QEMU_CFLAGS"
- QEMU_INCLUDES="-I. -I\$(SRC_PATH) -I\$(SRC_PATH)/fpu"
--LDFLAGS="-g $LDFLAGS"
- 
- # make source path absolute
- source_path=`cd "$source_path"; pwd`
-@@ -2684,8 +2682,9 @@ fi
+--- configure.orig Thu May 10 08:11:22 2012
 configure  Sun May 13 21:19:06 2012
+@@ -2835,10 +2835,6 @@ fi
  # End of CC checks
  # After here, no more $cc or $ld runs
  
 -if test "$debug" = "no" ; then
 -  CFLAGS="-O2 $CFLAGS"
-+if test "$debug" = "yes" ; then
-+  CFLAGS="$CFLAGS -O0 -g"
-+  LDFLAGS="$LDFLAGS -g"
- fi
- 
+-fi
+-
  # Consult white-list to determine whether to enable werror
+ # by default.  Only enable by default for git builds
+ z_version=`cut -f3 -d. $source_path/VERSION`
Index: pkg/PLIST
===
RCS file: /home/cvs/ports/emulators/qemu/pkg/PLIST,v
retrieving revision 1.20
diff -u -p -r1.20 PLIST
--- pkg/PLIST   12 Dec 2011 10:56:56 -  1.20
+++ pkg/PLIST   14 May 2012 03:42:26 -
@@ -89,6 +89,7 @@ share/qemu/keymaps/sl
 share/qemu/keymaps/sv
 share/qemu/keymaps/th
 share/qemu/keymaps/tr
+share/qemu/kvmvapic.bin
 share/qemu/linuxboot.bin
 share/qemu/mpc8544ds.dtb
 share/qemu/multiboot.bin
@@ -105,6 +106,7 @@ share/qemu/pxe-ne2k_pci.rom
 share/qemu/pxe-pcnet.rom
 share/qemu/pxe-rtl8139.rom
 share/qemu/pxe-virtio.rom
+share/qemu/qemu-icon.bmp
 share/qemu/s390-zipl.rom
 share/qemu/sgabios.bin
 share/qemu/slof.bin

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



update sysutils/ddrescue

2012-05-13 Thread Pascal Stumpf
Straightforward update to latest release, doesn't need groff.

ok?


Index: Makefile
===
RCS file: /cvs/ports/sysutils/ddrescue/Makefile,v
retrieving revision 1.5
diff -u -p -r1.5 Makefile
--- Makefile20 Nov 2010 17:22:40 -  1.5
+++ Makefile13 May 2012 23:56:27 -
@@ -2,13 +2,13 @@
 
 COMMENT =  data recovery tool
 
-DISTNAME = ddrescue-1.12
+DISTNAME = ddrescue-1.15
 
 CATEGORIES =   sysutils
 
 HOMEPAGE = http://www.gnu.org/software/ddrescue/ddrescue.html
 
-# GPLv3
+# GPLv3+
 PERMIT_PACKAGE_CDROM = Yes
 PERMIT_PACKAGE_FTP =   Yes
 PERMIT_DISTFILES_CDROM =Yes
@@ -23,6 +23,5 @@ BUILD_DEPENDS =   devel/help2man
 CONFIGURE_STYLE =  gnu
 ALL_TARGET =   all doc
 INSTALL_TARGET =   install install-man
-USE_GROFF =Yes
 
 .include 
Index: distinfo
===
RCS file: /cvs/ports/sysutils/ddrescue/distinfo,v
retrieving revision 1.2
diff -u -p -r1.2 distinfo
--- distinfo24 Aug 2010 11:40:21 -  1.2
+++ distinfo13 May 2012 23:56:27 -
@@ -1,5 +1,5 @@
-MD5 (ddrescue-1.12.tar.gz) = s9ipqQmLh5OfugWkWEi9jQ==
-RMD160 (ddrescue-1.12.tar.gz) = 5923vuxBVZTvkWZ8y5Vy8a8Ei5Y=
-SHA1 (ddrescue-1.12.tar.gz) = T8sPw3w4pyVIN5N2sglXcpJxONE=
-SHA256 (ddrescue-1.12.tar.gz) = WFsoi7FoaOqU5BJEbxB2CsexWeADcs922vO286g5oVE=
-SIZE (ddrescue-1.12.tar.gz) = 62581
+MD5 (ddrescue-1.15.tar.gz) = a0RfYkYHSn+gLzslmQMQlg==
+RMD160 (ddrescue-1.15.tar.gz) = sli74V76MPUmtBJx9hwS/vnzd4M=
+SHA1 (ddrescue-1.15.tar.gz) = cEatxKSxB2t7XS0MmH4WCNa2dIY=
+SHA256 (ddrescue-1.15.tar.gz) = deATYgBbpbWaJ17dnQEiKbQ+C1ZTPCq7idQKRNfsLXg=
+SIZE (ddrescue-1.15.tar.gz) = 99082
Index: patches/patch-Makefile_in
===
RCS file: patches/patch-Makefile_in
diff -N patches/patch-Makefile_in
--- /dev/null   1 Jan 1970 00:00:00 -
+++ patches/patch-Makefile_in   13 May 2012 23:56:27 -
@@ -0,0 +1,24 @@
+$OpenBSD$
+--- Makefile.in.orig   Mon May 14 01:49:55 2012
 Makefile.inMon May 14 01:50:49 2012
+@@ -18,16 +18,16 @@ logobjs = arg_parser.o block.o logbook.o ddrescuelog.o
+ all : $(progname) ddrescuelog
+ 
+ $(progname) : $(objs)
+-  $(CXX) $(LDFLAGS) -o $@ $^
++  $(CXX) $(LDFLAGS) -o $@ $(objs)
+ 
+ $(progname)_profiled : $(objs)
+-  $(CXX) $(LDFLAGS) -pg -o $@ $^
++  $(CXX) $(LDFLAGS) -pg -o $@ $(objs)
+ 
+ ddrescuelog : $(logobjs)
+-  $(CXX) $(LDFLAGS) -o $@ $^
++  $(CXX) $(LDFLAGS) -o $@ $(logobjs)
+ 
+ static_$(progname) : $(objs)
+-  $(CXX) $(LDFLAGS) -static -o $@ $^
++  $(CXX) $(LDFLAGS) -static -o $@ $(objs)
+ 
+ main.o : main.cc
+   $(CXX) $(CPPFLAGS) $(CXXFLAGS) -DPROGVERSION=\"$(pkgversion)\" -c -o $@ 
$<
Index: patches/patch-configure
===
RCS file: /cvs/ports/sysutils/ddrescue/patches/patch-configure,v
retrieving revision 1.2
diff -u -p -r1.2 patch-configure
--- patches/patch-configure 24 Aug 2010 11:40:21 -  1.2
+++ patches/patch-configure 13 May 2012 23:56:27 -
@@ -1,7 +1,7 @@
 $OpenBSD: patch-configure,v 1.2 2010/08/24 11:40:21 jasper Exp $
 configure.orig Tue Aug 24 13:38:07 2010
-+++ configure  Tue Aug 24 13:39:26 2010
-@@ -26,10 +26,6 @@ datadir='$(prefix)/share'
+--- configure.orig Sun Jan  1 18:25:27 2012
 configure  Mon May 14 01:47:09 2012
+@@ -24,10 +24,6 @@ datadir='$(prefix)/share'
  infodir='$(datadir)/info'
  mandir='$(datadir)/man'
  sysconfdir='$(prefix)/etc'
Index: pkg/PLIST
===
RCS file: /cvs/ports/sysutils/ddrescue/pkg/PLIST,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 PLIST
--- pkg/PLIST   2 Nov 2009 10:01:40 -   1.1.1.1
+++ pkg/PLIST   13 May 2012 23:56:27 -
@@ -1,4 +1,6 @@
 @comment $OpenBSD: PLIST,v 1.1.1.1 2009/11/02 10:01:40 giovanni Exp $
 @bin bin/ddrescue
+@bin bin/ddrescuelog
 @info info/ddrescue.info
 @man man/man1/ddrescue.1
+@man man/man1/ddrescuelog.1



e2fsprogs

2012-05-13 Thread frantisek holop



Index: Makefile
===
RCS file: /cvs/ports/sysutils/e2fsprogs/Makefile,v
retrieving revision 1.24
diff -u -p -r1.24 Makefile
--- Makefile29 Mar 2012 13:39:00 -  1.24
+++ Makefile13 May 2012 21:57:24 -
@@ -4,7 +4,7 @@
 COMMENT=   utilities to manipulate ext2 filesystems
 
 DISTNAME=  e2fsprogs-1.41.4
-REVISION=  7
+REVISION=  8
 CATEGORIES=sysutils devel
 SHARED_LIBS=   blkid   0.0 \
e2p 3.0 \
@@ -30,8 +30,8 @@ MODULES=  devel/gettext
 SEPARATE_BUILD=Yes
 CONFIGURE_STYLE=   gnu
 CONFIGURE_ARGS+=   --enable-elf-shlibs --disable-tls
+CONFIGURE_ENV +=   CPPFLAGS='${CPPFLAGS} -D_EXT2_USE_C_VERSIONS_'
 USE_GMAKE= Yes
 
 MAKE_FLAGS=LIBblkid_VERSION=${LIBblkid_VERSION} \
LIBe2p_VERSION=${LIBe2p_VERSION} \

without this, e2fsck segfaults in the last stage:

before:

$ sudo e2fsck -C 0 /dev/sd2k
e2fsck 1.41.4 (27-Jan-2009)
hades contains a file system with errors, check forced.
Pass 1: Checking inodes, blocks, and sizes
Pass 2: Checking directory structure
Pass 3: Checking directory connectivity
Pass 4: Checking reference counts
Pass 5: Checking group summary information
Segmentation fault (core dumped)

after:

$ sudo e2fsck -C 0 /dev/sd2k
e2fsck 1.41.4 (27-Jan-2009)
hades contains a file system with errors, check forced.
Pass 1: Checking inodes, blocks, and sizes
Pass 2: Checking directory structure
Pass 3: Checking directory connectivity
Pass 4: Checking reference counts
Pass 5: Checking group summary information
hades: 41429/56590336 files (16.2% non-contiguous), 26052250/56558840 blocks

-- 
some people fall for everything and stand for nothing.



New Maintainers Wanted

2012-05-13 Thread Toni Mueller

Hi,

@David: thanks for putting in some work and reminding me to do this...

On Sun, May 13, 2012 at 05:30:21PM -0400, David Hill wrote:
> Date: Sun, 13 May 2012 17:30:21 -0400
> From: David Hill 
> To: ports@openbsd.org

@all: Please take over all my ports and remove me from maintainership,
as I am currently, and in the forseeable future, unable to properly
maintain them.


TIA!


Kind regards,
--Toni++



[update] net/p5-Net-Netmask

2012-05-13 Thread David Hill
update to 1.9016

Index: Makefile
===
RCS file: /cvs/ports/net/p5-Net-Netmask/Makefile,v
retrieving revision 1.3
diff -u -p -r1.3 Makefile
--- Makefile3 Dec 2010 11:45:42 -   1.3
+++ Makefile13 May 2012 21:28:58 -
@@ -3,10 +3,8 @@
 COMMENT =  parse, manipulate and lookup IPv4 CIDR blocks
 
 MODULES =  cpan
-DISTNAME = Net-Netmask-1.9015
-REVISION = 0
+DISTNAME = Net-Netmask-1.9016
 CATEGORIES =   net
-USE_GROFF =Yes
 
 MAINTAINER =   Toni Mueller 
 
Index: distinfo
===
RCS file: /cvs/ports/net/p5-Net-Netmask/distinfo,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 distinfo
--- distinfo1 Feb 2009 16:33:33 -   1.1.1.1
+++ distinfo13 May 2012 21:28:58 -
@@ -1,5 +1,5 @@
-MD5 (Net-Netmask-1.9015.tar.gz) = kCmBBc0XpcKkBZKX4J8VRg==
-RMD160 (Net-Netmask-1.9015.tar.gz) = Aq5YI3UvhXE8Kn2AS+U5FZMnYI4=
-SHA1 (Net-Netmask-1.9015.tar.gz) = X4smrPXaZ8JhSIgbV0Wi1NKJjYY=
-SHA256 (Net-Netmask-1.9015.tar.gz) = 
DGy3eq0y/40ptHYilAHhCmYGt1GXgyjurX4ZRfD9YUU=
-SIZE (Net-Netmask-1.9015.tar.gz) = 20071
+MD5 (Net-Netmask-1.9016.tar.gz) = F0YGtWj4VFuJaK7PULp6Nw==
+RMD160 (Net-Netmask-1.9016.tar.gz) = pC2nKuzCjfPNk6I2ReOJzjEe+us=
+SHA1 (Net-Netmask-1.9016.tar.gz) = 9kVyLAmh/MzcYFliMUeolfnxZdc=
+SHA256 (Net-Netmask-1.9016.tar.gz) = 
dihO5idPRoLy7Bl22nJSx7ntA4b+v9hyAJ9kwq7//6k=
+SIZE (Net-Netmask-1.9016.tar.gz) = 17911



[update] net/p5-Net-Daemon

2012-05-13 Thread David Hill
update to 0.48

Index: Makefile
===
RCS file: /cvs/ports/net/p5-Net-Daemon/Makefile,v
retrieving revision 1.16
diff -u -p -r1.16 Makefile
--- Makefile3 Dec 2010 11:45:42 -   1.16
+++ Makefile13 May 2012 21:25:36 -
@@ -3,14 +3,10 @@
 COMMENT=   extension for portable daemons
 
 MODULES=   cpan
-DISTNAME=  Net-Daemon-0.43
-REVISION=  0
+DISTNAME=  Net-Daemon-0.48
 CATEGORIES=net
-USE_GROFF =Yes
 
 MAINTAINER=Kevin Lo 
-
-WRKDIST=   ${WRKDIR}/Net-Daemon
 
 # Perl
 PERMIT_PACKAGE_CDROM=  Yes
Index: distinfo
===
RCS file: /cvs/ports/net/p5-Net-Daemon/distinfo,v
retrieving revision 1.7
diff -u -p -r1.7 distinfo
--- distinfo20 Nov 2007 14:30:02 -  1.7
+++ distinfo13 May 2012 21:25:36 -
@@ -1,5 +1,5 @@
-MD5 (Net-Daemon-0.43.tar.gz) = oXOoQH+3sEmqRlWY7Kbf1w==
-RMD160 (Net-Daemon-0.43.tar.gz) = og6A6/Z+V/0L9HcUqxzMggVz05o=
-SHA1 (Net-Daemon-0.43.tar.gz) = FcHcd0QHmiwoPeQSllK3ybUCTxI=
-SHA256 (Net-Daemon-0.43.tar.gz) = AhjdFm1LAGHeCI3RZY9Qniig2OUBT4Wh08EvGopVYYc=
-SIZE (Net-Daemon-0.43.tar.gz) = 28553
+MD5 (Net-Daemon-0.48.tar.gz) = dx+boBw7Az7YzD1rrTbl+w==
+RMD160 (Net-Daemon-0.48.tar.gz) = Cg2rZBp6nKCWTOM/nTr33jdc0eA=
+SHA1 (Net-Daemon-0.48.tar.gz) = syJDb9nlzFL6HanbNFg4AmNRvOo=
+SHA256 (Net-Daemon-0.48.tar.gz) = PBLx5E+bvOQnIEqD3XOqbdKQnpEZDTLW7DVjvsp7vHQ=
+SIZE (Net-Daemon-0.48.tar.gz) = 29513



Re: new: font/gohufont

2012-05-13 Thread Juan Francisco Cantero Hurtado
On Sun, May 13, 2012 at 10:41:52PM +0200, Tobias Ulmer wrote:
> On Sun, May 13, 2012 at 10:15:19PM +0200, Juan Francisco Cantero Hurtado 
> wrote:
> > On Sun, May 13, 2012 at 05:34:25PM +0200, Tobias Ulmer wrote:
> > > Attached is my current favourite terminal font. It's pretty similar to
> > > Terminus, but offers a 11px version that includes bold glyphs. Give it a
> > > try :)
> > > 
> > > cat pkg/DESCR
> > > Gohufont is a monospace bitmap font well suited for programming and
> > > terminal use. It is intended to be very legible and offers very
> > > discernable glyphs for all characters, including signs and symbols.
> > 
> > Hi. The homepage shows two versions: 11px and 14px. I'm testing the font
> > on terminator but I only can use the 11px version. When I select "14px",
> > the size of the font doesn't change.
> 
> Hi, I don't know about terminator, but both fonts are included. The

I know. I checked the "fake" directory before of to send the email.

> website buttons only change the screenshots, but the tarball has both
> versions. There may be some confusion here because pt and px are
> different things and freetype probably adds its own magic somewhere.
> 

You're right. I was confused about the px and pt. The 14px version is
too tiny for me :)

Cheers.

-- 
Juan Francisco Cantero Hurtado http://juanfra.info



[update] net/p5-Net-Dict

2012-05-13 Thread David Hill
update to 2.09

Index: Makefile
===
RCS file: /cvs/ports/net/p5-Net-Dict/Makefile,v
retrieving revision 1.8
diff -u -p -r1.8 Makefile
--- Makefile3 Dec 2010 11:45:42 -   1.8
+++ Makefile13 May 2012 21:19:59 -
@@ -3,10 +3,8 @@
 COMMENT=   Perl Interface to the DICT protocol
 
 MODULES=   cpan
-DISTNAME=  Net-Dict-2.07
-REVISION=  2
+DISTNAME=  Net-Dict-2.09
 CATEGORIES=net
-USE_GROFF =Yes
 
 MAINTAINER=Sam Smith 
 
Index: distinfo
===
RCS file: /cvs/ports/net/p5-Net-Dict/distinfo,v
retrieving revision 1.3
diff -u -p -r1.3 distinfo
--- distinfo5 Apr 2007 16:20:13 -   1.3
+++ distinfo13 May 2012 21:19:59 -
@@ -1,5 +1,5 @@
-MD5 (Net-Dict-2.07.tar.gz) = +1f2lEVVSYYcPGAlIRYpVg==
-RMD160 (Net-Dict-2.07.tar.gz) = QX1EDHJ45uu1p3jlSD3ECYRqqnA=
-SHA1 (Net-Dict-2.07.tar.gz) = 6Wc1cRvpcEuD8WVHCBO9I/G+fKU=
-SHA256 (Net-Dict-2.07.tar.gz) = 5o+KAs4TsAQglzjktc9HVYWlvY6fx1GnfMN73qIaqcU=
-SIZE (Net-Dict-2.07.tar.gz) = 30284
+MD5 (Net-Dict-2.09.tar.gz) = kMh/WbMyig7NV9z0A17Hsw==
+RMD160 (Net-Dict-2.09.tar.gz) = KXml2fDBcsapx2hRuoIAiK3MfJY=
+SHA1 (Net-Dict-2.09.tar.gz) = xbIXAZSxP1qTaXtGr+231no+g78=
+SHA256 (Net-Dict-2.09.tar.gz) = cQAb337VPSb6VoAJH+d8CiBMqdf5xa1ynfMZUTPoIvg=
+SIZE (Net-Dict-2.09.tar.gz) = 34563



[update] p5-Net-CIDR

2012-05-13 Thread David Hill
update to 0.15

Index: Makefile
===
RCS file: /cvs/ports/net/p5-Net-CIDR/Makefile,v
retrieving revision 1.8
diff -u -p -r1.8 Makefile
--- Makefile3 Dec 2010 11:45:41 -   1.8
+++ Makefile13 May 2012 21:21:54 -
@@ -3,10 +3,8 @@
 COMMENT=   manipulate IPv4/IPv6 netblocks in CIDR notation
 
 MODULES=   cpan
-DISTNAME=  Net-CIDR-0.13
-REVISION=  0
+DISTNAME=  Net-CIDR-0.15
 CATEGORIES=net
-USE_GROFF =Yes
 
 MAINTAINER=Matteo Cantoni  
 
Index: distinfo
===
RCS file: /cvs/ports/net/p5-Net-CIDR/distinfo,v
retrieving revision 1.5
diff -u -p -r1.5 distinfo
--- distinfo7 May 2009 14:43:48 -   1.5
+++ distinfo13 May 2012 21:21:54 -
@@ -1,5 +1,5 @@
-MD5 (Net-CIDR-0.13.tar.gz) = QPD0IQSzFK+Rq3gRngCW3g==
-RMD160 (Net-CIDR-0.13.tar.gz) = Vh1Jgp47D/oP9d41//bC8SLNwK0=
-SHA1 (Net-CIDR-0.13.tar.gz) = k3/ilKUlfmINsG2gAJzcyxmxegE=
-SHA256 (Net-CIDR-0.13.tar.gz) = cBFxOJHCcQ3YA9IXid9roK1/RpLVzB3eg7cQb0tybas=
-SIZE (Net-CIDR-0.13.tar.gz) = 9294
+MD5 (Net-CIDR-0.15.tar.gz) = bso8GGyez6J6h4924A6JKQ==
+RMD160 (Net-CIDR-0.15.tar.gz) = Hj/KMeG+RtxRB/kaCcbBNH25u28=
+SHA1 (Net-CIDR-0.15.tar.gz) = uJfeCwCsXuvRjJpiaSsUI2PiNXs=
+SHA256 (Net-CIDR-0.15.tar.gz) = VgCOXKpijXlMOE9wFUn4qPK9os1D/DtDYthaGT2Dchk=
+SIZE (Net-CIDR-0.15.tar.gz) = 10123



[update] comms/p5-Device-Gsm

2012-05-13 Thread David Hill
update to 1.58

Index: Makefile
===
RCS file: /cvs/ports/comms/p5-Device-Gsm/Makefile,v
retrieving revision 1.7
diff -u -p -r1.7 Makefile
--- Makefile3 Dec 2010 11:44:22 -   1.7
+++ Makefile13 May 2012 21:14:59 -
@@ -2,8 +2,7 @@
 
 COMMENT=   Perl extension to interface GSM cellulars / modems
 
-DISTNAME=  Device-Gsm-1.52
-REVISION=  0
+DISTNAME=  Device-Gsm-1.58
 CATEGORIES=comms
 
 MODULES=   cpan
@@ -15,7 +14,6 @@ PERMIT_PACKAGE_FTP=   Yes
 PERMIT_DISTFILES_CDROM=Yes
 PERMIT_DISTFILES_FTP=  Yes
 
-USE_GROFF =Yes
 RUN_DEPENDS=   comms/p5-Device-Modem
 BUILD_DEPENDS= ${RUN_DEPENDS}
 
Index: distinfo
===
RCS file: /cvs/ports/comms/p5-Device-Gsm/distinfo,v
retrieving revision 1.4
diff -u -p -r1.4 distinfo
--- distinfo31 May 2009 16:25:29 -  1.4
+++ distinfo13 May 2012 21:14:59 -
@@ -1,5 +1,5 @@
-MD5 (Device-Gsm-1.52.tar.gz) = ut6OrTeHXg03JMAo004KGg==
-RMD160 (Device-Gsm-1.52.tar.gz) = D+CFfkPzAsRp0IZp4Iks8XDiiVw=
-SHA1 (Device-Gsm-1.52.tar.gz) = fs28u3A75VG1e0yyQS50e30eUHE=
-SHA256 (Device-Gsm-1.52.tar.gz) = 7X4GlNoZy9+5EbH25e2D5hrxEVaq0E9LKgjvg0lXlw8=
-SIZE (Device-Gsm-1.52.tar.gz) = 58817
+MD5 (Device-Gsm-1.58.tar.gz) = oL/i96c4DBCcc6uGk7kXlw==
+RMD160 (Device-Gsm-1.58.tar.gz) = oY2lEyd2/y4iKO/bXH/Wv3AX5/w=
+SHA1 (Device-Gsm-1.58.tar.gz) = AaHRW6YG0nYNb2CR8Wk6/onuobI=
+SHA256 (Device-Gsm-1.58.tar.gz) = h6MUFyxUf0mUDHeycY1jPxEQXGvzXHcxuH75C21OztE=
+SIZE (Device-Gsm-1.58.tar.gz) = 48197
Index: pkg/PLIST
===
RCS file: /cvs/ports/comms/p5-Device-Gsm/pkg/PLIST,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 PLIST
--- pkg/PLIST   4 Nov 2004 13:00:14 -   1.1.1.1
+++ pkg/PLIST   13 May 2012 21:14:59 -
@@ -2,6 +2,7 @@
 ${P5SITE}/Device/Gsm/
 ${P5SITE}/Device/Gsm.pm
 ${P5SITE}/Device/Gsm/Charset.pm
+${P5SITE}/Device/Gsm/Networks.pm
 ${P5SITE}/Device/Gsm/Pdu.pm
 ${P5SITE}/Device/Gsm/Sms/
 ${P5SITE}/Device/Gsm/Sms.pm



Re: new: font/gohufont

2012-05-13 Thread Jiri B
On Sun, May 13, 2012 at 10:41:52PM +0200, Tobias Ulmer wrote:
> On Sun, May 13, 2012 at 10:15:19PM +0200, Juan Francisco Cantero Hurtado 
> wrote:
> > On Sun, May 13, 2012 at 05:34:25PM +0200, Tobias Ulmer wrote:
> > > Attached is my current favourite terminal font. It's pretty similar to
> > > Terminus, but offers a 11px version that includes bold glyphs. Give it a
> > > try :)
> > > 
> > > cat pkg/DESCR
> > > Gohufont is a monospace bitmap font well suited for programming and
> > > terminal use. It is intended to be very legible and offers very
> > > discernable glyphs for all characters, including signs and symbols.
> > 
> > Hi. The homepage shows two versions: 11px and 14px. I'm testing the font
> > on terminator but I only can use the 11px version. When I select "14px",
> > the size of the font doesn't change.
> 
> Hi, I don't know about terminator, but both fonts are included. The
> website buttons only change the screenshots, but the tarball has both
> versions. There may be some confusion here because pt and px are
> different things and freetype probably adds its own magic somewhere.
> 
> You can test with xfontsel, select "pxlsz" to verify both sizes are
> available.

I haven't tested under OpenBSD  but mkfontdir/mkfontscale and then
xset +fp /path/to/extracted/tarball works ok. in xlsfonts I can see
2 sizes with 2 encodings per each of them. Works OK with xterm.

jirib



[update] comms/p5-Device-Modem

2012-05-13 Thread David Hill
update to 1.56

Index: Makefile
===
RCS file: /cvs/ports/comms/p5-Device-Modem/Makefile,v
retrieving revision 1.10
diff -u -p -r1.10 Makefile
--- Makefile3 Dec 2010 11:44:23 -   1.10
+++ Makefile13 May 2012 21:11:11 -
@@ -2,8 +2,7 @@
 
 COMMENT=   talk to modem devices connected via serial port
 
-DISTNAME=  Device-Modem-1.51
-REVISION=  0
+DISTNAME=  Device-Modem-1.56
 CATEGORIES=comms
 
 MODULES=   cpan
@@ -16,7 +15,6 @@ PERMIT_PACKAGE_FTP=   Yes
 PERMIT_DISTFILES_CDROM=Yes
 PERMIT_DISTFILES_FTP=  Yes
 
-USE_GROFF =Yes
 BUILD_DEPENDS= comms/p5-Device-SerialPort>=1
 
 .include 
Index: distinfo
===
RCS file: /cvs/ports/comms/p5-Device-Modem/distinfo,v
retrieving revision 1.7
diff -u -p -r1.7 distinfo
--- distinfo9 Oct 2009 12:25:25 -   1.7
+++ distinfo13 May 2012 21:11:11 -
@@ -1,5 +1,5 @@
-MD5 (Device-Modem-1.51.tar.gz) = k0bAt+tBaY93LTIBY+BQtA==
-RMD160 (Device-Modem-1.51.tar.gz) = qpeifKeZH5i9TtJQQANreYbH0Qc=
-SHA1 (Device-Modem-1.51.tar.gz) = wwH7cH41hXu/zp/AlIxBGrx/wCg=
-SHA256 (Device-Modem-1.51.tar.gz) = 
FRUv3Zh4e7hbsNSQvtjg07aqVYoOOK2RpcR03/hh/NE=
-SIZE (Device-Modem-1.51.tar.gz) = 42268
+MD5 (Device-Modem-1.56.tar.gz) = oOxFw+MTvqJ8y0dtO3JZVQ==
+RMD160 (Device-Modem-1.56.tar.gz) = kZ4Fpv3dqCDbOP882wPx3kH4czI=
+SHA1 (Device-Modem-1.56.tar.gz) = 8PbXq30RYji8SEV05HMJ2lbYy+Q=
+SHA256 (Device-Modem-1.56.tar.gz) = 
kH/Ag7XcEeB4KjqUgrCBAQj9Ow8r8J79vcztKmzOYHE=
+SIZE (Device-Modem-1.56.tar.gz) = 37726
Index: pkg/PLIST
===
RCS file: /cvs/ports/comms/p5-Device-Modem/pkg/PLIST,v
retrieving revision 1.4
diff -u -p -r1.4 PLIST
--- pkg/PLIST   30 Jul 2007 18:13:53 -  1.4
+++ pkg/PLIST   13 May 2012 21:11:11 -
@@ -2,6 +2,7 @@
 ${P5SITE}/Device/
 ${P5SITE}/Device/Modem/
 ${P5SITE}/Device/Modem.pm
+${P5SITE}/Device/Modem/FAQ.pod
 ${P5SITE}/Device/Modem/Log/
 ${P5SITE}/Device/Modem/Log/File.pm
 ${P5SITE}/Device/Modem/Log/Syslog.pm
@@ -9,6 +10,7 @@ ${P5SITE}/Device/Modem/Protocol/
 ${P5SITE}/Device/Modem/Protocol/Xmodem.pm
 ${P5SITE}/Device/Modem/UsRobotics.pm
 @man man/man3p/Device::Modem.3p
+@man man/man3p/Device::Modem::FAQ.3p
 @man man/man3p/Device::Modem::Log::File.3p
 @man man/man3p/Device::Modem::Log::Syslog.3p
 @man man/man3p/Device::Modem::Protocol::Xmodem.3p



Re: [patch] audio/vorbis-tools unlocks mutex twice

2012-05-13 Thread Thomas Pfaff
On Sun, 13 May 2012 18:22:11 +0200
Antoine Jacoutot  wrote:
> On Sun, May 13, 2012 at 02:00:38PM +0200, Thomas Pfaff wrote:
> > ogg123 in audio/vorbis-tools will abort if interrupted or it reaches
> > the end of a file because it tries to unlock an already unlocked mutex.

(or maybe it never got locked in the first place)

> > I suppose the better way to fix this is to figure out why it tries to
> > unlock the mutex twice and correct that, though I'm going to leave that
> > to someone else if this quick fix is not satisfactory ;-)
>
> I think this particular issue should be fixed, not worked around.

I spent a bit more time on this one but I'm not getting any wiser ;-/

Are you sure upstream cares about bugs like this ("works on Linux")?

Since I don't use this program that much I've lost interest and I'm
satisfied with my quick hack (at least it prevents it from aborting).

> > + void status_reset_output_lock ()
> > + {
> > ++  pthread_mutex_trylock(&output_lock); /* XXX may already be unlocked */
> > +   pthread_mutex_unlock(&output_lock);



[update] comms/p5-Device-SerialPort

2012-05-13 Thread David Hill
update to 1.04

Index: Makefile
===
RCS file: /cvs/ports/comms/p5-Device-SerialPort/Makefile,v
retrieving revision 1.9
diff -u -p -r1.9 Makefile
--- Makefile3 Dec 2010 11:44:23 -   1.9
+++ Makefile13 May 2012 21:07:33 -
@@ -4,11 +4,9 @@ SHARED_ONLY=   Yes
 
 COMMENT=   talk to modem devices connected via serial port
 
-DISTNAME=  Device-SerialPort-1.003001
-REVISION=  2
+DISTNAME=  Device-SerialPort-1.04
 CATEGORIES=comms
 MODULES=   cpan
-USE_GROFF =Yes
 
 MAINTAINER=Todd T. Fries 
 
Index: distinfo
===
RCS file: /cvs/ports/comms/p5-Device-SerialPort/distinfo,v
retrieving revision 1.4
diff -u -p -r1.4 distinfo
--- distinfo30 Jul 2007 18:07:06 -  1.4
+++ distinfo13 May 2012 21:07:33 -
@@ -1,5 +1,5 @@
-MD5 (Device-SerialPort-1.003001.tar.gz) = umwjkjyKXGn8yXzzWuuFBA==
-RMD160 (Device-SerialPort-1.003001.tar.gz) = bJDtMGmNNsIFVtyNsSjVIOYGsIU=
-SHA1 (Device-SerialPort-1.003001.tar.gz) = Z45n0eLD0esF5ubMZJcYWCtoWqE=
-SHA256 (Device-SerialPort-1.003001.tar.gz) = 
gD1vEosHeMCHPoTL+iQ8HTfqDpx6tZB31+rSS55HFn4=
-SIZE (Device-SerialPort-1.003001.tar.gz) = 127200
+MD5 (Device-SerialPort-1.04.tar.gz) = gsaYFR+TTrKMZdGDjO59ng==
+RMD160 (Device-SerialPort-1.04.tar.gz) = KnDly68axmV1zQ9a77qZ+lB1toE=
+SHA1 (Device-SerialPort-1.04.tar.gz) = wuNMTLvzvFeMW3/SeQkGvApdTPA=
+SHA256 (Device-SerialPort-1.04.tar.gz) = 
05JWfLObTqYGwOCsr9jtcjIDEbmVM27OX878+bFQ6dc=
+SIZE (Device-SerialPort-1.04.tar.gz) = 98706



[update] audio/p5-MP4-Info

2012-05-13 Thread David Hill
fix reported bitrate

Index: Makefile
===
RCS file: /cvs/ports/audio/p5-MP4-Info/Makefile,v
retrieving revision 1.6
diff -u -p -r1.6 Makefile
--- Makefile3 Dec 2010 11:44:22 -   1.6
+++ Makefile13 May 2012 20:54:53 -
@@ -3,12 +3,10 @@
 COMMENT=   fetch info from MPEG-4 files
 
 MODULES=   cpan
-DISTNAME=  MP4-Info-1.12
-REVISION=  0
+DISTNAME=  MP4-Info-1.13
 CATEGORIES=audio
 
 MAINTAINER=Andreas Bihlmaier 
-USE_GROFF =Yes
 
 # perl
 PERMIT_PACKAGE_CDROM=  Yes
Index: distinfo
===
RCS file: /cvs/ports/audio/p5-MP4-Info/distinfo,v
retrieving revision 1.3
diff -u -p -r1.3 distinfo
--- distinfo5 Apr 2007 15:37:44 -   1.3
+++ distinfo13 May 2012 20:54:53 -
@@ -1,5 +1,5 @@
-MD5 (MP4-Info-1.12.tar.gz) = E50hdlUYX9NCxhcZO2vnMQ==
-RMD160 (MP4-Info-1.12.tar.gz) = nSazZMh5xwRxv7QFuxvW8ghJtLs=
-SHA1 (MP4-Info-1.12.tar.gz) = 9hCCPt0PWWwV+DHithPXNBW6d9Y=
-SHA256 (MP4-Info-1.12.tar.gz) = HaOXlEct4AFCFVPKk4r4ApFKlMY+aCGIcoN8rMvyBSI=
-SIZE (MP4-Info-1.12.tar.gz) = 133627
+MD5 (MP4-Info-1.13.tar.gz) = OfvIIlsB7L7PE/+eSrm4lg==
+RMD160 (MP4-Info-1.13.tar.gz) = l1KoloFTrrv59sAwwnBWuxrO8CQ=
+SHA1 (MP4-Info-1.13.tar.gz) = snEn1UfR7lyFMbbp0CJNZrZhFDY=
+SHA256 (MP4-Info-1.13.tar.gz) = VLRRFUSq6CV8GwNEbd4sjsa4Jf+R4I5c5e56sLJ5+2g=
+SIZE (MP4-Info-1.13.tar.gz) = 133648



[update] converters/p5-Convert-Base32

2012-05-13 Thread David Hill
trivial update to 0.06

Index: Makefile
===
RCS file: /cvs/ports/converters/p5-Convert-Base32/Makefile,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 Makefile
--- Makefile11 Mar 2011 13:40:20 -  1.1.1.1
+++ Makefile13 May 2012 20:49:54 -
@@ -2,7 +2,7 @@
 
 COMMENT =  encoding and decoding of base32 (RFC4648) strings
 
-DISTNAME = Convert-Base32-0.05
+DISTNAME = Convert-Base32-0.06
 
 CATEGORIES =   converters
 
Index: distinfo
===
RCS file: /cvs/ports/converters/p5-Convert-Base32/distinfo,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 distinfo
--- distinfo11 Mar 2011 13:40:20 -  1.1.1.1
+++ distinfo13 May 2012 20:49:54 -
@@ -1,5 +1,5 @@
-MD5 (Convert-Base32-0.05.tar.gz) = uuZAt5gdVZboZlpMKOd3tw==
-RMD160 (Convert-Base32-0.05.tar.gz) = NW2mI8XczOwc8hbjSAectExuOR4=
-SHA1 (Convert-Base32-0.05.tar.gz) = CbB+q6BInl6RLrIsF8rDkcqup9s=
-SHA256 (Convert-Base32-0.05.tar.gz) = 
/VqDLQL15qCOULqfxog0hpZy+F+PU2XMHWkNOwA8QyE=
-SIZE (Convert-Base32-0.05.tar.gz) = 4113
+MD5 (Convert-Base32-0.06.tar.gz) = 0plGdSWYmFDjoW+sC/bMOA==
+RMD160 (Convert-Base32-0.06.tar.gz) = HtuDqwcClVKGfc7lVrYw+0i0970=
+SHA1 (Convert-Base32-0.06.tar.gz) = X1CiB2GDAijJIj6Vphiz1hdIQus=
+SHA256 (Convert-Base32-0.06.tar.gz) = 
S6gsFnxB9FWqgoRzhyfkyUouvLHEznl/b9oHJFpkIRU=
+SIZE (Convert-Base32-0.06.tar.gz) = 4176



[update] security/p5-Crypt-Twofish

2012-05-13 Thread David Hill
trivial update to fix dependancy in Makefile

Index: Makefile
===
RCS file: /cvs/ports/security/p5-Crypt-Twofish/Makefile,v
retrieving revision 1.15
diff -u -p -r1.15 Makefile
--- Makefile3 Dec 2010 11:46:47 -   1.15
+++ Makefile13 May 2012 20:42:23 -
@@ -5,10 +5,8 @@ SHARED_ONLY=   Yes
 COMMENT=   module to implement the Twofish cipher
 
 MODULES=   cpan
-DISTNAME=  Crypt-Twofish-2.13
-REVISION=  1
+DISTNAME=  Crypt-Twofish-2.14
 CATEGORIES=security
-USE_GROFF =Yes
 
 MAINTAINER=Kevin Lo 
 
Index: distinfo
===
RCS file: /cvs/ports/security/p5-Crypt-Twofish/distinfo,v
retrieving revision 1.5
diff -u -p -r1.5 distinfo
--- distinfo6 Sep 2009 07:23:43 -   1.5
+++ distinfo13 May 2012 20:42:23 -
@@ -1,5 +1,5 @@
-MD5 (Crypt-Twofish-2.13.tar.gz) = fHWEi6LPkeBDj0d6PqgImQ==
-RMD160 (Crypt-Twofish-2.13.tar.gz) = kJkdXWi9Jy66XsOCMIPTzQae0v0=
-SHA1 (Crypt-Twofish-2.13.tar.gz) = BWCyJ6Gg3idVQSsJtWYIqeBAfXU=
-SHA256 (Crypt-Twofish-2.13.tar.gz) = 
CWKQg5G8KwDPexdzAXwJTVi4Na2gwXz74QRjESmZMyM=
-SIZE (Crypt-Twofish-2.13.tar.gz) = 13455
+MD5 (Crypt-Twofish-2.14.tar.gz) = KVwFnRj5pG3RS9dl/EZTGA==
+RMD160 (Crypt-Twofish-2.14.tar.gz) = PIDlzIaZP2Xy6Iad3cKDo/eiN2Y=
+SHA1 (Crypt-Twofish-2.14.tar.gz) = uu1Z/o3fBia38Pfsp7usx0uwQb8=
+SHA256 (Crypt-Twofish-2.14.tar.gz) = 
uVRozZqM9ksfz6+TehFO0ojkjwTez6H9tj0BMRLk2i0=
+SIZE (Crypt-Twofish-2.14.tar.gz) = 13505



Re: new: font/gohufont

2012-05-13 Thread Tobias Ulmer
On Sun, May 13, 2012 at 10:15:19PM +0200, Juan Francisco Cantero Hurtado wrote:
> On Sun, May 13, 2012 at 05:34:25PM +0200, Tobias Ulmer wrote:
> > Attached is my current favourite terminal font. It's pretty similar to
> > Terminus, but offers a 11px version that includes bold glyphs. Give it a
> > try :)
> > 
> > cat pkg/DESCR
> > Gohufont is a monospace bitmap font well suited for programming and
> > terminal use. It is intended to be very legible and offers very
> > discernable glyphs for all characters, including signs and symbols.
> 
> Hi. The homepage shows two versions: 11px and 14px. I'm testing the font
> on terminator but I only can use the 11px version. When I select "14px",
> the size of the font doesn't change.

Hi, I don't know about terminator, but both fonts are included. The
website buttons only change the screenshots, but the tarball has both
versions. There may be some confusion here because pt and px are
different things and freetype probably adds its own magic somewhere.

You can test with xfontsel, select "pxlsz" to verify both sizes are
available.

Tobias

> 
> 
> -- 
> Juan Francisco Cantero Hurtado http://juanfra.info
> 



[update] geo/p5-Geo-StreetAddress-US

2012-05-13 Thread David Hill
Update to 1.03.  Add RUN_DEPEND.

Index: Makefile
===
RCS file: /cvs/ports/geo/p5-Geo-StreetAddress-US/Makefile,v
retrieving revision 1.4
diff -u -p -r1.4 Makefile
--- Makefile24 May 2011 21:07:20 -  1.4
+++ Makefile13 May 2012 20:37:14 -
@@ -2,7 +2,7 @@
 
 COMMENT=   perl extension for parsing US street addresses
 MODULES=   cpan
-DISTNAME=  Geo-StreetAddress-US-1.01
+DISTNAME=  Geo-StreetAddress-US-1.03
 CATEGORIES=geo
 
 # Perl
@@ -13,5 +13,7 @@ PERMIT_PACKAGE_FTP=   Yes
 
 MODCPAN_EXAMPLES=  Yes
 MODCPAN_EXAMPLES_DIST= eg
+
+RUN_DEPENDS=   devel/p5-Class-Data-Inheritable
 
 .include 
Index: distinfo
===
RCS file: /cvs/ports/geo/p5-Geo-StreetAddress-US/distinfo,v
retrieving revision 1.2
diff -u -p -r1.2 distinfo
--- distinfo24 May 2011 21:07:20 -  1.2
+++ distinfo13 May 2012 20:37:14 -
@@ -1,5 +1,5 @@
-MD5 (Geo-StreetAddress-US-1.01.tar.gz) = iC8jy1iRxWn2CL1sk/kUFw==
-RMD160 (Geo-StreetAddress-US-1.01.tar.gz) = lh0iiw3Zrr9Ii2yuVZzVwGqkSIQ=
-SHA1 (Geo-StreetAddress-US-1.01.tar.gz) = A9kFGPsbVbP6vKfrwQnl4eKrra4=
-SHA256 (Geo-StreetAddress-US-1.01.tar.gz) = 
W+LH8mw9k2g/XpAMWUqxSR/d0EGE0RjUpi5DIAZqFpA=
-SIZE (Geo-StreetAddress-US-1.01.tar.gz) = 12596
+MD5 (Geo-StreetAddress-US-1.03.tar.gz) = Cjwqfev6HYUN0QuLu1Scng==
+RMD160 (Geo-StreetAddress-US-1.03.tar.gz) = P+gI3JUrDjr5xpSRt1Tl7p4P0+s=
+SHA1 (Geo-StreetAddress-US-1.03.tar.gz) = 4oan5A+pQN4NG8ycGBRJ0AqXIZw=
+SHA256 (Geo-StreetAddress-US-1.03.tar.gz) = 
81QuRZR7djzccY+RTsFdGwXbzqViNE+Ka4cKJfUEfB0=
+SIZE (Geo-StreetAddress-US-1.03.tar.gz) = 13827



[update] sysutils/p5-Proc-Wait3

2012-05-13 Thread David Hill
trivial update to 0.04;  perl LICENSE added.

Index: Makefile
===
RCS file: /cvs/ports/sysutils/p5-Proc-Wait3/Makefile,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 Makefile
--- Makefile5 Jan 2011 14:12:07 -   1.1.1.1
+++ Makefile13 May 2012 20:28:58 -
@@ -4,7 +4,7 @@ COMMENT =   perl extension for wait3 syst
 
 SHARED_ONLY =  Yes
 MODULES =  cpan
-DISTNAME = Proc-Wait3-0.03
+DISTNAME = Proc-Wait3-0.04
 CATEGORIES =   sysutils
 MAINTAINER =   Abel Abraham Camarillo Ojeda 
 
Index: distinfo
===
RCS file: /cvs/ports/sysutils/p5-Proc-Wait3/distinfo,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 distinfo
--- distinfo5 Jan 2011 14:12:07 -   1.1.1.1
+++ distinfo13 May 2012 20:28:58 -
@@ -1,5 +1,5 @@
-MD5 (Proc-Wait3-0.03.tar.gz) = r1s2Lz0dtK+MNElbY/M8kA==
-RMD160 (Proc-Wait3-0.03.tar.gz) = hPyMxRddDCwrK+KsssBQeHD3fLY=
-SHA1 (Proc-Wait3-0.03.tar.gz) = 7C5yLSyY7CdRg+4ja8x/U5sDgY0=
-SHA256 (Proc-Wait3-0.03.tar.gz) = d7rF8CdA+VkYuwj0cUKqHgi6us2FXPBxMham6Sqj6zY=
-SIZE (Proc-Wait3-0.03.tar.gz) = 2962
+MD5 (Proc-Wait3-0.04.tar.gz) = 2Hzl81V+uGv6W6+58uAo4w==
+RMD160 (Proc-Wait3-0.04.tar.gz) = hlvOgi/bfqZdm8vBNMiKLdhVupM=
+SHA1 (Proc-Wait3-0.04.tar.gz) = 7BrnqeayQ4hIw9aG/VRLW9RtIFw=
+SHA256 (Proc-Wait3-0.04.tar.gz) = 0Fair3daiA1HwNEL62D/IZUpGnmrSBuZwF5kASk8mEo=
+SIZE (Proc-Wait3-0.04.tar.gz) = 9701



Re: [update] devel/p5-Error

2012-05-13 Thread David Hill
On Sun, May 13, 2012 at 04:00:20PM +0200, Remi Pointel wrote:
:On 05/13/12 15:38, David Hill wrote:
:>Index: Makefile
:>===
:>RCS file: /cvs/ports/devel/p5-Error/Makefile,v
:>retrieving revision 1.11
:>diff -u -p -r1.11 Makefile
:>--- Makefile  3 Dec 2010 11:44:30 -   1.11
:>+++ Makefile  13 May 2012 13:37:08 -
:>@@ -3,10 +3,8 @@
:>  COMMENT=error/exception handling in an OO-ish way
:>
:>  MODULES=cpan
:>-DISTNAME=Error-0.17016
:>-REVISION=0
:>+DISTNAME=Error-0.17018
:>  CATEGORIES= devel
:>-USE_GROFF =  Yes
:>
:>  # perl
:>  PERMIT_PACKAGE_CDROM=   Yes
:
:Hello,
:
:I think we must add at least 2 regress depends.
:
:Are you ok with this diff?
:
:Cheers,
:
:Remi.
:
:

:Index: Makefile
:===
:RCS file: /cvs/ports/devel/p5-Error/Makefile,v
:retrieving revision 1.11
:diff -u -p -r1.11 Makefile
:--- Makefile   3 Dec 2010 11:44:30 -   1.11
:+++ Makefile   13 May 2012 13:59:14 -
:@@ -3,10 +3,8 @@
: COMMENT=  error/exception handling in an OO-ish way
: 
: MODULES=  cpan
:-DISTNAME= Error-0.17016
:-REVISION= 0
:+DISTNAME= Error-0.17018
: CATEGORIES=   devel
:-USE_GROFF =   Yes
: 
: # perl
: PERMIT_PACKAGE_CDROM= Yes
:@@ -17,5 +15,8 @@ PERMIT_DISTFILES_FTP=Yes
: CONFIGURE_STYLE=  modbuild
: 
: MODCPAN_EXAMPLES= Yes
:+
:+REGRESS_DEPENDS = devel/p5-Test-Pod \
:+  devel/p5-Test-Pod-Coverage
: 
: .include 
:Index: distinfo
:===
:RCS file: /cvs/ports/devel/p5-Error/distinfo,v
:retrieving revision 1.7
:diff -u -p -r1.7 distinfo
:--- distinfo   25 Oct 2010 11:05:32 -  1.7
:+++ distinfo   13 May 2012 13:59:14 -
:@@ -1,5 +1,5 @@
:-MD5 (Error-0.17016.tar.gz) = 7tzTxpcFaN0yCStTNDKO/w==
:-RMD160 (Error-0.17016.tar.gz) = wZsqIL1LjDM8epHGRE1HU4JG8+o=
:-SHA1 (Error-0.17016.tar.gz) = yGGtFehTO7v8bfuKmEyAw0YHK9I=
:-SHA256 (Error-0.17016.tar.gz) = 8BOjPOM/Mk1v9zygdPNKoT8EvOwR5/kcggwue14Zeao=
:-SIZE (Error-0.17016.tar.gz) = 20990
:+MD5 (Error-0.17018.tar.gz) = ETenu7lMlQiiJoxGdYMgfw==
:+RMD160 (Error-0.17018.tar.gz) = 6Adwf/7rLE1aI8pD026jwQHkjXw=
:+SHA1 (Error-0.17018.tar.gz) = luK9UWklz8RzUdKBEe3Ktkeya0U=
:+SHA256 (Error-0.17018.tar.gz) = GQtQ+3Zf+qa7k60B7ZC3JBQPQQoZoK+BOrlt+jr2arI=
:+SIZE (Error-0.17018.tar.gz) = 22129

Yes, this looks good.



Re: new: font/gohufont

2012-05-13 Thread Juan Francisco Cantero Hurtado
On Sun, May 13, 2012 at 05:34:25PM +0200, Tobias Ulmer wrote:
> Attached is my current favourite terminal font. It's pretty similar to
> Terminus, but offers a 11px version that includes bold glyphs. Give it a
> try :)
> 
> cat pkg/DESCR
> Gohufont is a monospace bitmap font well suited for programming and
> terminal use. It is intended to be very legible and offers very
> discernable glyphs for all characters, including signs and symbols.

Hi. The homepage shows two versions: 11px and 14px. I'm testing the font
on terminator but I only can use the 11px version. When I select "14px",
the size of the font doesn't change.


-- 
Juan Francisco Cantero Hurtado http://juanfra.info



Re: [patch] audio/vorbis-tools unlocks mutex twice

2012-05-13 Thread Antoine Jacoutot
On Sun, May 13, 2012 at 02:00:38PM +0200, Thomas Pfaff wrote:
> ogg123 in audio/vorbis-tools will abort if interrupted or it reaches
> the end of a file because it tries to unlock an already unlocked mutex.
> 
> I suppose the better way to fix this is to figure out why it tries to
> unlock the mutex twice and correct that, though I'm going to leave that
> to someone else if this quick fix is not satisfactory ;-)

I think this particular issue should be fixed, not worked around.


> Index: Makefile
> ===
> RCS file: /cvs/ports/audio/vorbis-tools/Makefile,v
> retrieving revision 1.43
> diff -u -p -r1.43 Makefile
> --- Makefile  29 Mar 2012 13:38:13 -  1.43
> +++ Makefile  13 May 2012 11:19:04 -
> @@ -3,6 +3,7 @@
>  COMMENT= play, encode, and manage Ogg Vorbis files
>  
>  DISTNAME=vorbis-tools-1.4.0
> +REVISION=0
>  CATEGORIES=  audio
>  HOMEPAGE=http://www.vorbis.com/
>  
> Index: patches/patch-ogg123_status_c
> ===
> RCS file: patches/patch-ogg123_status_c
> diff -N patches/patch-ogg123_status_c
> --- /dev/null 1 Jan 1970 00:00:00 -
> +++ patches/patch-ogg123_status_c 13 May 2012 11:19:04 -
> @@ -0,0 +1,11 @@
> +$OpenBSD$
> +--- ogg123/status.c.orig Wed Jan 27 05:14:11 2010
>  ogg123/status.c  Sun May 13 12:51:36 2012
> +@@ -339,6 +339,7 @@ void status_deinit ()
> + 
> + void status_reset_output_lock ()
> + {
> ++  pthread_mutex_trylock(&output_lock); /* XXX may already be unlocked */
> +   pthread_mutex_unlock(&output_lock);
> + }
> + 
> 

-- 
Antoine



new: font/gohufont

2012-05-13 Thread Tobias Ulmer
Attached is my current favourite terminal font. It's pretty similar to
Terminus, but offers a 11px version that includes bold glyphs. Give it a
try :)

cat pkg/DESCR
Gohufont is a monospace bitmap font well suited for programming and
terminal use. It is intended to be very legible and offers very
discernable glyphs for all characters, including signs and symbols.


gohufont.tar.gz
Description: application/tar-gz


mail/femail MESSAGE->README

2012-05-13 Thread Okan Demirmen
convert to pkg readmes, so info doesn't get lost.

ok?

Index: Makefile
===
RCS file: /home/open/cvs/ports/mail/femail/Makefile,v
retrieving revision 1.11
diff -u -p -r1.11 Makefile
--- Makefile20 Feb 2012 07:58:31 -  1.11
+++ Makefile13 May 2012 15:07:50 -
@@ -9,7 +9,7 @@ PKGNAME-main=   femail-${V}
 PKGNAME-chroot=femail-chroot-${V}
 CATEGORIES=mail
 
-REVISION-chroot=0
+REVISION-chroot=1
 
 HOMEPAGE=  http://bulabula.org/femail/
 
Index: pkg/MESSAGE-chroot
===
RCS file: pkg/MESSAGE-chroot
diff -N pkg/MESSAGE-chroot
--- pkg/MESSAGE-chroot  27 Mar 2009 18:28:59 -  1.2
+++ /dev/null   1 Jan 1970 00:00:00 -
@@ -1,8 +0,0 @@
-By default, femail will use `localhost' for smtphost.  Make sure to
-review FAQ Section 10.16 discussing name resolution with httpd(8)'s
-default chroot(2).
-
-Additionally, one may create a custom femail.conf; see femail(8).
-
-If you're using femail with PHP inside a chroot jail, be aware that
-PHP's built-in "mail" function uses popen(), which requires /bin/sh.
Index: pkg/PLIST-chroot
===
RCS file: /home/open/cvs/ports/mail/femail/pkg/PLIST-chroot,v
retrieving revision 1.3
diff -u -p -r1.3 PLIST-chroot
--- pkg/PLIST-chroot22 Mar 2011 09:45:51 -  1.3
+++ pkg/PLIST-chroot13 May 2012 15:06:28 -
@@ -5,3 +5,5 @@ usr/sbin/
 @mode 0555
 @sample usr/sbin/sendmail
 @mode
+@cwd ${LOCALBASE}/share/doc/pkg-readmes
+${FULLPKGNAME}
Index: pkg/README-chroot
===
RCS file: pkg/README-chroot
diff -N pkg/README-chroot
--- /dev/null   1 Jan 1970 00:00:00 -
+++ pkg/README-chroot   13 May 2012 14:50:06 -
@@ -0,0 +1,16 @@
+$OpenBSD$
+
++---
+| Running ${FULLPKGNAME} on OpenBSD
++---
+
+Setup with httpd from OpenBSD base system
+=
+By default, femail will use `localhost' for smtphost.  Make sure to
+review FAQ Section 10.16 discussing name resolution with httpd(8)'s
+default chroot(2).
+
+Additionally, one may create a custom femail.conf; see femail(8).
+
+If you're using femail with PHP inside a chroot jail, be aware that
+PHP's built-in "mail" function uses popen(), which requires /bin/sh.



Re: [update] devel/p5-Error

2012-05-13 Thread Remi Pointel

On 05/13/12 15:38, David Hill wrote:

Index: Makefile
===
RCS file: /cvs/ports/devel/p5-Error/Makefile,v
retrieving revision 1.11
diff -u -p -r1.11 Makefile
--- Makefile3 Dec 2010 11:44:30 -   1.11
+++ Makefile13 May 2012 13:37:08 -
@@ -3,10 +3,8 @@
  COMMENT=  error/exception handling in an OO-ish way

  MODULES=  cpan
-DISTNAME=  Error-0.17016
-REVISION=  0
+DISTNAME=  Error-0.17018
  CATEGORIES=   devel
-USE_GROFF =Yes

  # perl
  PERMIT_PACKAGE_CDROM= Yes


Hello,

I think we must add at least 2 regress depends.

Are you ok with this diff?

Cheers,

Remi.


Index: Makefile
===
RCS file: /cvs/ports/devel/p5-Error/Makefile,v
retrieving revision 1.11
diff -u -p -r1.11 Makefile
--- Makefile3 Dec 2010 11:44:30 -   1.11
+++ Makefile13 May 2012 13:59:14 -
@@ -3,10 +3,8 @@
 COMMENT=   error/exception handling in an OO-ish way
 
 MODULES=   cpan
-DISTNAME=  Error-0.17016
-REVISION=  0
+DISTNAME=  Error-0.17018
 CATEGORIES=devel
-USE_GROFF =Yes
 
 # perl
 PERMIT_PACKAGE_CDROM=  Yes
@@ -17,5 +15,8 @@ PERMIT_DISTFILES_FTP= Yes
 CONFIGURE_STYLE=   modbuild
 
 MODCPAN_EXAMPLES=  Yes
+
+REGRESS_DEPENDS =  devel/p5-Test-Pod \
+   devel/p5-Test-Pod-Coverage
 
 .include 
Index: distinfo
===
RCS file: /cvs/ports/devel/p5-Error/distinfo,v
retrieving revision 1.7
diff -u -p -r1.7 distinfo
--- distinfo25 Oct 2010 11:05:32 -  1.7
+++ distinfo13 May 2012 13:59:14 -
@@ -1,5 +1,5 @@
-MD5 (Error-0.17016.tar.gz) = 7tzTxpcFaN0yCStTNDKO/w==
-RMD160 (Error-0.17016.tar.gz) = wZsqIL1LjDM8epHGRE1HU4JG8+o=
-SHA1 (Error-0.17016.tar.gz) = yGGtFehTO7v8bfuKmEyAw0YHK9I=
-SHA256 (Error-0.17016.tar.gz) = 8BOjPOM/Mk1v9zygdPNKoT8EvOwR5/kcggwue14Zeao=
-SIZE (Error-0.17016.tar.gz) = 20990
+MD5 (Error-0.17018.tar.gz) = ETenu7lMlQiiJoxGdYMgfw==
+RMD160 (Error-0.17018.tar.gz) = 6Adwf/7rLE1aI8pD026jwQHkjXw=
+SHA1 (Error-0.17018.tar.gz) = luK9UWklz8RzUdKBEe3Ktkeya0U=
+SHA256 (Error-0.17018.tar.gz) = GQtQ+3Zf+qa7k60B7ZC3JBQPQQoZoK+BOrlt+jr2arI=
+SIZE (Error-0.17018.tar.gz) = 22129


[update] security/p5-Digest-BubbleBabble

2012-05-13 Thread David Hill
Index: Makefile
===
RCS file: /cvs/ports/security/p5-Digest-BubbleBabble/Makefile,v
retrieving revision 1.6
diff -u -p -r1.6 Makefile
--- Makefile3 Dec 2010 11:46:47 -   1.6
+++ Makefile13 May 2012 13:42:15 -
@@ -3,10 +3,8 @@
 COMMENT=   module to bubble-babble fingerprints
 
 MODULES=   cpan
-DISTNAME=  Digest-BubbleBabble-0.01
-REVISION=  0
+DISTNAME=  Digest-BubbleBabble-0.02
 CATEGORIES=security
-USE_GROFF =Yes
 
 MAINTAINER=Peter Stromberg 
 
Index: distinfo
===
RCS file: /cvs/ports/security/p5-Digest-BubbleBabble/distinfo,v
retrieving revision 1.3
diff -u -p -r1.3 distinfo
--- distinfo5 Apr 2007 17:26:08 -   1.3
+++ distinfo13 May 2012 13:42:15 -
@@ -1,5 +1,5 @@
-MD5 (Digest-BubbleBabble-0.01.tar.gz) = Do7z3oKukJz67d+CaRQMFw==
-RMD160 (Digest-BubbleBabble-0.01.tar.gz) = pOXngVctj6YazahZ5K8WU5TLWjo=
-SHA1 (Digest-BubbleBabble-0.01.tar.gz) = ygzfvKoqEKemF7+uhxQRq2ePFfs=
-SHA256 (Digest-BubbleBabble-0.01.tar.gz) = 
rJVSEI4bCQMa1V3I/gDCoHcrfPQ5cinTKDZhS1ViznU=
-SIZE (Digest-BubbleBabble-0.01.tar.gz) = 2468
+MD5 (Digest-BubbleBabble-0.02.tar.gz) = TX7dWwqQTbgZSqZg1QL74A==
+RMD160 (Digest-BubbleBabble-0.02.tar.gz) = n26LGySx8N+EryHynpkGAv9uF+U=
+SHA1 (Digest-BubbleBabble-0.02.tar.gz) = zLEBoR5u5niQhPVmO9jYfG4ggW8=
+SHA256 (Digest-BubbleBabble-0.02.tar.gz) = 
gM+y0uQ9b3lABlhgBWfSonCxRbTu9a6limaVd4giXAA=
+SIZE (Digest-BubbleBabble-0.02.tar.gz) = 45661



[update] security/p5-Digest-HMAC

2012-05-13 Thread David Hill

Index: Makefile
===
RCS file: /cvs/ports/security/p5-Digest-HMAC/Makefile,v
retrieving revision 1.11
diff -u -p -r1.11 Makefile
--- Makefile3 Dec 2010 11:46:47 -   1.11
+++ Makefile13 May 2012 13:39:47 -
@@ -3,10 +3,8 @@
 COMMENT=   interface to HMAC Message-Digest Algorithms
 
 MODULES=   cpan
-DISTNAME=  Digest-HMAC-1.02
-REVISION=  0
+DISTNAME=  Digest-HMAC-1.03
 CATEGORIES=security
-USE_GROFF =Yes
 
 MAINTAINER=Kevin Lo 
 
Index: distinfo
===
RCS file: /cvs/ports/security/p5-Digest-HMAC/distinfo,v
retrieving revision 1.4
diff -u -p -r1.4 distinfo
--- distinfo13 Apr 2010 10:04:24 -  1.4
+++ distinfo13 May 2012 13:39:47 -
@@ -1,5 +1,5 @@
-MD5 (Digest-HMAC-1.02.tar.gz) = ZMSyR9g81k7DKqIr9Ypwmw==
-RMD160 (Digest-HMAC-1.02.tar.gz) = 8gAtGxtZXo8D2FaLf/S5ioFzBSw=
-SHA1 (Digest-HMAC-1.02.tar.gz) = NZzDbHJSv7mk237I3kwB7toXZ6E=
-SHA256 (Digest-HMAC-1.02.tar.gz) = 0AQ7L7XTi1ccEa+7QkoeaVKw8jDaaFJbFOhDWDD9AvE=
-SIZE (Digest-HMAC-1.02.tar.gz) = 6989
+MD5 (Digest-HMAC-1.03.tar.gz) = 5qXW9VLaFurLUVfqQ2n/nQ==
+RMD160 (Digest-HMAC-1.03.tar.gz) = dvEMCkSX0ajA+vaF7Q3X4/hugYo=
+SHA1 (Digest-HMAC-1.03.tar.gz) = s/kxAyqajZukLRxdRoSwbmDhg8c=
+SHA256 (Digest-HMAC-1.03.tar.gz) = O8csbT/xRNc677kOmnjTNhLVjPHNFjHs+4mFupbaSlk=
+SIZE (Digest-HMAC-1.03.tar.gz) = 7251



[update] devel/p5-Error

2012-05-13 Thread David Hill
Index: Makefile
===
RCS file: /cvs/ports/devel/p5-Error/Makefile,v
retrieving revision 1.11
diff -u -p -r1.11 Makefile
--- Makefile3 Dec 2010 11:44:30 -   1.11
+++ Makefile13 May 2012 13:37:08 -
@@ -3,10 +3,8 @@
 COMMENT=   error/exception handling in an OO-ish way
 
 MODULES=   cpan
-DISTNAME=  Error-0.17016
-REVISION=  0
+DISTNAME=  Error-0.17018
 CATEGORIES=devel
-USE_GROFF =Yes
 
 # perl
 PERMIT_PACKAGE_CDROM=  Yes
Index: distinfo
===
RCS file: /cvs/ports/devel/p5-Error/distinfo,v
retrieving revision 1.7
diff -u -p -r1.7 distinfo
--- distinfo25 Oct 2010 11:05:32 -  1.7
+++ distinfo13 May 2012 13:37:08 -
@@ -1,5 +1,5 @@
-MD5 (Error-0.17016.tar.gz) = 7tzTxpcFaN0yCStTNDKO/w==
-RMD160 (Error-0.17016.tar.gz) = wZsqIL1LjDM8epHGRE1HU4JG8+o=
-SHA1 (Error-0.17016.tar.gz) = yGGtFehTO7v8bfuKmEyAw0YHK9I=
-SHA256 (Error-0.17016.tar.gz) = 8BOjPOM/Mk1v9zygdPNKoT8EvOwR5/kcggwue14Zeao=
-SIZE (Error-0.17016.tar.gz) = 20990
+MD5 (Error-0.17018.tar.gz) = ETenu7lMlQiiJoxGdYMgfw==
+RMD160 (Error-0.17018.tar.gz) = 6Adwf/7rLE1aI8pD026jwQHkjXw=
+SHA1 (Error-0.17018.tar.gz) = luK9UWklz8RzUdKBEe3Ktkeya0U=
+SHA256 (Error-0.17018.tar.gz) = GQtQ+3Zf+qa7k60B7ZC3JBQPQQoZoK+BOrlt+jr2arI=
+SIZE (Error-0.17018.tar.gz) = 22129



[patch] audio/vorbis-tools unlocks mutex twice

2012-05-13 Thread Thomas Pfaff
ogg123 in audio/vorbis-tools will abort if interrupted or it reaches
the end of a file because it tries to unlock an already unlocked mutex.

I suppose the better way to fix this is to figure out why it tries to
unlock the mutex twice and correct that, though I'm going to leave that
to someone else if this quick fix is not satisfactory ;-)

Index: Makefile
===
RCS file: /cvs/ports/audio/vorbis-tools/Makefile,v
retrieving revision 1.43
diff -u -p -r1.43 Makefile
--- Makefile29 Mar 2012 13:38:13 -  1.43
+++ Makefile13 May 2012 11:19:04 -
@@ -3,6 +3,7 @@
 COMMENT=   play, encode, and manage Ogg Vorbis files
 
 DISTNAME=  vorbis-tools-1.4.0
+REVISION=  0
 CATEGORIES=audio
 HOMEPAGE=  http://www.vorbis.com/
 
Index: patches/patch-ogg123_status_c
===
RCS file: patches/patch-ogg123_status_c
diff -N patches/patch-ogg123_status_c
--- /dev/null   1 Jan 1970 00:00:00 -
+++ patches/patch-ogg123_status_c   13 May 2012 11:19:04 -
@@ -0,0 +1,11 @@
+$OpenBSD$
+--- ogg123/status.c.orig   Wed Jan 27 05:14:11 2010
 ogg123/status.cSun May 13 12:51:36 2012
+@@ -339,6 +339,7 @@ void status_deinit ()
+ 
+ void status_reset_output_lock ()
+ {
++  pthread_mutex_trylock(&output_lock); /* XXX may already be unlocked */
+   pthread_mutex_unlock(&output_lock);
+ }
+ 



Re: Combining ports built with PCC and GCC

2012-05-13 Thread Brett
On Thu, 10 May 2012 13:15:03 -0700
Matthew Dempsky  wrote:

> On Tue, May 8, 2012 at 7:43 PM, Brett  wrote:
> > I am wondering if this will work ok the other way round?
> 
> In theory, GCC and PCC should implement the same ABI and so it should
> work either way.
> 
> In practice, good luck.

I tried this and the required luck Matthew Dempsky mentions was nowhere to be 
found. Basically I ran my usual script but with CC as PCC. Whatever did not 
build with PCC I then built with GCC, but I got a lot of failed builds (eg 
Sylpheed did not build with GCC once PPC ports had been built).

So basically to mix programs built with both compilers the results are a lot 
better if everything that requires GCC is built first.

A compiler more minimal than the "dancing hippo" 
[http://gcc.gnu.org/ml/gcc/2005-11/msg00918.html] is good. I still see commits 
happening on PCC mailing list, hopefully one day it will build everything.



Re: [NEW] net/nagios/check_pf

2012-05-13 Thread Julien Dhaille
Hi.
Another modifications needed ? Is it okay ?
Greetings

-- 
Julien