Automobilismo?

2012-05-25 Thread Adalberto Calixto
d358020e-bb4b-4200-9f14-524b845b0dd61d981040-dbd7-4226-85bf-27cfe1a0da5c15
Todo conteúdo

Re: new: www/haserl

2012-05-25 Thread James Turner
On Fri, May 25, 2012 at 06:58:26PM -0400, James Turner wrote:
> On Fri, May 25, 2012 at 05:41:55PM -0400, James Turner wrote:
> > Attached is a new port for haserl-0.9.29. Tested on amd64. Thanks.
> > 
> 
> Updated port to use MODLUA_WANTLIB and MODLUA_LIB_DEPENDS.
> 

Alright last time ... attached is another update that adds a static
flavor. I figure this is suppose to be used with apache/nginx might as
well make it easier. Thanks.

-- 
James Turner
ja...@calminferno.net


haserl.tar
Description: Unix tar archive


Re: new: www/haserl

2012-05-25 Thread James Turner
On Fri, May 25, 2012 at 05:41:55PM -0400, James Turner wrote:
> Attached is a new port for haserl-0.9.29. Tested on amd64. Thanks.
> 
> Information for inst:haserl-0.9.29
> 
> Comment:
> cgi scripting program for embedded environments
> 
> Description:
> Haserl is a small cgi wrapper that allows "PHP" style cgi programming,
> but uses a UNIX sh-like shell or Lua as the programming language. It is
> very small, so it can be used in embedded environments, or where
> something like PHP is too big.
> 
> Maintainer: James Turner 
> 
> WWW: http://haserl.sourceforge.net
> 
> -- 
> James Turner
> ja...@calminferno.net

Updated port to use MODLUA_WANTLIB and MODLUA_LIB_DEPENDS.

-- 
James Turner
ja...@calminferno.net


haserl.tar
Description: Unix tar archive


new: www/haserl

2012-05-25 Thread James Turner
Attached is a new port for haserl-0.9.29. Tested on amd64. Thanks.

Information for inst:haserl-0.9.29

Comment:
cgi scripting program for embedded environments

Description:
Haserl is a small cgi wrapper that allows "PHP" style cgi programming,
but uses a UNIX sh-like shell or Lua as the programming language. It is
very small, so it can be used in embedded environments, or where
something like PHP is too big.

Maintainer: James Turner 

WWW: http://haserl.sourceforge.net

-- 
James Turner
ja...@calminferno.net


haserl.tar
Description: Unix tar archive


Bulk build test for mbsnrtowcs() and wcsnrtombs()?

2012-05-25 Thread Matthew Dempsky
Diff below adds mbsnrtowcs() and wcsnrtombs(), which are new POSIX
2008 functions.  I'd appreciate if someone could run this through a
bulk build and let me know if anything breaks or misbehaves.

Thanks!


