"pkg check -B" drop shlibs from local.sqlite on -stable

2016-03-15 Thread Andrey Chernov
On recent -stable and pkg 1.6.4:

1# pkg check -d
Checking all packages: 100%
2# pkg check -B
Checking all packages: 100%
3# pkg check -d
Checking all packages: 100%
firefox has require a missing libraries: libgdk_pixbuf-2.0.so.0
gtk-update-icon-cache has require a missing libraries: libgdk_pixbuf-2.0.so.0
gtk2 has require a missing libraries: libgdk_pixbuf-2.0.so.0
gtk3 has require a missing libraries: libgdk_pixbuf-2.0.so.0
libnotify has require a missing libraries: libgdk_pixbuf-2.0.so.0
nspluginwrapper has require a missing libraries: libgdk_pixbuf-2.0.so.0

Well, I can repair it using:

1# sqlite3 /var/db/pkg/local.sqlite "select * from shlibs where 
name='libgdk_pixbuf-2.0.so.0';"
81|libgdk_pixbuf-2.0.so.0
2# sqlite3 /var/db/pkg/local.sqlite "select * from packages where 
name='gdk-pixbuf2';"
4207|graphics/gdk-pixbuf2|gdk-pixbuf2|2.32.3|...
...
3# sqlite3 /var/db/pkg/local.sqlite "insert into pkg_shlibs_provided 
values(4207,81);"
4# pkg check -d
Checking all packages: 100%

but it repeats again after the next "pkg check -B".
Please fix.

-- 
http://ache.vniz.net/
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Owncloud port marked broken with PHP 7.0 and MySQL

2016-03-15 Thread Kevin Lo
On Tue, Mar 15, 2016 at 08:12:20AM -0400, Jim Ohlstein wrote:
> 
> Hello,

Hi Jim,

> On 3/15/16 7:54 AM, Kurt Jaeger wrote:
> > Hi!
> >
> >> At the risk of sounding like a broken record (did you actually READ what
> >> I wrote?) Owncloud does NOT require php-mysql, it requires
> >> php-pdo_mysql. In PHP versions before 7.0 that pulled in the
> >> corresponding php-mysql port. It is NOT a requirement (there, I said it
> >> a THIRD time).
> >
> > Can you submit a patch to the ports (maybe fixing the depends) so that
> > it builds ?
> >
> 
> It's pretty straightforward. I'm guessing other ports were pulled in by 
> this blanket search for requiring mysql extension when in fact what was 
> needed was pdo-mysql.

You're right.  Owncloud doesn't require php-mysql, I committed your fix
as r411212, thanks.

> 
> --- Makefile  (revision 411153)
> +++ Makefile  (working copy)
> @@ -2,6 +2,7 @@
> 
>   PORTNAME=   owncloud
>   PORTVERSION=9.0.0
> +PORTREVISION=1
>   CATEGORIES= www
>   MASTER_SITES=   http://download.owncloud.org/community/
> 
> @@ -40,8 +41,7 @@
>   LDAP_USE=   PHP=ldap
>   MP3INFO_BUILD_DEPENDS=  mp3info:${PORTSDIR}/audio/mp3info
>   MP3INFO_RUN_DEPENDS=${MP3INFO_BUILD_DEPENDS}
> -MYSQL_USE=   MYSQL=client PHP=mysql,pdo_mysql
> -MYSQL_VARS=  IGNORE_WITH_PHP+=70
> +MYSQL_USE=   MYSQL=client PHP=pdo_mysql
>   PGSQL_USES= pgsql
>   PGSQL_USE=  PHP=pdo_pgsql,pgsql
>   SQLITE_USE= PHP=pdo_sqlite,sqlite3
> 
> 
> Build log available at http://bit.ly/1UdfsGA.
> 
> -- 
> Jim Ohlstein
> 
> 
> "Never argue with a fool, onlookers may not be able to tell the 
> difference." - Mark Twain
> 
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Remmina ported to FreeBSD

2016-03-15 Thread Kurt Jaeger
Hi!

> > I'm just wondering what version of freerdp you supposed as latest?
> > I've seen a lot of new remmina 'releases/tag in github' since last
> > year. But freerdp has only release from Sep 2014. That version is
> > already in ports tree for a long time.
> 
> An updated net/freerdp (GH_TAGNAME=c5fd49c) builds, as do
> all its depends:
> 
> multimedia/vlc
> net/vinagre
> net/guacamole-server
> net/xrdp-devel
> net/krdc
> 
> Maybe with an updated remmina patch this will work as well ?

I redid the test with corrected pkgconfig, and
both net/vinagre and net/guacamole-server fail to build.

