Re: font ports naming convention

2015-08-22 Thread Anthony J. Bentley
Hi George,

George Rosamond writes:
> Looking at the current font names, some of the non-Latin ones (Farsi,
> Arabic) aren't prepended with the ISO 639-1 two-letter language code,
> while others (Russian, eg), are.

I believe this is an artifact. The fonts with language prefixes use
ja-, ko-, ru-, and zh-. Before the fonts/ category was created, these
were kept in the japanese/, korean/, russian/, and chinese/ categories.

> I have a bunch of font ports in-progress, including non-Latin fonts, and
> was wondering what the correct nomenclature is.

There is no standard nomenclature.

- some fonts end in -font or -fonts (e.g., droid-fonts)
- some fonts end in -ttf or -otf (e.g., ja-mplus-ttf)
- some have both (e.g., linuxlibertine-fonts-otf)
- some have neither (e.g., adobe-source-sans-pro)

Really, you should just use whatever is closest to upstream's name for it.

Personally I would prefer not to have separate packages for otf and ttf.

-- 
Anthony J. Bentley



Re: [update] netbeans 6.9.1 -> 8.0.2

2015-08-22 Thread Tobias Ulmer
On Thu, Aug 20, 2015 at 02:21:21PM +0200, Rafael Sadowski wrote:
> On Thu Aug 13, 2015 at 05:53:20PM +0200, Rafael Sadowski wrote:
> > hey ports@,
> > 
> > simple big jump to last stable 8.0.2. Tested with simple C++ and JAVA
> > applications like Hello World. I'll take a look on it, take MAINTAINER
> > 
> > Ok(s)?
> > 
>  ping pong ;-(
> 

It's not worse, still has the same issue that the build output is
useless ->
http://www.tmux.org/~tobiasu/tmp/2015-08-23-035556_1239x660_scrot.png

Someone with Java skills should dig into this, iirc there's a decade old
bug in the netbeans tracker...



font ports naming convention

2015-08-22 Thread George Rosamond
Looking at the current font names, some of the non-Latin ones (Farsi,
Arabic) aren't prepended with the ISO 639-1 two-letter language code,
while others (Russian, eg), are.

I have a bunch of font ports in-progress, including non-Latin fonts, and
was wondering what the correct nomenclature is.

Additionally, should all TTF fonts be appended with TTF, as some are,
but not all?

TIA

g



fonts/junicode

2015-08-22 Thread George Rosamond
Junicode is a Unicode font for medievalists.

Attached.

g


junicode.tgz
Description: Binary data


Re: UPDATE: ECL-15.3.7

2015-08-22 Thread Juan Francisco Cantero Hurtado
On Sat, Aug 22, 2015 at 11:31:17PM +0300, Timo Myyrä wrote:
> Jasper Lievisse Adriaanse  writes:
> 
> > On Fri, Aug 21, 2015 at 11:43:57AM +0300, Timo Myyr?? wrote:
> >> Hi,
> >> 
> >> I've been looking at this upgrade for a while.
> >> The Makefile's CONFIGURE_ARGS enable-threads arg should be removed.
> >> The current value 'pthreads' is incorrect and instead of failing it just
> >> disables thread support. This is my mistake, I think I confused it with
> >> boehm-gc when ecl was previously updated.
> >> The default option for threads is 'auto' so the whole flag could be just
> >> removed to enable threads support.
> >> 
> >> About the tests, currently they fail but upstream fixed the test material
> >> fetching to use curl directly after 15.3.7 release. We could make curl an
> >> test dependency.
> > And have it fetch files from the web during 'make test'? That sounds bad. If
> > possible we should mirror the file set somewhere so we can checksum it.
> >  
> 
> Yeah, it would make sense to verify the test data before using it.

Just to clarify jasper's words: the port only should to download data
during "make fetch", everything else is forbidden.

Test the ports with "env USE_SYSTRACE=Yes make something" is always a
good idea :)