Index: include/wchar.h
===
RCS file: /home/mdempsky/anoncvs/cvs/src/include/wchar.h,v
retrieving revision 1.22
diff -u -p -r1.22 wchar.h
--- include/wchar.h 5 Jan 2012 20:37:50 -   1.22
+++ include/wchar.h 25 May 2012 06:01:50 -
@@ -158,6 +158,11 @@ unsigned long int wcstoul(const wchar_t 
 wchar_t*wcsdup(const wchar_t *);
 int wcscasecmp(const wchar_t *, const wchar_t *);
 int wcsncasecmp(const wchar_t *, const wchar_t *, size_t);
+
+size_t mbsnrtowcs(wchar_t * __restrict, const char ** __restrict, size_t,
+size_t, mbstate_t * __restrict);
+size_t wcsnrtombs(char * __restrict, const wchar_t ** __restrict, size_t,
+size_t, mbstate_t * __restrict);
 #endif
 
 #if __ISO_C_VISIBLE >= 1999
Index: lib/libc/locale/multibyte_citrus.c
===
RCS file: /home/mdempsky/anoncvs/cvs/src/lib/libc/locale/multibyte_citrus.c,v
retrieving revision 1.1
diff -u -p -r1.1 multibyte_citrus.c
--- lib/libc/locale/multibyte_citrus.c  27 Jul 2010 16:59:04 -  1.1
+++ lib/libc/locale/multibyte_citrus.c  25 May 2012 16:45:00 -
@@ -30,6 +30,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 
 #include "citrus_ctype.h"
@@ -65,7 +66,19 @@ mbrtowc(wchar_t *pwc, const char *s, siz
 }
 
 size_t
-mbsrtowcs(wchar_t *pwcs, const char **s, size_t n, mbstate_t *ps)
+mbsrtowcs(wchar_t *dst, const char **src, size_t len, mbstate_t *ps)
+{
+   static mbstate_t mbs;
+   struct _citrus_ctype_rec *cc;
+
+   if (ps == NULL)
+   ps = &mbs;
+   return (mbsnrtowcs(dst, src, SIZE_MAX, len, ps));
+}
+
+size_t
+mbsnrtowcs(wchar_t *dst, const char **src, size_t nmc, size_t len,
+mbstate_t *ps)
 {
static mbstate_t mbs;
struct _citrus_ctype_rec *cc;
@@ -73,7 +86,8 @@ mbsrtowcs(wchar_t *pwcs, const char **s,
if (ps == NULL)
ps = &mbs;
cc = _CurrentRuneLocale->rl_citrus_ctype;
-   return (*cc->cc_ops->co_mbsrtowcs)(pwcs, s, n, _ps_to_private(ps));
+   return (*cc->cc_ops->co_mbsnrtowcs)(dst, src, nmc, len,
+   _ps_to_private(ps));
 }
 
 size_t
@@ -89,7 +103,18 @@ wcrtomb(char *s, wchar_t wc, mbstate_t *
 }
 
 size_t
-wcsrtombs(char *s, const wchar_t **ppwcs, size_t n, mbstate_t *ps)
+wcsrtombs(char *dst, const wchar_t **src, size_t len, mbstate_t *ps)
+{
+   static mbstate_t mbs;
+
+   if (ps == NULL)
+   ps = &mbs;
+   return (wcsnrtombs(dst, src, SIZE_MAX, len, ps));
+}
+
+size_t
+wcsnrtombs(char *dst, const wchar_t **src, size_t nwc, size_t len,
+mbstate_t *ps)
 {
static mbstate_t mbs;
struct _citrus_ctype_rec *cc;
@@ -97,5 +122,6 @@ wcsrtombs(char *s, const wchar_t **ppwcs
if (ps == NULL)
ps = &mbs;
cc = _CurrentRuneLocale->rl_citrus_ctype;
-   return (*cc->cc_ops->co_wcsrtombs)(s, ppwcs, n, _ps_to_private(ps));
+   return (*cc->cc_ops->co_wcsnrtombs)(dst, src, nwc, len,
+   _ps_to_private(ps));
 }
Index: lib/libc/citrus/citrus_ctype_local.h
===
RCS file: /home/mdempsky/anoncvs/cvs/src/lib/libc/citrus/citrus_ctype_local.h,v
retrieving revision 1.2
diff -u -p -r1.2 citrus_ctype_local.h
--- lib/libc/citrus/citrus_ctype_local.h27 Jul 2010 16:59:03 -  
1.2
+++ lib/libc/citrus/citrus_ctype_local.h25 May 2012 01:36:32 -
@@ -36,43 +36,45 @@ size_t  _citrus_##_e_##_ctype_mbrtowc(wch
  const char * __restrict, size_t,  \
  void * __restrict);   \
 int_citrus_##_e_##_ctype_mbsinit(const void * __restrict); \
-size_t _citrus_##_e_##_ctype_mbsrtowcs(wchar_t * __restrict,   \
-   const char ** __restrict,   \
-   size_t, void * __restrict); \
+size_t _citrus_##_e_##_ctype_mbsnrtowcs(wchar_t * __restrict,  \
+const char ** __restrict,  \
+size_t, size_t,\
+void * __restrict);\
 size_t _citrus_##_e_##_ctype_wcrtomb(char * __restrict, wchar_t,   \
  void * __restrict);   \
-size_t _citrus_##_e_##_ctype_wcsrtombs(char * __restrict,  \
-   const wchar_t ** __restrict,\
-   size_t, void * __restrict); \
+size_t _citrus_##_e_##_ctype_wcsnrtombs(char * __restrict, \
+const wchar_t ** __rest

UPDATE: textproc/sphinx

2012-05-25 Thread Giovanni Bechis
Long overdue update to latest version, many improvements and bug fixes.
Comments ? Ok ?
 Cheers
  Giovanni