Hmm, this needs more analysis.

-- 
p...@opsec.eu+49 171 3101372 4 years to go !
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: print/cups overhaul (PR 207746) side-effects

2016-03-15 Thread Jim Ohlstein
Hello,

> On Mar 15, 2016, at 2:44 PM, Torfinn Ingolfsen  wrote:
> 
> On Sat, Mar 12, 2016 at 4:51 PM, Walter Schwarzenfeld
>  wrote:
>> Where is the problem? There is only one "big" port (llvm36). Will be
>> sstimate 1 !/2 hours. Poudriere and more synth often wants more.
> 
> And how many hours will it take to compile the llvm port on a Raspberry Pi?
> Or any of the other ARM platforms that FreeBSD now supports.

It was just under two hours for LLVM-36 and clang 36 on an old Xeon. 

--
Jim
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Owncloud port marked broken with PHP 7.0 and MySQL

2016-03-15 Thread Kurt Jaeger
Hi!

> > Can you submit a patch to the ports (maybe fixing the depends) so that
> > it builds ?

> It's pretty straightforward. I'm guessing other ports were pulled in by 
> this blanket search for requiring mysql extension when in fact what was 
> needed was pdo-mysql.

Now a major motion picture at:

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=208041

Thanks!

-- 
p...@opsec.eu+49 171 3101372 4 years to go !
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: print/cups overhaul (PR 207746) side-effects

2016-03-15 Thread Torfinn Ingolfsen
On Sat, Mar 12, 2016 at 4:51 PM, Walter Schwarzenfeld
 wrote:
> Where is the problem? There is only one "big" port (llvm36). Will be
> sstimate 1 !/2 hours. Poudriere and more synth often wants more.
>

And how many hours will it take to compile the llvm port on a Raspberry Pi?
Or any of the other ARM platforms that FreeBSD now supports.

-- 
Regards,
Torfinn Ingolfsen
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: [CFT] net-im/ejabberd to 16.01

2016-03-15 Thread Marko Cupać
Hi,

thanks for new port. I've upgraded to 16.02_1 from ports without any
problems:
https://xmpp.net/result.php?domain=mimar.rs=client#general

It took me some time to get used to the fact that I need to stop
ejabberd service, kill epmd process, and restart ejabberd service to
pick up new version. Without killing epmd, ejabberd after upgrade does
not start, but also does not write anything to logs. From my point of
view It would be great if simple 'service ejabberd restart' took care
of restarting corresponding empd process. If this is actually a
terrible idea because of some other implications that don't affect me,
perhaps a line similar to "don't forget to kill epmd process when
upgrading" in pkg-message would be informative.

Regards,
-- 
Before enlightenment - chop wood, draw water.
After  enlightenment - chop wood, draw water.

Marko Cupać
https://www.mimar.rs/
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"

Re: print/cups overhaul (PR 207746) side-effects

2016-03-15 Thread Martin Waschbüsch

> Am 12.03.2016 um 16:51 schrieb Walter Schwarzenfeld 
> :
> 
> Where is the problem? There is only one "big" port (llvm36). Will be sstimate 
> 1 !/2 hours. Poudriere and more synth often wants more.

Re-reading the messages, I realize that I blew this out of proportion. Sorry 
for that.
What remains is that I dislike it if package defaults get more greedy with 
regards to their dependencies.
I try avoiding that whenever feasible.

But I guess one could argue that the real problem is that my build-box is 
simply too slow. :-/

Martin
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Owncloud port marked broken with PHP 7.0 and MySQL

2016-03-15 Thread Jim Ohlstein

Hello,

On 3/15/16 7:54 AM, Kurt Jaeger wrote:

Hi!


At the risk of sounding like a broken record (did you actually READ what
I wrote?) Owncloud does NOT require php-mysql, it requires
php-pdo_mysql. In PHP versions before 7.0 that pulled in the
corresponding php-mysql port. It is NOT a requirement (there, I said it
a THIRD time).


Can you submit a patch to the ports (maybe fixing the depends) so that
it builds ?



It's pretty straightforward. I'm guessing other ports were pulled in by 
this blanket search for requiring mysql extension when in fact what was 
needed was pdo-mysql.


--- Makefile(revision 411153)
+++ Makefile(working copy)
@@ -2,6 +2,7 @@

 PORTNAME=  owncloud
 PORTVERSION=   9.0.0
+PORTREVISION=  1
 CATEGORIES=www
 MASTER_SITES=  http://download.owncloud.org/community/