> 
> >> One issue that has prevented me from posting an update is that I get
> >> following when doing 'make package':
> >> LIB_DEPENDS devel/boehm-gc, -atomic not needed for lang/ecl?
> >> |library atomic_ops-1.3 not found
> >> I haven't figured out why its complaining about that.
> > Doesn't happen here; are you fully -current?
> >
> 
> Yes, I should be pretty close to current. Though I had some other vague issue
> with other ports as well I couldn't replicate on another computer running the
> same snapshot. I'm assuming I've made some mistake in some update along the
> path which is causing these. Probably easiest to do reinstall and check if 
> that
> will help.
> 
> >> In any case, I think we should wait a bit. There's new release coming for
> >> ECL and it would include some of the local patches.
> > Excellent.
> >  
> >> Timo
> >> 
> >> 
> >> 21.8.2015, 10:38, Jasper Lievisse Adriaanse kirjoitti:
> >> >On Mon, May 18, 2015 at 02:39:31AM +0200, Juan Francisco Cantero Hurtado 
> >> >wrote:
> >> >>On Sun, May 17, 2015 at 10:08:37PM +0300, Timo Myyr? wrote:
> >> >>>Hi,
> >> >>>
> >> >>>Here's update for ECL. Slightly tested on amd64 by building maxima 
> >> >>>port.  This
> >> >>>fixes the broken --enable-threads flag. I've disabled the threads as 
> >> >>>threaded
> >> >>>build doesn't seem to work as build gets stuck in after compiling 
> >> >>>bootstrap
> >> >>>compiler. I've opened an issue with upstream about it [1].
> >> >>The tests don't work on my computer. Do you see the same errors?
> >> >It's the same as with the current in-tree version actually, so it's not a 
> >> >regression.
> >> >>===>  Regression tests for ecl-15.3.7
> >> >>cd build && make check
> >> >>cd tests && make
> >> >>make do-ansi
> >> >>ecl -norc -load config.lsp -eval '(ecl-tests::ensure-ansi-tests)' -eval 
> >> >>'(ext:quit)' < /dev/null
> >> >>;;; Loading 
> >> >>"/usr/write-ports/pobj/ecl-15.3.7/ecl-15.3.7/build/tests/config.lsp"
> >> >>An error occurred during initialization:
> >> >>The assertion (STRING-EQUAL ECL-CURL::URL "http://"; :END1 7) failed.
> >> >>*** Error 1 in build/tests (Makefile:31 'ansi-tests')
> >> >>*** Error 1 in build/tests (Makefile:9 'output.ecl/ansi.log')
> >> >>
> >> >>
> >> >>-- 
> >> >>Juan Francisco Cantero Hurtado http://juanfra.info
> >> >Here's an updated diff which incorporates upstream's fix for the issue 
> >> >Timo
> >> >reported. Maxima still seems happy.
> >> >
> >> >OK?
> >> >
> >> >Index: Makefile
> >> >===
> >> >RCS file: /cvs/ports/lang/ecl/Makefile,v
> >> >retrieving revision 1.24
> >> >diff -u -p -r1.24 Makefile
> >> >--- Makefile  19 Jul 2015 02:14:57 -  1.24
> >> >+++ Makefile  21 Aug 2015 07:26:37 -
> >> >@@ -6,13 +6,11 @@ CATEGORIES =lang
> >> >  BROKEN-sparc =  infinite loop while building
> >> >  BROKEN-arm =infinite loop while building
> >> >-V =  13.5.1
> >> >+V =  15.3.7
> >> >  DISTNAME =  ecl-$V
> >> >-SHARED_LIBS +=   ecl 3.0
> >> >+SHARED_LIBS +=   ecl 4.0
> >> >  SHARED_ONLY =   Yes
> >> >-REVISION =   1
> >> >-
> >> >  HOMEPAGE =  http://ecls.sourceforge.net/
> >> >  SUBST_VARS =V
> >> >  EXTRACT_SUFX =  .tgz
> >> >@@ -41,6 +39,8 @@ LIB_DEPENDS +=  devel/gmp \
> >> >  devel/boehm-gc,-main \
> >> >  devel/boehm-gc,-atomic \
> >> >  devel/libffi
> >> >+
> >> >+TEST_DEPENDS =   ${BASE_PKGPATH}
> >> >  WANTLIB +=  atomic_ops c ffi gc gmp m pthread
> >> >Index: distinfo
> >> >===
> >> >RCS file: /cvs/ports/lang/ecl/distinfo,v
> >> >retrieving revision 1.6
> >> >diff -u -p -r1.6 distinfo
> >

Re: README update for net/prosody

2015-08-22 Thread Henrik Friedrichsen
Hey Adam,

this sounds reasonable. OK from maintainer.

Thanks
Henrik



README update for net/prosody

2015-08-22 Thread Adam Wolk
Hi @ports & Henrik (MAINTAINER)