Index: Makefile
===
RCS file: /cvs/ports/textproc/sphinx/Makefile,v
retrieving revision 1.9
diff -u -p -r1.9 Makefile
--- Makefile16 Nov 2011 15:56:37 -  1.9
+++ Makefile25 May 2012 16:35:58 -
@@ -2,8 +2,9 @@
 
 COMMENT =  free open-source SQL full-text search engine
 
-DISTNAME = sphinx-0.9.8.1
-REVISION = 4
+VERSION =  2.0.4
+DISTNAME = sphinx-${VERSION}-release
+PKGNAME =  sphinx-${VERSION}
 CATEGORIES =   textproc
 
 HOMEPAGE = http://www.sphinxsearch.com/
@@ -16,14 +17,14 @@ PERMIT_PACKAGE_FTP= Yes
 PERMIT_DISTFILES_CDROM=Yes
 PERMIT_DISTFILES_FTP=  Yes
 
-MASTER_SITES = ${HOMEPAGE}/downloads/
+MASTER_SITES = ${HOMEPAGE}/files/
 
 MODULES =  converters/libiconv lang/php
 
 MODPHP_BUILDDEP=No
 MODPHP_RUNDEP=No
 
-WANTLIB =  c expat m stdc++
+WANTLIB =  c expat iodbc m pthread stdc++
 
 CONFIGURE_STYLE = gnu
 CONFIGURE_ARGS = --with-mysql
@@ -33,6 +34,8 @@ CONFIGURE_ENV =   CPPFLAGS="-I${LOCALBASE}
 FLAVORS =  pgsql
 FLAVOR ?=
 
+LIB_DEPENDS =  databases/iodbc
+
 .if ${FLAVOR:L:Mpgsql}
 CONFIGURE_ARGS +=--with-pgsql \
--without-mysql
@@ -47,6 +50,7 @@ WANTLIB +=crypto ssl z mysqlclient
 REGRESS_IS_INTERACTIVE=Yes
 REGRESS_DEPENDS=lang/php/${MODPHP_VERSION},-mysql \
lang/php/${MODPHP_VERSION},-pdo_mysql
+MAKE_ENV=  MODPHP_BIN=${MODPHP_BIN}
 
 post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/sphinx
Index: distinfo
===
RCS file: /cvs/ports/textproc/sphinx/distinfo,v
retrieving revision 1.2
diff -u -p -r1.2 distinfo
--- distinfo22 Mar 2009 15:53:21 -  1.2
+++ distinfo25 May 2012 16:35:58 -
@@ -1,5 +1,5 @@
-MD5 (sphinx-0.9.8.1.tar.gz) = QooU30H7Ql5mTZ4tYXjANw==
-RMD160 (sphinx-0.9.8.1.tar.gz) = qyv+5MrVUiF+EyRJx91rEHHtW8k=
-SHA1 (sphinx-0.9.8.1.tar.gz) = 7tTG9bMU+WXBnMqK69C22EfNNfk=
-SHA256 (sphinx-0.9.8.1.tar.gz) = 72mytSOBFz2pK/Lfed/IxSccSz8VbDVrtO+CygNdwBM=
-SIZE (sphinx-0.9.8.1.tar.gz) = 949660
+MD5 (sphinx-2.0.4-release.tar.gz) = faTfPfPeyyTYxvuPR94dPQ==
+RMD160 (sphinx-2.0.4-release.tar.gz) = kOtF9acDkR6pN51DJZwXI+RjZAI=
+SHA1 (sphinx-2.0.4-release.tar.gz) = FoeU3PtGRKwC3M6GPASzUTmbCGM=
+SHA256 (sphinx-2.0.4-release.tar.gz) = 
Q8S2KUnY+9K2upPiDLDzXBT0KL5QGvR+daPvcT76KIY=
+SIZE (sphinx-2.0.4-release.tar.gz) = 1938089
Index: patches/patch-Makefile_in
===
RCS file: /cvs/ports/textproc/sphinx/patches/patch-Makefile_in,v
retrieving revision 1.2
diff -u -p -r1.2 patch-Makefile_in
--- patches/patch-Makefile_in   22 Mar 2009 15:53:21 -  1.2
+++ patches/patch-Makefile_in   25 May 2012 16:35:58 -
@@ -1,27 +1,22 @@
 $OpenBSD: patch-Makefile_in,v 1.2 2009/03/22 15:53:21 jasper Exp $
 Makefile.in.orig   Sun Jun  8 10:57:36 2008