@@ -40,8 +41,7 @@
 LDAP_USE=  PHP=ldap
 MP3INFO_BUILD_DEPENDS= mp3info:${PORTSDIR}/audio/mp3info
 MP3INFO_RUN_DEPENDS=   ${MP3INFO_BUILD_DEPENDS}
-MYSQL_USE= MYSQL=client PHP=mysql,pdo_mysql
-MYSQL_VARS=IGNORE_WITH_PHP+=70
+MYSQL_USE= MYSQL=client PHP=pdo_mysql
 PGSQL_USES=pgsql
 PGSQL_USE= PHP=pdo_pgsql,pgsql
 SQLITE_USE=PHP=pdo_sqlite,sqlite3


Build log available at http://bit.ly/1UdfsGA.

--
Jim Ohlstein


"Never argue with a fool, onlookers may not be able to tell the 
difference." - Mark Twain

___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Owncloud port marked broken with PHP 7.0 and MySQL

2016-03-15 Thread Mathieu Arnold


+--On 15 mars 2016 07:49:55 -0400 Jim Ohlstein  wrote:
| Hello,
| 
| On 3/15/16 7:05 AM, Mathieu Arnold wrote:
|> 
|> 
|> +--On 14 mars 2016 16:57:19 -0400 Jim Ohlstein  wrote:
|> | Hello,
|> | 
|> | Not sure of the motivation behind this. Owncloud has supported PHP 7.0
|> | since prior to this release (9.0.0). See
|> | https://owncloud.org/blog/php-7-is-here-and-owncloud-is-ready/. Perhaps
|> | removing the unnecessary php(Xx)-mysql runtime requirement is what's
|> | actually needed, as it actually requires php(Xx)-pdo-mysql. That in
|> | itself creates a php-mysql dependency in PHP versions up to 5.6, but
|> | not in later versions, such as 7.0.
|> 
|> The owncloud port needs mysql, php 7.0 does not provide mysql, so it was
|> marked broken, along with all the ports that do so, and who also don't
|> build with 7.0.
|> 
| 
| At the risk of sounding like a broken record (did you actually READ what
| I wrote?) Owncloud does NOT require php-mysql, it requires php-pdo_mysql.
| In PHP versions before 7.0 that pulled in the corresponding php-mysql
| port. It is NOT a requirement (there, I said it a THIRD time).

I was very specific in my answer, yes, I read what you wrote, I never
talked about owncloud, I talked about the port.

The port's MYSQL option end up doing USE_PHP=mysql.
PHP 7.0 does not have a mysql module.
Before my commit, if you tried to build the port with the MYSQL option
enabled, and with PHP 7.0 as the default, you would end up not building
anyway:

Unknown extension mysql for PHP 70.
*** Error code 1

Stop.
make: stopped in /usr/ports/www/owncloud

After my commit, if you try to build it with the MYSQL option enabled, it
will tell you:

cannot be installed: doesn't work with lang/php70 port (doesn't support PHP
70)

So, nothing changed from what you can do, you could not install it before,
you still cannot install it now.

Let me be very clear with what I wrote and what it says, it's all about the
*port* not the *software* I have no idea if the ~50 ports I marked broken
the other day can, or not, work with PHP 7.0.  I marked them all broken, in
one go, because they were taking time trying to build where they could not.

Now, if there is something to be done with one particular port, owncloud in
this case, please, open a problem report so that the maintainer can fix it.

Kind regards,

-- 
Mathieu Arnold

pgpOLo8Ophcor.pgp
Description: PGP signature


Re: Owncloud port marked broken with PHP 7.0 and MySQL

2016-03-15 Thread Kurt Jaeger
Hi!

> At the risk of sounding like a broken record (did you actually READ what 
> I wrote?) Owncloud does NOT require php-mysql, it requires 
> php-pdo_mysql. In PHP versions before 7.0 that pulled in the 
> corresponding php-mysql port. It is NOT a requirement (there, I said it 
> a THIRD time).

Can you submit a patch to the ports (maybe fixing the depends) so that
it builds ?

-- 
p...@opsec.eu+49 171 3101372 4 years to go !
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Owncloud port marked broken with PHP 7.0 and MySQL

2016-03-15 Thread Jim Ohlstein

Hello,

On 3/15/16 7:05 AM, Mathieu Arnold wrote:



+--On 14 mars 2016 16:57:19 -0400 Jim Ohlstein  wrote:
| Hello,
|
| Not sure of the motivation behind this. Owncloud has supported PHP 7.0
| since prior to this release (9.0.0). See
| https://owncloud.org/blog/php-7-is-here-and-owncloud-is-ready/. Perhaps
| removing the unnecessary php(Xx)-mysql runtime requirement is what's
| actually needed, as it actually requires php(Xx)-pdo-mysql. That in
| itself creates a php-mysql dependency in PHP versions up to 5.6, but not
| in later versions, such as 7.0.