I decided to run a personal jabber server and started going through
the typical setup.

Reading /usr/local/share/doc/pkg-readmes/prosody-0.9.8p0 led me to
a probably outdated package name for one of the lua packages needed
to get the software running with a PostgreSQL backend.

The docs state to install luadbi-postgresql which does not exist
but a similar package named luadbi-pgsql does. The mysql package
seems to still match what's distributed with the ports tree.

I'm attaching a patch to update the README to the currently used
package names.

PS.
Talk about being rusty. Forgot to include ports@ in the initial
email. Sorry Henrik for the double mail.

Index: README
===
RCS file: /cvs/ports/net/prosody/pkg/README,v
retrieving revision 1.7
diff -u -p -r1.7 README
--- README  8 Oct 2012 09:11:35 -   1.7
+++ README  22 Aug 2015 20:31:19 -
@@ -41,4 +41,4 @@ Using Prosody in an OpenBSD environment
 5) In case you decide to enable 'mod_storage_sql', the default SQLite3
driver has already been installed. If you like to use MySQL or
PostgreSQL for the database, please install luadbi-mysql,${FLAVOR}
-   or luadbi-postgresql,${FLAVOR} respectively.
+   or luadbi-pgsql,${FLAVOR} respectively.



Re: UPDATE: ECL-15.3.7

2015-08-22 Thread Timo Myyrä
Jasper Lievisse Adriaanse  writes:

> On Fri, Aug 21, 2015 at 11:43:57AM +0300, Timo Myyr?? wrote:
>> Hi,
>> 
>> I've been looking at this upgrade for a while.
>> The Makefile's CONFIGURE_ARGS enable-threads arg should be removed.
>> The current value 'pthreads' is incorrect and instead of failing it just
>> disables thread support. This is my mistake, I think I confused it with
>> boehm-gc when ecl was previously updated.
>> The default option for threads is 'auto' so the whole flag could be just
>> removed to enable threads support.
>> 
>> About the tests, currently they fail but upstream fixed the test material
>> fetching to use curl directly after 15.3.7 release. We could make curl an
>> test dependency.
> And have it fetch files from the web during 'make test'? That sounds bad. If
> possible we should mirror the file set somewhere so we can checksum it.
>  

Yeah, it would make sense to verify the test data before using it.

>> One issue that has prevented me from posting an update is that I get
>> following when doing 'make package':
>> LIB_DEPENDS devel/boehm-gc, -atomic not needed for lang/ecl?
>> |library atomic_ops-1.3 not found
>> I haven't figured out why its complaining about that.
> Doesn't happen here; are you fully -current?
>

Yes, I should be pretty close to current. Though I had some other vague issue
with other ports as well I couldn't replicate on another computer running the
same snapshot. I'm assuming I've made some mistake in some update along the
path which is causing these. Probably easiest to do reinstall and check if that
will help.