-+++ Makefile.inFri Mar 20 12:04:00 2009
-@@ -239,12 +239,12 @@ sphinx-min.conf.dist: $(top_builddir)/config.status $(
- uninstall-info-am:
+--- Makefile.in.orig   Sat Jun 11 16:19:49 2011
 Makefile.inFri May 25 17:30:02 2012
+@@ -288,15 +288,15 @@ sphinx-min.conf.dist: $(top_builddir)/config.status $(
+   cd $(top_builddir) && $(SHELL) ./config.status $@
  install-sysconfDATA: $(sysconf_DATA)
@$(NORMAL_INSTALL)
--  test -z "$(sysconfdir)" || $(mkdir_p) "$(DESTDIR)$(sysconfdir)"
-+  test -z "$(datadir)/examples/sphinx" || $(mkdir_p) 
"$(DESTDIR)$(datadir)/examples/sphinx"
-   @list='$(sysconf_DATA)'; for p in $$list; do \
+-  test -z "$(sysconfdir)" || $(MKDIR_P) "$(DESTDIR)$(sysconfdir)"
++  test -z "$(datadir)/examples/sphinx" || $(MKDIR_P) 
"$(DESTDIR)$(datadir)/examples/sphinx"
+   @list='$(sysconf_DATA)'; test -n "$(sysconfdir)" || list=; \
+   for p in $$list; do \
  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
- f=$(am__strip_dir) \
--echo " $(sysconfDATA_INSTALL) '$$d$$p' 
'$(DESTDIR)$(sysconfdir)/$$f'"; \
--$(sysconfDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(sysconfdir)/$$f"; \
-+echo " $(sysconfDATA_INSTALL) '$$d$$p' 
'$(DESTDIR)$(datadir)/examples/sphinx/$$f'"; \
-+$(sysconfDATA_INSTALL) "$$d$$p" 
"$(DESTDIR)$(datadir)/examples/sphinx/$$f"; \
+ echo "$$d$$p"; \
+   done | $(am__base_list) | \
+   while read files; do \
+-echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(sysconfdir)'"; \
+-$(INSTALL_DATA) $$files "$(DESTDIR)$(sysconfdir)" || exit $$?; \
++echo " $(INSTALL_DATA) $$files 
'$(DESTDIR)$(datadir)/examples/sphinx/'"; \
++$(INSTALL_DATA) $$files "$(DESTDIR)$(datadir)/examples/sphinx/" || 
exit $$?; \
done
  
  uninstall-sysconfDATA:
-@@ -619,7 +619,6 @@ uninstall-info: uninstall-info-recursive
- 
- 
- install-data-hook:
--  mkdir -p $(DESTDIR)$(loc

update x11/fltk

2012-05-25 Thread Pascal Stumpf
Update to latest version, eliminate groff, give more accurate license,
use SUBST_CMD instead of perl and fix version reported by fltk-config.

graphics/aqsis and x11/flwm need patches to build (attached).  Haven't
yet tested palm/pose though (i386 only).

Maintainer doesn't seem to be active any more.


Index: Makefile
===
RCS file: /cvs/ports/x11/fltk/Makefile,v
retrieving revision 1.41
diff -u -p -r1.41 Makefile
--- Makefile22 Nov 2010 08:36:56 -  1.41
+++ Makefile25 May 2012 10:30:40 -
@@ -2,29 +2,28 @@
 
 COMMENT=   Fast-Light Tool Kit
 
-VER=   1.1.7
-DISTNAME=  fltk-${VER}
-REVISION=  2
+VER=   1.3.0
+DISTNAME=  fltk-${VER}-source
+PKGNAME=   fltk-${VER}
 
 CATEGORIES=x11
-SHARED_LIBS=   fltk6.0 \
-   fltk_forms  6.0 \
-   fltk_gl 6.0 \
-   fltk_images 6.0
+SHARED_LIBS=   fltk7.0 \
+   fltk_forms  7.0 \
+   fltk_gl 7.0 \
+   fltk_images 7.0
 
 HOMEPAGE=  http://www.fltk.org/
 
 MAINTAINER=Peter Stromberg 
 
-# LGPL
+# LGPLv2 with exceptions (see COPYING)
 PERMIT_PACKAGE_CDROM=  Yes
 PERMIT_PACKAGE_FTP=Yes
 PERMIT_DISTFILES_CDROM=Yes
 PERMIT_DISTFILES_FTP=  Yes
 
-WANTLIB += X11 Xau Xdmcp Xext c m stdc++ z jpeg png pthread
-
-DISTFILES= ${DISTNAME}-source${EXTRACT_SUFX}
+WANTLIB += X11 Xau Xdmcp Xext Xft Xinerama c fontconfig jpeg m
+WANTLIB += png pthread stdc++ z
 
 MASTER_SITES=  ftp://ftp.funet.fi/pub/mirrors/ftp.easysw.com/pub/fltk/${VER}/ \

ftp://ftp.rz.tu-bs.de/pub/mirror/ftp.easysw.com/ftp/pub/fltk/${VER}/ \
@@ -39,7 +38,6 @@ LIB_DEPENDS=  graphics/jpeg \
graphics/png
 
 NO_REGRESS=Yes
-USE_GROFF =Yes
 CONFIGURE_STYLE=autoconf no-autoheader
 AUTOCONF_VERSION=2.59
 CONFIGURE_ARGS=${CONFIGURE_SHARED} \
@@ -48,15 +46,14 @@ CONFIGURE_ENV=  CPPFLAGS="-I${LOCALBASE}/
CFLAGS="${CFLAGS} -I${LOCALBASE}/include" \
CXXFLAGS="${CXXFLAGS} -I${LOCALBASE}/include" \
LIBS="-L${LOCALBASE}/lib" \
-   FL_MAJOR_VERSION=${LIBfltk_VERSION:R} \
-   FL_MINOR_VERSION=${LIBfltk_VERSION:E} \
-   FL_PATCH_VERSION=0
+   LIBfltk_VERSION="${LIBfltk_VERSION}"
 .for n v in ${SHARED_LIBS}
 MAKE_ENV+= LIB$n_VERSION=${LIB$n_VERSION}
 .endfor
 
+WRKDIST=   ${WRKDIR}/fltk-${VER}
+
 pre-build:
-   perl -pi -e "s,%%SYSCONFDIR%%,${SYSCONFDIR}," \
-   ${WRKSRC}/src/Fl_Preferences.cxx
+   ${SUBST_CMD} ${WRKSRC}/src/Fl_Preferences.cxx
 
 .include 
Index: distinfo
===
RCS file: /cvs/ports/x11/fltk/distinfo,v
retrieving revision 1.10
diff -u -p -r1.10 distinfo
--- distinfo5 Apr 2007 17:36:19 -   1.10
+++ distinfo25 May 2012 10:30:40 -
@@ -1,5 +1,5 @@
-MD5 (fltk-1.1.7-source.tar.gz) = 7EjJb64FiVbm5cnBzaYVfQ==
-RMD160 (fltk-1.1.7-source.tar.gz) = 4mSPjQLTpnOcuUVZQKTOvpwBqnc=
-SHA1 (fltk-1.1.7-source.tar.gz) = P4pkyRrkZT4TAFZd1njrbbSAVbo=
-SHA256 (fltk-1.1.7-source.tar.gz) = 
jWCWJm8TPPQOmK7FLaFehJ1qytQjW2bagnmJ+oLGzC0=
-SIZE (fltk-1.1.7-source.tar.gz) = 2517351
+MD5 (fltk-1.3.0-source.tar.gz) = RNXXugav3TbqF9prS3A8ow==
+RMD160 (fltk-1.3.0-source.tar.gz) = 3qHrQq4bge+iKlQZiVYhE2filFo=
+SHA1 (fltk-1.3.0-source.tar.gz) = cg8oBL5hMuuumQnU503tzACznSU=
+SHA256 (fltk-1.3.0-source.tar.gz) = 
mQZ2gIKUzqTMo96DOtWl3ggHPBG2ZTVtTs810iU1shw=
+SIZE (fltk-1.3.0-source.tar.gz) = 4111004
Index: patches/patch-Makefile
===
RCS file: /cvs/ports/x11/fltk/patches/patch-Makefile,v
retrieving revision 1.4
diff -u -p -r1.4 patch-Makefile
--- patches/patch-Makefile  19 Oct 2006 09:41:32 -  1.4
+++ patches/patch-Makefile  25 May 2012 10:30:40 -
@@ -1,12 +1,12 @@
 $OpenBSD: patch-Makefile,v 1.4 2006/10/19 09:41:32 wilfried Exp $
 Makefile.orig  Sun Jan 15 19:36:16 2006
-+++ Makefile   Thu Oct 19 10:43:24 2006
+--- Makefile.orig  Tue Feb 15 16:29:03 2011
 Makefile   Fri May 25 01:03:08 2012
 @@ -27,7 +27,7 @@
  
  include makeinclude
  
--DIRS  =   $(IMAGEDIRS) src fluid test documentation
-+DIRS  =   $(IMAGEDIRS) src fluid documentation
+-DIRS = $(IMAGEDIRS) src $(CAIRODIR) fluid test documentation
++DIRS = $(IMAGEDIRS) src $(CAIRODIR) fluid documentation
  
- all: makeinclude
+ all: makeinclude fltk-config
for dir in $(DIRS); do\
Index: patches/patch-configure_in
===
RCS file: /cvs/ports/x11/fltk/patches/patch-configure_in,v
retrieving revision 1.12
diff -u -p -r1.12 patch-configure_in
--- patches/patch-configure_in  22 Sep 2010 12:47:45 -  1.12
+++ patches/patch-configure_in  25 May 2012 10:30:40 -
@@ -1,51 +1,34 @@
 $OpenBSD: patch-configure_in,v 1.12

Re: Update: net/csup

2012-05-25 Thread Christian Weisgerber
Tobias Ulmer:

> I'm late to the party, but wanted to say that it segfaults even quicker
> than before.

Yes, CVS mode is pretty much broken. :-(

Upstream, Maxime has committed many fixes in this area and he plans
to tag the tree again soon, but I just tried the tip of tree and
it still dies. :-(

> Anyway, how do you use it? This segfault is so obvious that I suspect I
> do something wrong here...

Checkout mode seems fine.

> I'm not saying this should be backed out, btw. The old version was just
> as broken for me.

Strangely it worked fine on FreeBSD.

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



Re: Missing dependencies for pidgin

2012-05-25 Thread Landry Breuil
On Fri, May 25, 2012 at 08:22:16AM +0300, Lars Engblom wrote:
> I do not agree that it is useless as it gives the information that
> something is wrong. Without a report, the problem might even slip
> into a release. When I noticed the problem, I was in real hurry and
> a friend wanted to quickly send me a file through IM. I wrote the
> report one day later on another computer, not remembering what
> dependency was missing.
> 
> What I did was:
> 1. pkg_add -i pidgin(picking the gtkspell flavor)
> 2. running it, noticing it halting because of missing dependencies
> 3. pkg_add -i amsn
> 4. pidgin suddenly working after adding amsn
> 
> At this moment I have no time to set up a chroot and test out what
> was missing. If I would have had the time, I would have been doing
> it already. And no, I have not done anything to break anything, and
> this was with ready compiled packages in snapshot.

You can also look in your system logs to see what packages adding amsn
pulled as dependencies, one of them is probably the missing hidden dep.

Landry



Re: Missing dependencies for pidgin

2012-05-25 Thread Stuart Henderson
On 2012/05/25 08:22, Lars Engblom wrote:
> I do not agree that it is useless as it gives the information that
> something is wrong. Without a report, the problem might even slip
> into a release. When I noticed the problem, I was in real hurry and a
> friend wanted to quickly send me a file through IM. I wrote the
> report one day later on another computer, not remembering what
> dependency was missing.
> 
> What I did was:
> 1. pkg_add -i pidgin(picking the gtkspell flavor)
> 2. running it, noticing it halting because of missing dependencies
> 3. pkg_add -i amsn
> 4. pidgin suddenly working after adding amsn
> 
> At this moment I have no time to set up a chroot and test out what
> was missing. If I would have had the time, I would have been doing it
> already. And no, I have not done anything to break anything, and this
> was with ready compiled packages in snapshot.

Including the actual error message you saw would potentially save
a bunch of work, this type of problem is highly dependant on the order
packages were built in. Even if you're in a real hurry would it really
take more than a few seconds to paste the message into a mail to
yourself to look at later?

I'm just about to start a bulk so I'm going to commit this without
waiting for an ok as it's obviously correct.

Index: Makefile
===
RCS file: /cvs/ports/net/pidgin/Makefile,v
retrieving revision 1.106
diff -u -p -r1.106 Makefile
--- Makefile8 May 2012 06:49:41 -   1.106
+++ Makefile25 May 2012 08:50:51 -
@@ -7,6 +7,7 @@ COMMENT-finch=  multi-protocol instant me
 COMMENT-libpurple= multi-protocol instant messaging library
 
 VERSION=   2.10.4
+REVISION-main= 0
 DISTNAME=  pidgin-${VERSION}
 PKGNAME-main=  pidgin-${VERSION}
 PKGNAME-finch= finch-${VERSION}
@@ -83,6 +84,7 @@ CONFIGURE_ARGS+= --disable-avahi \
 --disable-cap \
 --disable-doxygen \
 --disable-farsight \
+--disable-farstream \
 --disable-gevolution \
 --disable-gnutls \
 --disable-nm \



new "port": generating ports readme.html from sqlports

2012-05-25 Thread Marc Espie
Now that things are consistent, it's much simpler to generate ports readmes
from sqlports (and faster).

Please comment.

I intend for this to improve and get committed, then scrape the old
readme.html framework from infrastructure/mk/


ports-readmes.tgz
Description: ports-readmes.tgz


UPDATE: xcache 2.0.0

2012-05-25 Thread Brad Smith
Here is an update to xcache 2.0.0.

Tested on amd64.


Index: Makefile
===
RCS file: /cvs/anoncvs/cvs/ports/www/xcache/Makefile,v
retrieving revision 1.14
diff -u -p -r1.14 Makefile
--- Makefile16 Nov 2011 15:56:38 -  1.14
+++ Makefile25 May 2012 07:01:19 -
@@ -4,8 +4,7 @@ SHARED_ONLY=Yes
 
 COMMENT=   fast and stable PHP opcode cacher
 
-VERSION=   1.3.2
-REVISION=  3
+VERSION=   2.0.0
 DISTNAME=  xcache-${VERSION}
 CATEGORIES=www
 MASTER_SITES=  http://xcache.lighttpd.net/pub/Releases/${VERSION}/
@@ -25,7 +24,8 @@ AUTOCONF_VERSION= 2.59
 MODULES=   lang/php
 
 BUILD_DEPENDS+=${MODGNU_AUTOCONF_DEPENDS} \
-   devel/re2c>=0.13.4
+   devel/re2c>=0.13.4 \
+   devel/gindent
 
 WEBROOT=   /var/www
 SUBST_VARS=WEBROOT
@@ -50,6 +50,9 @@ CONFIGURE_ARGS+=  --enable-xcache-coverag
 MODPHP_DO_PHPIZE=  Yes
 MODPHP_DO_SAMPLE=  xcache
 MESSAGE=   ${PKGDIR}/MESSAGE
+
+post-extract:
+   @ln -sf ${LOCALBASE}/bin/gindent ${WRKDIR}/bin/indent
 
 post-install:
${INSTALL_DATA_DIR} ${WRKINST}/${WEBROOT}/xcache
Index: distinfo
===
RCS file: /cvs/anoncvs/cvs/ports/www/xcache/distinfo,v
retrieving revision 1.5
diff -u -p -r1.5 distinfo
--- distinfo16 Jun 2011 20:24:43 -  1.5
+++ distinfo25 May 2012 06:40:48 -
@@ -1,5 +1,5 @@
-MD5 (xcache-1.3.2.tar.gz) = IF4iCfJOGKawhEpLbFLy5A==
-RMD160 (xcache-1.3.2.tar.gz) = MNs7+kScSSiyXQLg7OEK/7N7F94=
-SHA1 (xcache-1.3.2.tar.gz) = 6lVhNt6/eguZBIZQw/HjVkp1EAs=
-SHA256 (xcache-1.3.2.tar.gz) = KBLTEmexczmXA9V/Fr4/AmPt7lG0LYSoG/Zp4S8YhcU=
-SIZE (xcache-1.3.2.tar.gz) = 113715
+MD5 (xcache-2.0.0.tar.gz) = DJA8LrcOMcvDWuZv23UL3A==
+RMD160 (xcache-2.0.0.tar.gz) = 4r/fAXLe3v/muA5SW92MhJLGH3U=
+SHA1 (xcache-2.0.0.tar.gz) = jIEgf4MedWcr/foK4Y0ASgx6ZNs=
+SHA256 (xcache-2.0.0.tar.gz) = swynPHXcn4Bz3WWA0Vmzvti8jdXkR8xpOxq8ogK+qrI=
+SIZE (xcache-2.0.0.tar.gz) = 130536

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