The owncloud port needs mysql, php 7.0 does not provide mysql, so it was
marked broken, along with all the ports that do so, and who also don't
build with 7.0.



At the risk of sounding like a broken record (did you actually READ what 
I wrote?) Owncloud does NOT require php-mysql, it requires 
php-pdo_mysql. In PHP versions before 7.0 that pulled in the 
corresponding php-mysql port. It is NOT a requirement (there, I said it 
a THIRD time).


From their docs at 
https://doc.owncloud.org/server/9.0/admin_manual/installation/source_installation.html


Database connectors (pick the one for your database:)

PHP module sqlite (>= 3, usually not recommended for performance reasons)
PHP module pdo_mysql (MySQL/MariaDB)
PHP module pgsql (requires PostgreSQL >= 9.0)

Now I may just be dumb, but I don't see a mention of php-mysql (I do 
however see pdo_mysql).


--
Jim Ohlstein


"Never argue with a fool, onlookers may not be able to tell the 
difference." - Mark Twain

___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Remmina ported to FreeBSD

2016-03-15 Thread Antenore Gatta
On Tue, 15 Mar 2016 07:22:49 +0300
Pavel Timofeev  wrote:

> That's great!

Thanks!

> I'm just wondering what version of freerdp you supposed as latest?
> I've seen a lot of new remmina 'releases/tag in github' since last
> year. But freerdp has only release from Sep 2014. That version is
> already in ports tree for a long time.

We build Remmina fetching the latest available commit in the master
branch.

The FreeRDP team is doing their best to make FreeRDP enough stable to
tag a new version, but they don't have a release date so far (and since
a long time now :-( )


-- 
-BEGIN GEEK CODE BLOCK-
Version: 3.12
GIT !d s: !a C++ UL P+++ L+++ E--- W+++ N+++ o-- K- w--- 
O+ M-- V-- PS+++ PE Y+ PGP t+++ 5++ X R++ tv- b+ DI D++ 
G e+ h r+++ y 
--END GEEK CODE BLOCK--
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Remmina ported to FreeBSD

2016-03-15 Thread Antenore Gatta
On Mon, 14 Mar 2016 14:59:02 -0700
"Chris H"  wrote:

> On Mon, 14 Mar 2016 16:06:15 +0100 Antenore Gatta
>  wrote
> 
> > 
> > [1]https://github.com/FreeRDP/Remmina/pull/779 (merged in main
> > trunk)
> > [2]https://github.com/FreeRDP/Remmina/wiki/How-to-compile-Remmina-on-FreeBSD
> > 
> >   
> Hello, Antenore.
> Looking at [2] it appears you have a somewhat fat RUN_DEPENDS list
> for each of the 2 ports you intend to create. You can probably get
> up to speed fairly quickly by reading the Slow Porting[3] section
> of the FreeBSD porters documentation. You should be fine mostly
> glossing over it, using the appendixes for references, as need be.
> After giving it a quick read, look in the ports tree for some
> examples of similar applications to get a better feel for how to
> compose the Makefile, and what's needed to create the additional
> files to create a complete port for your port(s). If, along the way
> you still find you have questions; feel free to email me off list,
> and I'll be happy to help you out. You also have the FreeBSD Forums[4]
> and IRC channels[5] available to you for support.
> 
> [3]
> https://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/slow-porting.html
> [4] http://forums.freebsd.org
> [5] https://www.freebsd.org/community/irc.html
> 
> Hope this helps!
> 
> --Chris
> 


Thanks a lot Chris! 
I'll look deeeply into it in the next days and thanks a lot as well for
your support offer. I'll do my best to don't bother you.


-- 
-BEGIN GEEK CODE BLOCK-
Version: 3.12
GIT !d s: !a C++ UL P+++ L+++ E--- W+++ N+++ o-- K- w--- 
O+ M-- V-- PS+++ PE Y+ PGP t+++ 5++ X R++ tv- b+ DI D++ 
G e+ h r+++ y 
--END GEEK CODE BLOCK--
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Owncloud port marked broken with PHP 7.0 and MySQL

2016-03-15 Thread Mathieu Arnold


+--On 14 mars 2016 16:57:19 -0400 Jim Ohlstein  wrote:
| Hello,
| 
| Not sure of the motivation behind this. Owncloud has supported PHP 7.0
| since prior to this release (9.0.0). See
| https://owncloud.org/blog/php-7-is-here-and-owncloud-is-ready/. Perhaps
| removing the unnecessary php(Xx)-mysql runtime requirement is what's
| actually needed, as it actually requires php(Xx)-pdo-mysql. That in
| itself creates a php-mysql dependency in PHP versions up to 5.6, but not
| in later versions, such as 7.0.