>> In any case, I think we should wait a bit. There's new release coming for
>> ECL and it would include some of the local patches.
> Excellent.
>  
>> Timo
>> 
>> 
>> 21.8.2015, 10:38, Jasper Lievisse Adriaanse kirjoitti:
>> >On Mon, May 18, 2015 at 02:39:31AM +0200, Juan Francisco Cantero Hurtado 
>> >wrote:
>> >>On Sun, May 17, 2015 at 10:08:37PM +0300, Timo Myyr? wrote:
>> >>>Hi,
>> >>>
>> >>>Here's update for ECL. Slightly tested on amd64 by building maxima port.  
>> >>>This
>> >>>fixes the broken --enable-threads flag. I've disabled the threads as 
>> >>>threaded
>> >>>build doesn't seem to work as build gets stuck in after compiling 
>> >>>bootstrap
>> >>>compiler. I've opened an issue with upstream about it [1].
>> >>The tests don't work on my computer. Do you see the same errors?
>> >It's the same as with the current in-tree version actually, so it's not a 
>> >regression.
>> >>===>  Regression tests for ecl-15.3.7
>> >>cd build && make check
>> >>cd tests && make
>> >>make do-ansi
>> >>ecl -norc -load config.lsp -eval '(ecl-tests::ensure-ansi-tests)' -eval 
>> >>'(ext:quit)' < /dev/null
>> >>;;; Loading 
>> >>"/usr/write-ports/pobj/ecl-15.3.7/ecl-15.3.7/build/tests/config.lsp"
>> >>An error occurred during initialization:
>> >>The assertion (STRING-EQUAL ECL-CURL::URL "http://"; :END1 7) failed.
>> >>*** Error 1 in build/tests (Makefile:31 'ansi-tests')
>> >>*** Error 1 in build/tests (Makefile:9 'output.ecl/ansi.log')
>> >>
>> >>
>> >>-- 
>> >>Juan Francisco Cantero Hurtado http://juanfra.info
>> >Here's an updated diff which incorporates upstream's fix for the issue Timo
>> >reported. Maxima still seems happy.
>> >
>> >OK?
>> >
>> >Index: Makefile
>> >===
>> >RCS file: /cvs/ports/lang/ecl/Makefile,v
>> >retrieving revision 1.24
>> >diff -u -p -r1.24 Makefile
>> >--- Makefile19 Jul 2015 02:14:57 -  1.24
>> >+++ Makefile21 Aug 2015 07:26:37 -
>> >@@ -6,13 +6,11 @@ CATEGORIES =  lang
>> >  BROKEN-sparc =infinite loop while building
>> >  BROKEN-arm =  infinite loop while building
>> >-V =13.5.1
>> >+V =15.3.7
>> >  DISTNAME =ecl-$V
>> >-SHARED_LIBS += ecl 3.0
>> >+SHARED_LIBS += ecl 4.0
>> >  SHARED_ONLY = Yes
>> >-REVISION = 1
>> >-
>> >  HOMEPAGE =http://ecls.sourceforge.net/
>> >  SUBST_VARS =  V
>> >  EXTRACT_SUFX =.tgz
>> >@@ -41,6 +39,8 @@ LIB_DEPENDS +=devel/gmp \
>> >devel/boehm-gc,-main \
>> >devel/boehm-gc,-atomic \
>> >devel/libffi
>> >+
>> >+TEST_DEPENDS = ${BASE_PKGPATH}
>> >  WANTLIB +=atomic_ops c ffi gc gmp m pthread
>> >Index: distinfo
>> >===
>> >RCS file: /cvs/ports/lang/ecl/distinfo,v
>> >retrieving revision 1.6
>> >diff -u -p -r1.6 distinfo
>> >--- distinfo11 Jun 2013 10:30:54 -  1.6
>> >+++ distinfo21 Aug 2015 07:26:37 -
>> >@@ -1,2 +1,2 @@
>> >-SHA256 (ecl-13.5.1.tgz) = +RxXzgZf6XSLyBBOGR5LLc/oVNY0MV/ngA3QphNHLKI=
>> >-SIZE (ecl-13.5.1.tgz) = 9401163
>> >+SHA256 (ecl-15.3.7.tgz) = Lcb/u/Hgp7EyPUmpkbofAFEnyj4VNlHZG6nmW9rslI8=
>> >+SIZE (ecl-15.3.7.tgz) = 8755180
>> >Index: patches/patch-src_c_unixint_d
>> >===
>> >RCS file: patches/patc

Re: NEW: devel/py-cloudpickle

2015-08-22 Thread Jérémie Courrèges-Anglas
Brian Callahan  writes:

[...]

> Out of curiosity... you say the tests are failing. They all pass here
> for me.

Indeed, sorry for the confusion. 8)

-- 
jca | PGP : 0x1524E7EE / 5135 92C1 AD36 5293 2BDF  DDCC 0DFA 74AE 1524 E7EE



Too many ruby interpreters

2015-08-22 Thread Jeremy Evans
Some other porters have complained that we have too many versions of
ruby in the tree.  We currently have 7 ruby interpreters in the tree:
jruby, rubinius, and ruby 1.8, 1.9, 2.0, 2.1, and 2.2.  So here is my
proposal for dealing with that.

First, remove lang/rubinius, as it is slow because it doesn't work with
the in-tree LLVM, it is rarely used, and I couldn't get a recent version
to build with any of the in-tree compilers.  This could be brought back
in the future if someone cares to do the work, but there needs to be a
plan so that it will always have a working LLVM.

Ruby 1.8 will be sticking around for the foreseeable future as other
software depends on it, including amarok, subversion, and vim.

For other ruby versions, change the OpenBSD support policy.  Ruby
versions that will still be supported by upstream when -current is
released (currently 2.1 and 2.2 as 2.0 goes out of support in February)
will be fully supported by OpenBSD, and will have C extensions built by
default.  When a ruby version will no longer be supported by upstream,
OpenBSD will stop building C extensions for the version, but it will
remain in the ports tree until the following version is no longer
supported by upstream, at which time it will be removed.

This change in OpenBSD support policy would have the following effects
currently:

1) Remove lang/ruby/1.9
2) Stop building C extensions for lang/ruby/2.0.

Thoughts on this?  OKs?

Thanks,
Jeremy



Switch security/arirang from ruby 1.9 to ruby 1.8

2015-08-22 Thread Jeremy Evans
This is the last port that requires ruby 1.9.  It doesn't build on ruby
2.0, but it does work with ruby 1.8.  Since ruby 1.8 will be sticking
around for the foreseeable future, just switch to that.

Tested on amd64, will be committing in a few days unless I hear
objections.

Thanks,
Jeremy

Index: Makefile
===
RCS file: /cvs/ports/security/arirang/Makefile,v
retrieving revision 1.30
diff -u -p -r1.30 Makefile
--- Makefile3 Oct 2014 07:25:06 -   1.30
+++ Makefile22 Aug 2015 15:34:36 -
@@ -5,6 +5,7 @@ COMMENT =   powerful webserver security sc
 DISTNAME = arirang-2.03
 PKGNAME =  ruby-${DISTNAME}
 CATEGORIES =   security
+REVISION = 0
 
 MASTER_SITES = http://monkey.org/~pilot/arirang/ \
${MASTER_SITE_PACKETSTORM:=UNIX/cgi-scanners/}
@@ -17,7 +18,7 @@ MAINTAINER =  Jung Lee 

Re: UPDATE: games/pioneers

2015-08-22 Thread Brian Callahan


On 08/22/15 04:50, Anthony J. Bentley wrote:
> Hi,
> 
> Here is an update to pioneers-15.3.
> 
> Release notes:
> http://sourceforge.net/p/pio/code/HEAD/tree/trunk/pioneers/NEWS
> 
> Tested on amd64.
> 
> ok?
> 

In the port Makefile:

${WRKSRC}/docs/pioneers-meta-server.6
should be
${WRKSRC}/docs/pioneers-metaserver.6
yes?

I can't seem to connect to the debian server games, but I can connect to
the game-host server and localhost, so ok for me with above tweak.

~Brian