The owncloud port needs mysql, php 7.0 does not provide mysql, so it was
marked broken, along with all the ports that do so, and who also don't
build with 7.0.

-- 
Mathieu Arnold

pgp0m8rFpw8CR.pgp
Description: PGP signature


Re: Remmina ported to FreeBSD

2016-03-15 Thread Antenore Gatta
On Tue, 15 Mar 2016 05:27:10 +0100
Kurt Jaeger  wrote:

> Hi!
> 
> > Since a couple of years, I'm the new maintainer of Remmina (with
> > another guy, Giovanni), a GTK remote desktop application.
> > 
> > I've also got rid of most of my Linux desktop to pass to FreeBSD as
> > my main desktop environment (philosophical reasons).
> > 
> > I've modified Remmina and requested some changes in the last
> > FreeRDP version so that both now, compile on FreeBSD without any
> > (almost) issues. [1][2]  
> 
> There is this attempt to update freerdp in the ports
> 
> https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198618
> 
> which is somehow difficult to solve, as vinagre, another client,
> seems to fail with the update. Any ideas ?
> 

I didn't use the port, that is the reason why I'm here :-)

I had to remove freerdp (and so vinagre and kde as well) to be able to
install FreeRDP and Remmina by hand.

I'm not yet an expert (well I'm barely a newbie as highéighted) but
surely I'll have to work with some meta package.

I'll try in the next days (slowly but surely).

-- 
-BEGIN GEEK CODE BLOCK-
Version: 3.12
GIT !d s: !a C++ UL P+++ L+++ E--- W+++ N+++ o-- K- w--- 
O+ M-- V-- PS+++ PE Y+ PGP t+++ 5++ X R++ tv- b+ DI D++ 
G e+ h r+++ y 
--END GEEK CODE BLOCK--
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"

Re: Remmina ported to FreeBSD

2016-03-15 Thread Antenore Gatta
On Tue, 15 Mar 2016 07:28:51 +0100
Kurt Jaeger  wrote:

> Hi!
> 
> > I'm just wondering what version of freerdp you supposed as latest?
> > I've seen a lot of new remmina 'releases/tag in github' since last
> > year. But freerdp has only release from Sep 2014. That version is
> > already in ports tree for a long time.  
> 
> An updated net/freerdp (GH_TAGNAME=c5fd49c) builds, as do
> all its depends:
> 
> multimedia/vlc
> net/vinagre
> net/guacamole-server
> net/xrdp-devel
> net/krdc
> 
> Maybe with an updated remmina patch this will work as well ?
> 

This is a good news, c5fd49c is the latest commit :-)

-- 
-BEGIN GEEK CODE BLOCK-
Version: 3.12
GIT !d s: !a C++ UL P+++ L+++ E--- W+++ N+++ o-- K- w--- 
O+ M-- V-- PS+++ PE Y+ PGP t+++ 5++ X R++ tv- b+ DI D++ 
G e+ h r+++ y 
--END GEEK CODE BLOCK--
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


FreeBSD ports you maintain which are out of date

2016-03-15 Thread portscout
Dear port maintainer,

The portscout new distfile checker has detected that one or more of your
ports appears to be out of date. Please take the opportunity to check
each of the ports listed below, and if possible and appropriate,
submit/commit an update. If any ports have already been updated, you can
safely ignore the entry.

You will not be e-mailed again for any of the port/version combinations
below.

Full details can be found at the following URL:
http://portscout.freebsd.org/po...@freebsd.org.html


Port| Current version | New version
+-+
security/libzrtpcppcore | 4.6.0   | v4.6.3
+-+


If any of the above results are invalid, please check the following page
for details on how to improve portscout's detection and selection of
distfiles on a per-port basis:

http://portscout.freebsd.org/info/portscout-portconfig.txt

Thanks.
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Remmina ported to FreeBSD

2016-03-15 Thread Kurt Jaeger
Hi!

> I'm just wondering what version of freerdp you supposed as latest?
> I've seen a lot of new remmina 'releases/tag in github' since last
> year. But freerdp has only release from Sep 2014. That version is
> already in ports tree for a long time.

An updated net/freerdp (GH_TAGNAME=c5fd49c) builds, as do
all its depends:

multimedia/vlc
net/vinagre
net/guacamole-server
net/xrdp-devel
net/krdc

Maybe with an updated remmina patch this will work as well ?

-- 
p...@opsec.eu+49 171 3101372 4 years to go !
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"