> 
> Index: Makefile
> ===
> RCS file: /cvs/ports/games/pioneers/Makefile,v
> retrieving revision 1.43
> diff -u -p -u -p -r1.43 Makefile
> --- Makefile  23 Apr 2015 07:38:01 -  1.43
> +++ Makefile  22 Aug 2015 08:41:48 -
> @@ -3,8 +3,7 @@
>  COMMENT= Settlers of Catan for GNOME/Gtk
>  
>  GNOME_PROJECT=   pioneers
> -GNOME_VERSION=   14.1
> -REVISION=5
> +GNOME_VERSION=   15.3
>  
>  CATEGORIES=  games
>  
> @@ -12,11 +11,11 @@ EXTRACT_SUFX= .tar.gz
>  
>  HOMEPAGE=http://pio.sourceforge.net/
>  
> -# GPLv2
> +# GPLv2+
>  PERMIT_PACKAGE_CDROM=Yes
>  
> -WANTLIB += c cairo gdk-x11-2.0 gdk_pixbuf-2.0 glib-2.0 gnome-2
> -WANTLIB += gobject-2.0 gtk-x11-2.0 m notify pango-1.0 pangocairo-1.0
> +WANTLIB += c cairo gdk-3 gdk_pixbuf-2.0 gio-2.0 glib-2.0 gnome-2
> +WANTLIB += gobject-2.0 gtk-3 m notify pango-1.0 pangocairo-1.0
>  WANTLIB += pthread
>  
>  MASTER_SITES=${MASTER_SITE_SOURCEFORGE:=pio/}
> @@ -27,8 +26,7 @@ MODULES=devel/gettext \
>  BUILD_DEPENDS=   x11/gnome/librsvg
>  RUN_DEPENDS= x11/gtk+3,-guic
>  LIB_DEPENDS= devel/libnotify \
> - x11/gnome/libgnome \
> - x11/gtk+2
> + x11/gnome/libgnome
>  
>  MODGNOME_TOOLS=  desktop-file-utils yelp
>  
> Index: distinfo
> ===
> RCS file: /cvs/ports/games/pioneers/distinfo,v
> retrieving revision 1.7
> diff -u -p -u -p -r1.7 distinfo
> --- distinfo  18 Jan 2015 03:14:01 -  1.7
> +++ distinfo  22 Aug 2015 08:41:48 -
> @@ -1,2 +1,2 @@
> -SHA256 (pioneers-14.1.tar.gz) = UZatL31LoSjyrhOOSvnQPWLDZvA0K4jYca8EKUOF94E=
> -SIZE (pioneers-14.1.tar.gz) = 3784239
> +SHA256 (pioneers-15.3.tar.gz) = aa+lG3FkZWVTa1cbD4l4bTp2FpZSZfGW/VFla1E4Gok=
> +SIZE (pioneers-15.3.tar.gz) = 4154470
> Index: patches/patch-Makefile_in
> ===
> RCS file: /cvs/ports/games/pioneers/patches/patch-Makefile_in,v
> retrieving revision 1.4
> diff -u -p -u -p -r1.4 patch-Makefile_in
> --- patches/patch-Makefile_in 17 Nov 2010 19:23:05 -  1.4
> +++ patches/patch-Makefile_in 22 Aug 2015 08:41:48 -
> @@ -1,18 +1,18 @@
> -$OpenBSD: patch-Makefile_in,v 1.4 2010/11/17 19:23:05 jasper Exp $
>  Makefile.in.orig Sun Sep 26 11:18:08 2010
> -+++ Makefile.in  Wed Nov 17 18:57:54 2010
> -@@ -1055,7 +1055,7 @@ console_cflags = \
> +$OpenBSD$
> +--- Makefile.in.orig Mon Jul 27 18:28:03 2015
>  Makefile.in  Mon Jul 27 18:28:04 2015
> +@@ -1288,7 +1288,7 @@ console_cflags = \
>   -DDATADIR=\""$(pioneers_datadir)"\" \
>   -DTHEMEDIR=\""$(pioneers_themedir_embed)"\" \
>   -DLOCALEDIR=\""$(pioneers_localedir)"\" \
>  --DPIONEERS_DIR_DEFAULT=\""$(pioneers_datadir)/games/pioneers"\" \
>  +-DPIONEERS_DIR_DEFAULT=\""$(pioneers_datadir)/pioneers"\" \
> - -DPIONEERS_SERVER_CONSOLE_PATH=\""$(bindir)/pioneers-server-console"\" \
> - -DPIONEERS_SERVER_GTK_PATH=\""$(bindir)/pioneers-server-gtk"\" \
> - -DPIONEERS_CLIENT_GTK_PATH=\""$(bindir)/pioneers"\" \
> -@@ -1081,7 +1081,7 @@ gtk_libs = \
> + 
> -DPIONEERS_SERVER_CONSOLE_PROGRAM_NAME=\""pioneers-server-console$(EXEEXT)"\" 
> \
> + -DPIONEERS_SERVER_GTK_PROGRAM_NAME=\""pioneers-server-gtk$(EXEEXT)"\" \
> + -DPIONEERS_CLIENT_GTK_PROGRAM_NAME=\""pioneers$(EXEEXT)"\" \
> +@@ -1323,7 +1323,7 @@ gtk_libs = \
>   $(GNOME2_LIBS) \
> - $(GTK2_LIBS)
> + $(GTK_LIBS)
>   
>  -configdir = $(datadir)/games/pioneers
>  +configdir = $(datadir)/pioneers
> Index: patches/patch-configure
> ===
> RCS file: /cvs/ports/games/pioneers/patches/patch-configure,v
> retrieving revision 1.4
> diff -u -p -u -p -r1.4 patch-configure
> --- patches/patch-configure   17 Nov 2010 19:23:05 -  1.4
> +++ patches/patch-configure   22 Aug 2015 08:41:48 -
> @@ -1,7 +1,7 @@
>  $OpenBSD: patch-configure,v 1.4 2010/11/17 19:23:05 jasper Exp $
>  configure.orig   Sun Sep 26 11:18:09 2010
> -+++ configureWed Nov 17 18:57:54 2010
> -@@ -14435,7 +14435,7 @@ if test $pioneers_is_mingw_port = yes; then
> +--- configure.orig   Mon Jul  7 11:08:41 2014
>  configureMon Jul 27 18:27:53 2015
> +@@ -16024,7 +16024,7 @@ if test $pioneers_is_mingw_port = yes; then
>   DATADIRNAME=.
>   else
>   pioneers_datadir=$datadir
> Index: pkg/PLIST
> =

Re: UPDATE: Smtube-15.8.0

2015-08-22 Thread Josh Grosse
On Thu, Aug 20, 2015 at 04:13:22PM -0300, Gonzalo L. Rodriguez wrote:
> Hi,
> 
> Update for SMTube to 15.8.0:
> 
> Improve support for VEVO videos.
> Possibility to play the audio only.
> 
> Ok? Comments?

Tested on amd64.  Thank you!!

(Can't test on i386 at the moment, my son took the netbook.)



UPDATE: games/pioneers

2015-08-22 Thread Anthony J. Bentley
Hi,

Here is an update to pioneers-15.3.

Release notes:
http://sourceforge.net/p/pio/code/HEAD/tree/trunk/pioneers/NEWS

Tested on amd64.

ok?


Index: Makefile
===
RCS file: /cvs/ports/games/pioneers/Makefile,v
retrieving revision 1.43
diff -u -p -u -p -r1.43 Makefile
--- Makefile23 Apr 2015 07:38:01 -  1.43
+++ Makefile22 Aug 2015 08:41:48 -
@@ -3,8 +3,7 @@
 COMMENT=   Settlers of Catan for GNOME/Gtk
 
 GNOME_PROJECT= pioneers
-GNOME_VERSION= 14.1
-REVISION=  5
+GNOME_VERSION= 15.3
 
 CATEGORIES=games
 
@@ -12,11 +11,11 @@ EXTRACT_SUFX=   .tar.gz
 
 HOMEPAGE=  http://pio.sourceforge.net/
 
-# GPLv2
+# GPLv2+
 PERMIT_PACKAGE_CDROM=  Yes
 
-WANTLIB += c cairo gdk-x11-2.0 gdk_pixbuf-2.0 glib-2.0 gnome-2
-WANTLIB += gobject-2.0 gtk-x11-2.0 m notify pango-1.0 pangocairo-1.0
+WANTLIB += c cairo gdk-3 gdk_pixbuf-2.0 gio-2.0 glib-2.0 gnome-2
+WANTLIB += gobject-2.0 gtk-3 m notify pango-1.0 pangocairo-1.0
 WANTLIB += pthread
 
 MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=pio/}
@@ -27,8 +26,7 @@ MODULES=  devel/gettext \
 BUILD_DEPENDS= x11/gnome/librsvg
 RUN_DEPENDS=   x11/gtk+3,-guic
 LIB_DEPENDS=   devel/libnotify \
-   x11/gnome/libgnome \
-   x11/gtk+2
+   x11/gnome/libgnome
 
 MODGNOME_TOOLS=desktop-file-utils yelp
 
Index: distinfo
===
RCS file: /cvs/ports/games/pioneers/distinfo,v
retrieving revision 1.7
diff -u -p -u -p -r1.7 distinfo
--- distinfo18 Jan 2015 03:14:01 -  1.7
+++ distinfo22 Aug 2015 08:41:48 -
@@ -1,2 +1,2 @@
-SHA256 (pioneers-14.1.tar.gz) = UZatL31LoSjyrhOOSvnQPWLDZvA0K4jYca8EKUOF94E=
-SIZE (pioneers-14.1.tar.gz) = 3784239
+SHA256 (pioneers-15.3.tar.gz) = aa+lG3FkZWVTa1cbD4l4bTp2FpZSZfGW/VFla1E4Gok=
+SIZE (pioneers-15.3.tar.gz) = 4154470
Index: patches/patch-Makefile_in
===
RCS file: /cvs/ports/games/pioneers/patches/patch-Makefile_in,v
retrieving revision 1.4
diff -u -p -u -p -r1.4 patch-Makefile_in
--- patches/patch-Makefile_in   17 Nov 2010 19:23:05 -  1.4
+++ patches/patch-Makefile_in   22 Aug 2015 08:41:48 -
@@ -1,18 +1,18 @@
-$OpenBSD: patch-Makefile_in,v 1.4 2010/11/17 19:23:05 jasper Exp $
 Makefile.in.orig   Sun Sep 26 11:18:08 2010
-+++ Makefile.inWed Nov 17 18:57:54 2010
-@@ -1055,7 +1055,7 @@ console_cflags = \
+$OpenBSD$
+--- Makefile.in.orig   Mon Jul 27 18:28:03 2015
 Makefile.inMon Jul 27 18:28:04 2015
+@@ -1288,7 +1288,7 @@ console_cflags = \
-DDATADIR=\""$(pioneers_datadir)"\" \
-DTHEMEDIR=\""$(pioneers_themedir_embed)"\" \
-DLOCALEDIR=\""$(pioneers_localedir)"\" \
 -  -DPIONEERS_DIR_DEFAULT=\""$(pioneers_datadir)/games/pioneers"\" \
 +  -DPIONEERS_DIR_DEFAULT=\""$(pioneers_datadir)/pioneers"\" \
-   -DPIONEERS_SERVER_CONSOLE_PATH=\""$(bindir)/pioneers-server-console"\" \
-   -DPIONEERS_SERVER_GTK_PATH=\""$(bindir)/pioneers-server-gtk"\" \
-   -DPIONEERS_CLIENT_GTK_PATH=\""$(bindir)/pioneers"\" \
-@@ -1081,7 +1081,7 @@ gtk_libs = \
+   
-DPIONEERS_SERVER_CONSOLE_PROGRAM_NAME=\""pioneers-server-console$(EXEEXT)"\" \
+   -DPIONEERS_SERVER_GTK_PROGRAM_NAME=\""pioneers-server-gtk$(EXEEXT)"\" \
+   -DPIONEERS_CLIENT_GTK_PROGRAM_NAME=\""pioneers$(EXEEXT)"\" \
+@@ -1323,7 +1323,7 @@ gtk_libs = \
$(GNOME2_LIBS) \
-   $(GTK2_LIBS)
+   $(GTK_LIBS)
  
 -configdir = $(datadir)/games/pioneers
 +configdir = $(datadir)/pioneers
Index: patches/patch-configure
===
RCS file: /cvs/ports/games/pioneers/patches/patch-configure,v
retrieving revision 1.4
diff -u -p -u -p -r1.4 patch-configure
--- patches/patch-configure 17 Nov 2010 19:23:05 -  1.4
+++ patches/patch-configure 22 Aug 2015 08:41:48 -
@@ -1,7 +1,7 @@
 $OpenBSD: patch-configure,v 1.4 2010/11/17 19:23:05 jasper Exp $
 configure.orig Sun Sep 26 11:18:09 2010
-+++ configure  Wed Nov 17 18:57:54 2010
-@@ -14435,7 +14435,7 @@ if test $pioneers_is_mingw_port = yes; then
+--- configure.orig Mon Jul  7 11:08:41 2014
 configure  Mon Jul 27 18:27:53 2015
+@@ -16024,7 +16024,7 @@ if test $pioneers_is_mingw_port = yes; then
DATADIRNAME=.
  else
pioneers_datadir=$datadir
Index: pkg/PLIST
===
RCS file: /cvs/ports/games/pioneers/pkg/PLIST,v
retrieving revision 1.10
diff -u -p -u -p -r1.10 PLIST
--- pkg/PLIST   23 Apr 2015 07:38:01 -  1.10
+++ pkg/PLIST   22 Aug 2015 08:41:48 -
@@ -3,12 +3,12 @@
 @pkgpath games/gnocatan
 @bin bin/pioneers
 @bin bin/pioneers-editor
-@bin bin/pioneers-meta-server
+@bin bin/pioneers-metaserver
 @bin bin/pioneers-server-console
 @bin bin/pioneers-server-gtk
 @bin bin/pioneersai
 @man man/man6/pioneers-editor.6
-@man man/man6/pionee

Re: [build reports please] Switch to samba4

2015-08-22 Thread Kirill Bychkov
On Fri, August 21, 2015 17:51, Christian Weisgerber wrote:
> On 2015-08-21, J?r?mie Courr?ges-Anglas  wrote:
>
>> - I would like people to attempt building net/samba4 on as many
>>   architectures as possible*.  This is *very* important.
>
> I'll try sparc64.  This may take a few days.
>
Builds fine on macppc.



NEW: games/taisei

2015-08-22 Thread Anthony J. Bentley
Hi,

Taisei is an open clone of the Touhou series. Touhou is a one-man project of
shoot-em-up games set in an isolated world full of Japanese folklore.


Tested on amd64.

ok?

-- 
Anthony J. Bentley


taisei.tar.gz
Description: taisei.tar.gz