XFCE keyboard layout tab missing

2012-05-17 Thread Takashi Fujita
M9686J/A Mac mini G4 FreeBSD 9-Release is installed in 1.25 GHz.

Xfce4.10 is installed.

An application menu -> setup -> when a keyboard is opened, there is no
tab of a layout.

How is this displayed if it carries out?

-- 
Takashi Fujita
rina.invers...@gmail.com
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


FreeBSD and libusb

2012-05-17 Thread Jan Dakinevich
There are some difficulties when porting software, that depends on libusb
and
check for it with pkgconfig, because there is no .pc file in a base system.
But
what do you think about idea to change devel/libusb so file libusb-1.0.pc
file
would be created via port? IMO it will provide opaque way for porting and
don't
break compatibility in earlier version of FreeBSD.
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Asterisk GUI port?

2012-05-17 Thread Kaya Saman

On 05/17/2012 10:46 PM, Bob Eager wrote:

On Thu, 17 May 2012 19:45:21 +0100
Kaya Saman  wrote:


Hi,

I'm wondering if there is any port for a version of the Asterisk GUI??

Either asterisk-ui or FreePBX ??


I currently have an old and broken version of Trixbox CE installed
and I want to move away from Linux as much as possible as FreeBSD is
so much better in so many areas.


Could anyone suggest anything or do I have to go back to Linux again?

I have seen a port called asterisk-ui but running FreeBSD 8.2 AMD64
RELEASE I couldn't find it within the ports tree I looked under
/usr/ports/net/

cd /usr/ports; make search name=asterisk

One of the items is /usr/ports/www/asterisk-gui - that may be what you
want.


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


Thanks for the response!

This is what I get:

Port:www/asterisk-gui
Moved:
Date:2011-10-14
Reason:Depends on net/asterisk14, which is FORBIDDEN


Asterisk 1.4 is quite old...

Is there an up to date port or an alternative GUI for Asterisk?
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Asterisk GUI port?

2012-05-17 Thread Bob Eager
On Thu, 17 May 2012 19:45:21 +0100
Kaya Saman  wrote:

> Hi,
> 
> I'm wondering if there is any port for a version of the Asterisk GUI??
> 
> Either asterisk-ui or FreePBX ??
> 
> 
> I currently have an old and broken version of Trixbox CE installed
> and I want to move away from Linux as much as possible as FreeBSD is
> so much better in so many areas.
> 
> 
> Could anyone suggest anything or do I have to go back to Linux again?
> 
> I have seen a port called asterisk-ui but running FreeBSD 8.2 AMD64 
> RELEASE I couldn't find it within the ports tree I looked under 
> /usr/ports/net/

cd /usr/ports; make search name=asterisk

One of the items is /usr/ports/www/asterisk-gui - that may be what you
want.


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


Re: On file installation

2012-05-17 Thread Chris Rees
On 17 May 2012 22:30, Fernando Apesteguía  wrote:
>
> El 17/05/2012 22:29, "Chris Rees"  escribió:
>>
>> On 17 May 2012 20:58, Fernando Apesteguía 
>> wrote:
>> > On Tue, May 15, 2012 at 9:11 PM, Fernando Apesteguía
>> >  wrote:
>> >> On Tue, May 15, 2012 at 7:29 PM, Chris Rees  wrote:
>> >>> On 15 May 2012 18:14, Fernando Apesteguía
>> >>>  wrote:
>>  On Mon, May 14, 2012 at 7:40 PM, Fernando Apesteguía
>>   wrote:
>> > On Mon, May 14, 2012 at 7:31 PM, Chris Rees 
>> > wrote:
>> >> On 14 May 2012 18:23, Fernando Apesteguía
>> >>  wrote:
>> >>> Hi,
>> >>>
>> >>> I'm working on a port for an application written in Java and I'm
>> >>> having some problems deciding how to install the application.
>> >>> Previous to the installation, the WRKSRC directory contains some
>> >>> .jar
>> >>> files and some directories along with some .txt files for
>> >>> licenses, but also some .exe and .bat files _which I don't want to
>> >>> install_. It is basically a package that contains both files for
>> >>> windows and non-windows systems.
>> >>>
>> >>> I was thinking on using COPYTREE_SHARE to install everything and
>> >>> then
>> >>> remove the non necessary files, but doesn't look like
>> >>> an elegant solution. Also, I wouldn't like to explicitly specify
>> >>> every
>> >>> one of the files I want to copy. Is there a way of using something
>> >>> similar to bash's extglob so I can copy !(*.exe|*bat)? If not, how
>> >>> to proceed?
>> >>>
>> >>> I already looked at the existent ports to find something similar
>> >>> but
>> >>> it seems hard to find. I also had a look at bsd.port.mk but
>> >>> I couldn't find what I'm looking for.
>> >>
>> >> You can use find primaries with COPYTREE_SHARE such as;
>> >>
>> >> (cd ${WRKSRC}/wherever && ${COPYTREE_SHARE} \*
>> >> ${JAVALIBDIR}/${PORTNAME}/wherever "-not -name \*.exe -and -not
>> >> -name
>> >> \*.bat"
>> >
>> > Thanks! I think that is what I was looking for :)
>> 
>>  Sorry guys, but I think I need more help :). I tried with the
>>  following line:
>> 
>>  ( cd ${WRKSRC}/JDownloader && ${COPYTREE_SHARE} \*
>>  ${PREFIX}/${PORTNAME}/ "! -name \*.exe" )
>> 
>>  but it doesn't seem to follow primaries and it still installs the
>>  .exe
>>  files. I just tried with:
>> 
>>  ( cd ${WRKSRC}/JDownloader && ${COPYTREE_SHARE} \*
>>  ${PREFIX}/${PORTNAME}/ "! -name JDownloader.exe" )
>> 
>>  and check that effectively the file is not installed so I suppose
>>  this
>>  has something to do with quoting and escaping special characters (the
>>  asterisk). I found the following line in audio/xmp/Makefile:
>> 
>>  ( cd ${WRKSRC}/docs && ${COPYTREE_SHARE} \* \
>>                 ${DOCSDIR} '! ( -name Makefile -or -name xmp.1 \
>>                 -or -name *.bak -or -name *.orig )' )
>> 
>>  that seems pretty close to what I'm trying to do, so I tried with
>>  this:
>> 
>>  ( cd ${WRKSRC}/JDownloader && ${COPYTREE_SHARE} \*
>>  ${PREFIX}/${PORTNAME}/ '! ( -name *.exe )' )
>> 
>>  but then, the asterisk is expanded and find fails:
>> 
>>  find: JDownloader.exe: unknown primary or operator
>> 
>>  what am I doing wrong?
>> >>>
>> >>> Escape the *;
>> >>>
>> >>> (cd ${WRKSRC}/JDownloader && ${COPYTREE_SHARE} \*
>> >>> ${PREFIX}/${PORTNAME}/
>> >>>  '! ( -name \*.exe )' )
>> >>
>> >> That executes the following:
>> >>
>> >> (cd /usr/home/fernape/porting/jdownloader/port/work/JDownloader &&
>> >> /bin/sh -c '(/usr/bin/find -d $0 $2 | /usr/bin/cpio -dumpl $1
>> >>>/dev/null  2>&1) &&  /usr/sbin/chown -R root:wheel $1 &&
>> >> /usr/bin/find -d $0 $2 -type d -exec chmod 755 $1/{} \; &&
>> >> /usr/bin/find -d $0 $2 -type f -exec chmod 444 $1/{} \;' -- \*
>> >> /usr/local/jdownloader/ '! ( -name \*.exe )' )
>> >>
>> >> which results in:
>> >>
>> >> $ ls /usr/local/jdownloader
>> >>
>> >> JDUpdate.exe           JDownloaderBETA.exe    jd/
>> >> license.txt            outdated.dat           tools/
>> >> windows_restore.bat
>> >> JDownloader.exe        JDownloaderD3D.exe     jdupdate.jar
>> >> license_german.txt     plugins/               version.txt
>> >> JDownloader.jar        java/                  libs/
>> >> licenses/              tmp/                   windows_createlog.bat
>> >>
>> >> The .exe files are still there.
>> >
>> > Sorry or my insistence :)
>> >
>> > This is what I have in my Makefile:
>> >
>> >        ( cd ${WRKSRC}/JDownloader && ${COPYTREE_SHARE} \* \
>> >                          ${PREFIX}/${PORTNAME} '! ( -name *.exe -or
>> > -name *.dll \
>> >                                                  -or -name *.bat )' )
>> >
>> > what I've observed is that 'make install' fails with this message:
>> >
>> > find: JDownloader.exe: unknown primary or operator
>> > find: JDownloader.exe: unknown primary or

Re: On file installation

2012-05-17 Thread Fernando Apesteguía
El 17/05/2012 22:29, "Chris Rees"  escribió:
>
> On 17 May 2012 20:58, Fernando Apesteguía 
wrote:
> > On Tue, May 15, 2012 at 9:11 PM, Fernando Apesteguía
> >  wrote:
> >> On Tue, May 15, 2012 at 7:29 PM, Chris Rees  wrote:
> >>> On 15 May 2012 18:14, Fernando Apesteguía <
fernando.apesteg...@gmail.com> wrote:
>  On Mon, May 14, 2012 at 7:40 PM, Fernando Apesteguía
>   wrote:
> > On Mon, May 14, 2012 at 7:31 PM, Chris Rees 
wrote:
> >> On 14 May 2012 18:23, Fernando Apesteguía <
fernando.apesteg...@gmail.com> wrote:
> >>> Hi,
> >>>
> >>> I'm working on a port for an application written in Java and I'm
> >>> having some problems deciding how to install the application.
> >>> Previous to the installation, the WRKSRC directory contains some
.jar
> >>> files and some directories along with some .txt files for
> >>> licenses, but also some .exe and .bat files _which I don't want to
> >>> install_. It is basically a package that contains both files for
> >>> windows and non-windows systems.
> >>>
> >>> I was thinking on using COPYTREE_SHARE to install everything and
then
> >>> remove the non necessary files, but doesn't look like
> >>> an elegant solution. Also, I wouldn't like to explicitly specify
every
> >>> one of the files I want to copy. Is there a way of using something
> >>> similar to bash's extglob so I can copy !(*.exe|*bat)? If not,
how to proceed?
> >>>
> >>> I already looked at the existent ports to find something similar
but
> >>> it seems hard to find. I also had a look at bsd.port.mk but
> >>> I couldn't find what I'm looking for.
> >>
> >> You can use find primaries with COPYTREE_SHARE such as;
> >>
> >> (cd ${WRKSRC}/wherever && ${COPYTREE_SHARE} \*
> >> ${JAVALIBDIR}/${PORTNAME}/wherever "-not -name \*.exe -and -not
-name
> >> \*.bat"
> >
> > Thanks! I think that is what I was looking for :)
> 
>  Sorry guys, but I think I need more help :). I tried with the
following line:
> 
>  ( cd ${WRKSRC}/JDownloader && ${COPYTREE_SHARE} \*
>  ${PREFIX}/${PORTNAME}/ "! -name \*.exe" )
> 
>  but it doesn't seem to follow primaries and it still installs the
.exe
>  files. I just tried with:
> 
>  ( cd ${WRKSRC}/JDownloader && ${COPYTREE_SHARE} \*
>  ${PREFIX}/${PORTNAME}/ "! -name JDownloader.exe" )
> 
>  and check that effectively the file is not installed so I suppose
this
>  has something to do with quoting and escaping special characters (the
>  asterisk). I found the following line in audio/xmp/Makefile:
> 
>  ( cd ${WRKSRC}/docs && ${COPYTREE_SHARE} \* \
> ${DOCSDIR} '! ( -name Makefile -or -name xmp.1 \
> -or -name *.bak -or -name *.orig )' )
> 
>  that seems pretty close to what I'm trying to do, so I tried with
this:
> 
>  ( cd ${WRKSRC}/JDownloader && ${COPYTREE_SHARE} \*
>  ${PREFIX}/${PORTNAME}/ '! ( -name *.exe )' )
> 
>  but then, the asterisk is expanded and find fails:
> 
>  find: JDownloader.exe: unknown primary or operator
> 
>  what am I doing wrong?
> >>>
> >>> Escape the *;
> >>>
> >>> (cd ${WRKSRC}/JDownloader && ${COPYTREE_SHARE} \*
${PREFIX}/${PORTNAME}/
> >>>  '! ( -name \*.exe )' )
> >>
> >> That executes the following:
> >>
> >> (cd /usr/home/fernape/porting/jdownloader/port/work/JDownloader &&
> >> /bin/sh -c '(/usr/bin/find -d $0 $2 | /usr/bin/cpio -dumpl $1
> >>>/dev/null  2>&1) &&  /usr/sbin/chown -R root:wheel $1 &&
> >> /usr/bin/find -d $0 $2 -type d -exec chmod 755 $1/{} \; &&
> >> /usr/bin/find -d $0 $2 -type f -exec chmod 444 $1/{} \;' -- \*
> >> /usr/local/jdownloader/ '! ( -name \*.exe )' )
> >>
> >> which results in:
> >>
> >> $ ls /usr/local/jdownloader
> >>
> >> JDUpdate.exe   JDownloaderBETA.exejd/
> >> license.txtoutdated.dat   tools/
> >> windows_restore.bat
> >> JDownloader.exeJDownloaderD3D.exe jdupdate.jar
> >> license_german.txt plugins/   version.txt
> >> JDownloader.jarjava/  libs/
> >> licenses/  tmp/   windows_createlog.bat
> >>
> >> The .exe files are still there.
> >
> > Sorry or my insistence :)
> >
> > This is what I have in my Makefile:
> >
> >( cd ${WRKSRC}/JDownloader && ${COPYTREE_SHARE} \* \
> >  ${PREFIX}/${PORTNAME} '! ( -name *.exe -or
-name *.dll \
> >  -or -name *.bat )' )
> >
> > what I've observed is that 'make install' fails with this message:
> >
> > find: JDownloader.exe: unknown primary or operator
> > find: JDownloader.exe: unknown primary or operator
> >
> > However, if I replace the expression so I filter with something like
> > *.txt and there is only
> > one file in the directory, it works. I checked this with audio/xmp
> >
> > $cat Makefile
> > ...
> > .if !defined(NOP

Re: On file installation

2012-05-17 Thread Chris Rees
On 17 May 2012 20:58, Fernando Apesteguía  wrote:
> On Tue, May 15, 2012 at 9:11 PM, Fernando Apesteguía
>  wrote:
>> On Tue, May 15, 2012 at 7:29 PM, Chris Rees  wrote:
>>> On 15 May 2012 18:14, Fernando Apesteguía  
>>> wrote:
 On Mon, May 14, 2012 at 7:40 PM, Fernando Apesteguía
  wrote:
> On Mon, May 14, 2012 at 7:31 PM, Chris Rees  wrote:
>> On 14 May 2012 18:23, Fernando Apesteguía 
>>  wrote:
>>> Hi,
>>>
>>> I'm working on a port for an application written in Java and I'm
>>> having some problems deciding how to install the application.
>>> Previous to the installation, the WRKSRC directory contains some .jar
>>> files and some directories along with some .txt files for
>>> licenses, but also some .exe and .bat files _which I don't want to
>>> install_. It is basically a package that contains both files for
>>> windows and non-windows systems.
>>>
>>> I was thinking on using COPYTREE_SHARE to install everything and then
>>> remove the non necessary files, but doesn't look like
>>> an elegant solution. Also, I wouldn't like to explicitly specify every
>>> one of the files I want to copy. Is there a way of using something
>>> similar to bash's extglob so I can copy !(*.exe|*bat)? If not, how to 
>>> proceed?
>>>
>>> I already looked at the existent ports to find something similar but
>>> it seems hard to find. I also had a look at bsd.port.mk but
>>> I couldn't find what I'm looking for.
>>
>> You can use find primaries with COPYTREE_SHARE such as;
>>
>> (cd ${WRKSRC}/wherever && ${COPYTREE_SHARE} \*
>> ${JAVALIBDIR}/${PORTNAME}/wherever "-not -name \*.exe -and -not -name
>> \*.bat"
>
> Thanks! I think that is what I was looking for :)

 Sorry guys, but I think I need more help :). I tried with the following 
 line:

 ( cd ${WRKSRC}/JDownloader && ${COPYTREE_SHARE} \*
 ${PREFIX}/${PORTNAME}/ "! -name \*.exe" )

 but it doesn't seem to follow primaries and it still installs the .exe
 files. I just tried with:

 ( cd ${WRKSRC}/JDownloader && ${COPYTREE_SHARE} \*
 ${PREFIX}/${PORTNAME}/ "! -name JDownloader.exe" )

 and check that effectively the file is not installed so I suppose this
 has something to do with quoting and escaping special characters (the
 asterisk). I found the following line in audio/xmp/Makefile:

 ( cd ${WRKSRC}/docs && ${COPYTREE_SHARE} \* \
                ${DOCSDIR} '! ( -name Makefile -or -name xmp.1 \
                -or -name *.bak -or -name *.orig )' )

 that seems pretty close to what I'm trying to do, so I tried with this:

 ( cd ${WRKSRC}/JDownloader && ${COPYTREE_SHARE} \*
 ${PREFIX}/${PORTNAME}/ '! ( -name *.exe )' )

 but then, the asterisk is expanded and find fails:

 find: JDownloader.exe: unknown primary or operator

 what am I doing wrong?
>>>
>>> Escape the *;
>>>
>>> (cd ${WRKSRC}/JDownloader && ${COPYTREE_SHARE} \* ${PREFIX}/${PORTNAME}/
>>>  '! ( -name \*.exe )' )
>>
>> That executes the following:
>>
>> (cd /usr/home/fernape/porting/jdownloader/port/work/JDownloader &&
>> /bin/sh -c '(/usr/bin/find -d $0 $2 | /usr/bin/cpio -dumpl $1
>>>/dev/null  2>&1) &&  /usr/sbin/chown -R root:wheel $1 &&
>> /usr/bin/find -d $0 $2 -type d -exec chmod 755 $1/{} \; &&
>> /usr/bin/find -d $0 $2 -type f -exec chmod 444 $1/{} \;' -- \*
>> /usr/local/jdownloader/ '! ( -name \*.exe )' )
>>
>> which results in:
>>
>> $ ls /usr/local/jdownloader
>>
>> JDUpdate.exe           JDownloaderBETA.exe    jd/
>> license.txt            outdated.dat           tools/
>> windows_restore.bat
>> JDownloader.exe        JDownloaderD3D.exe     jdupdate.jar
>> license_german.txt     plugins/               version.txt
>> JDownloader.jar        java/                  libs/
>> licenses/              tmp/                   windows_createlog.bat
>>
>> The .exe files are still there.
>
> Sorry or my insistence :)
>
> This is what I have in my Makefile:
>
>        ( cd ${WRKSRC}/JDownloader && ${COPYTREE_SHARE} \* \
>                          ${PREFIX}/${PORTNAME} '! ( -name *.exe -or -name 
> *.dll \
>                                                  -or -name *.bat )' )
>
> what I've observed is that 'make install' fails with this message:
>
> find: JDownloader.exe: unknown primary or operator
> find: JDownloader.exe: unknown primary or operator
>
> However, if I replace the expression so I filter with something like
> *.txt and there is only
> one file in the directory, it works. I checked this with audio/xmp
>
> $cat Makefile
> ...
> .if !defined(NOPORTDOCS)
>        ${ECHO_MSG} Installing documentation in ${DOCSDIR}
>        ( cd ${WRKSRC}/docs && ${COPYTREE_SHARE} \* \
>                ${DOCSDIR} '! ( -name Makefile -or -name xmp.1 \
>                -or -name *.bak -or -name *.orig )' )
> .endif
>
> ...
>
> $ make
>
> $ ls work/xmp-3.5.0/docs/*.bak
> 

Re: On file installation

2012-05-17 Thread Fernando Apesteguía
On Tue, May 15, 2012 at 9:11 PM, Fernando Apesteguía
 wrote:
> On Tue, May 15, 2012 at 7:29 PM, Chris Rees  wrote:
>> On 15 May 2012 18:14, Fernando Apesteguía  
>> wrote:
>>> On Mon, May 14, 2012 at 7:40 PM, Fernando Apesteguía
>>>  wrote:
 On Mon, May 14, 2012 at 7:31 PM, Chris Rees  wrote:
> On 14 May 2012 18:23, Fernando Apesteguía  
> wrote:
>> Hi,
>>
>> I'm working on a port for an application written in Java and I'm
>> having some problems deciding how to install the application.
>> Previous to the installation, the WRKSRC directory contains some .jar
>> files and some directories along with some .txt files for
>> licenses, but also some .exe and .bat files _which I don't want to
>> install_. It is basically a package that contains both files for
>> windows and non-windows systems.
>>
>> I was thinking on using COPYTREE_SHARE to install everything and then
>> remove the non necessary files, but doesn't look like
>> an elegant solution. Also, I wouldn't like to explicitly specify every
>> one of the files I want to copy. Is there a way of using something
>> similar to bash's extglob so I can copy !(*.exe|*bat)? If not, how to 
>> proceed?
>>
>> I already looked at the existent ports to find something similar but
>> it seems hard to find. I also had a look at bsd.port.mk but
>> I couldn't find what I'm looking for.
>
> You can use find primaries with COPYTREE_SHARE such as;
>
> (cd ${WRKSRC}/wherever && ${COPYTREE_SHARE} \*
> ${JAVALIBDIR}/${PORTNAME}/wherever "-not -name \*.exe -and -not -name
> \*.bat"

 Thanks! I think that is what I was looking for :)
>>>
>>> Sorry guys, but I think I need more help :). I tried with the following 
>>> line:
>>>
>>> ( cd ${WRKSRC}/JDownloader && ${COPYTREE_SHARE} \*
>>> ${PREFIX}/${PORTNAME}/ "! -name \*.exe" )
>>>
>>> but it doesn't seem to follow primaries and it still installs the .exe
>>> files. I just tried with:
>>>
>>> ( cd ${WRKSRC}/JDownloader && ${COPYTREE_SHARE} \*
>>> ${PREFIX}/${PORTNAME}/ "! -name JDownloader.exe" )
>>>
>>> and check that effectively the file is not installed so I suppose this
>>> has something to do with quoting and escaping special characters (the
>>> asterisk). I found the following line in audio/xmp/Makefile:
>>>
>>> ( cd ${WRKSRC}/docs && ${COPYTREE_SHARE} \* \
>>>                ${DOCSDIR} '! ( -name Makefile -or -name xmp.1 \
>>>                -or -name *.bak -or -name *.orig )' )
>>>
>>> that seems pretty close to what I'm trying to do, so I tried with this:
>>>
>>> ( cd ${WRKSRC}/JDownloader && ${COPYTREE_SHARE} \*
>>> ${PREFIX}/${PORTNAME}/ '! ( -name *.exe )' )
>>>
>>> but then, the asterisk is expanded and find fails:
>>>
>>> find: JDownloader.exe: unknown primary or operator
>>>
>>> what am I doing wrong?
>>
>> Escape the *;
>>
>> (cd ${WRKSRC}/JDownloader && ${COPYTREE_SHARE} \* ${PREFIX}/${PORTNAME}/
>>  '! ( -name \*.exe )' )
>
> That executes the following:
>
> (cd /usr/home/fernape/porting/jdownloader/port/work/JDownloader &&
> /bin/sh -c '(/usr/bin/find -d $0 $2 | /usr/bin/cpio -dumpl $1
>>/dev/null  2>&1) &&  /usr/sbin/chown -R root:wheel $1 &&
> /usr/bin/find -d $0 $2 -type d -exec chmod 755 $1/{} \; &&
> /usr/bin/find -d $0 $2 -type f -exec chmod 444 $1/{} \;' -- \*
> /usr/local/jdownloader/ '! ( -name \*.exe )' )
>
> which results in:
>
> $ ls /usr/local/jdownloader
>
> JDUpdate.exe           JDownloaderBETA.exe    jd/
> license.txt            outdated.dat           tools/
> windows_restore.bat
> JDownloader.exe        JDownloaderD3D.exe     jdupdate.jar
> license_german.txt     plugins/               version.txt
> JDownloader.jar        java/                  libs/
> licenses/              tmp/                   windows_createlog.bat
>
> The .exe files are still there.

Sorry or my insistence :)

This is what I have in my Makefile:

( cd ${WRKSRC}/JDownloader && ${COPYTREE_SHARE} \* \
  ${PREFIX}/${PORTNAME} '! ( -name *.exe -or -name 
*.dll \
  -or -name *.bat )' )

what I've observed is that 'make install' fails with this message:

find: JDownloader.exe: unknown primary or operator
find: JDownloader.exe: unknown primary or operator

However, if I replace the expression so I filter with something like
*.txt and there is only
one file in the directory, it works. I checked this with audio/xmp

$cat Makefile
...
.if !defined(NOPORTDOCS)
${ECHO_MSG} Installing documentation in ${DOCSDIR}
( cd ${WRKSRC}/docs && ${COPYTREE_SHARE} \* \
${DOCSDIR} '! ( -name Makefile -or -name xmp.1 \
-or -name *.bak -or -name *.orig )' )
.endif

...

$ make

$ ls work/xmp-3.5.0/docs/*.bak
work/xmp-3.5.0/docs/xmp.1.bak

Only one file (make install works fine).

$ touch work/xmp-3.5.0/docs/test.bak

$make install

===>  Installing for xmp-3.5.0,1
===>   xmp-3.5.0,1 depends on file: /usr/

Asterisk GUI port?

2012-05-17 Thread Kaya Saman

Hi,

I'm wondering if there is any port for a version of the Asterisk GUI??

Either asterisk-ui or FreePBX ??


I currently have an old and broken version of Trixbox CE installed and I 
want to move away from Linux as much as possible as FreeBSD is so much 
better in so many areas.



Could anyone suggest anything or do I have to go back to Linux again?

I have seen a port called asterisk-ui but running FreeBSD 8.2 AMD64 
RELEASE I couldn't find it within the ports tree I looked under 
/usr/ports/net/



Regards,


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


Re: Problem building cmake

2012-05-17 Thread Raphael Kubo da Costa
Francisco Souza  writes:

> I managed to build cmake after deinstalling curl... Then I reinstalled
> curl. odd...
>
> Does cmake embbed libcurl?

Yes, it does. I still find your build problem weird, as I have curl
installed here and have never had any problems building cmake.
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


x11-wm/stumpwm refuses to build with clisp

2012-05-17 Thread Hans de Hartog

   stumpwm refuses to build with clisp,
   even when clisp is built with CLX_NEW.
   It's looking for clx.o in the wrong place.
   Will you please look into this?
   Thank you
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: x11-toolkits/wxgtk29

2012-05-17 Thread Rainer Hurling

On 17.05.2012 09:37 (UTC+1), Rainer Hurling wrote:

Max,

many thanks for your update! Unfortunately is does not compile on my
10.0-CURRENT (amd64) box:

[..snip..]
c++ -o wxrc wxrc_wxrc.o
-L/usr/ports/x11-toolkits/wxgtk29/work/wxWidgets-2.9.3/lib -pthread
-L/usr/local/lib -lwx_baseu_xml-2.9 -lexpat -lwx_baseu-2.9
-lwxregexu-2.9 -pthread -L/usr/local/lib
-Wl,--version-script,/usr/ports/x11-toolkits/wxgtk29/work/wxWidgets-2.9.3/version-script
-lz -liconv -L/usr/local/lib -pthread -lm -lz -liconv -L/usr/local/lib
-pthread -lm
/usr/ports/x11-toolkits/wxgtk29/work/wxWidgets-2.9.3/lib/libwx_baseu-2.9.so:
undefined reference to `inotify_add_watch'
/usr/ports/x11-toolkits/wxgtk29/work/wxWidgets-2.9.3/lib/libwx_baseu-2.9.so:
undefined reference to `inotify_rm_watch'
/usr/ports/x11-toolkits/wxgtk29/work/wxWidgets-2.9.3/lib/libwx_baseu-2.9.so:
undefined reference to `inotify_init'
gmake[1]: *** [wxrc] Fehler 1
gmake[1]: Leaving directory
`/usr/ports/x11-toolkits/wxgtk29/work/wxWidgets-2.9.3/utils/wxrc'
gmake: *** [wxrc] Fehler 2
*** [do-build] Error code 1
Stop in /usr/ports/x11-toolkits/wxgtk29.
*** [build] Error code 1
Stop in /usr/ports/x11-toolkits/wxgtk29.
===>>> make failed for x11-toolkits/wxgtk29
===>>> Aborting update


I just tried the following on my box: deinstall devel/libinotify, update 
x11-toolkits/wxgtk29 and then reinstall devel/libinotify.


That seems to work, but then there no support of inotify functionality, 
of course. I think it would be interesting to integrate inotify in 
wxgtk29, as possible.


Rainer


Do you have any idea what is going on here?
Rainer


On 15.05.2012 08:35 (UTC+1), Max Khon wrote:

Rainer,

I will update the port, hopefully today

Sent from iPhone

On 15.05.2012, at 12:22, Rainer Hurling wrote:


In the ports we find version 2.9.2 of wxGTK2 with source tarball from
2011-07-04. There had been many improvements and 2.9.3 is released
since 2011-12-14.

I am the maintainer of math/saga and I am trying to prepare my port
for the upcoming SAGA GIS version 2.1.0, which needed at least
wxGTK2-2.9.x. With version 2.9.2 there are some strange string
conversion errors and there is a good chance that they are solved in
a newer version.

Are there any plans to update the port version to 2.9.3 (or to
forthcoming 2.9.4) in the near future?

Thanks in advance,
Rainer Hurling


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


Re: no sound @ Xfce4.10 & FreeBSD 9.0 Release

2012-05-17 Thread Jerry
On Thu, 17 May 2012 12:30:21 +0900
Takashi Fujita articulated:

>FreeBSD 9-Release is installed on M9686J/A Mac mini G4 1.25GHz.
>
>/boot/loader.conf:
>sound_load="YES"
>snd_ai2s_load="YES"
>
>cat /dev/sndstat:
>FreeBSD Audio Driver (newpcm: 32bit 2009061500/powerpc)
>Installed devices:
>pcm0:  (play) default
>
>However, a sound is not outputted.
>How does a sound come to be outputted if it carries out?

I have no idea if this even applies to you; however, with an NVivia
card, I had to insert into the sysctl.conf file the following:

hw.snd.default_unit=4

Perhaps you will need to make some manual changes to the file yourself.

Pathetically, we are still forced to play games to get a simple sound
card to work while everyone else does it automatically.

-- 
Jerry ♔

Disclaimer: off-list followups get on-list replies or get ignored.
Please do not ignore the Reply-To header.
__
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: /usr/ports/devel/pecl-intl

2012-05-17 Thread Michael Scheidell



On 5/17/12 4:59 AM, Jos Chrispijn wrote:

Being in the process of installing RoundCube port, I ran into this issue:

/usr/ports/devel/pecl-intl/work/intl-1.1.2/collator/collator_class.c:114: 
error: expected '=', ',', ';', 'asm' or '__attribute__' before 
'Collator_class_functions'
/usr/ports/devel/pecl-intl/work/intl-1.1.2/collator/collator_class.c: 
In function 'collator_register_Collator_class':
/usr/ports/devel/pecl-intl/work/intl-1.1.2/collator/collator_class.c:141: 
error: 'Collator_class_functions' undeclared (first use in this function)
/usr/ports/devel/pecl-intl/work/intl-1.1.2/collator/collator_class.c:141: 
error: (Each undeclared identifier is reported only once
/usr/ports/devel/pecl-intl/work/intl-1.1.2/collator/collator_class.c:141: 
error: for each function it appears in.)

looks like the php5.4 stuff?

you installing, or installed php5.4? or have php5 (that used to be 5.3 
and is now php53?)


#1, update your ports tree
#2, see /usr/ports/updating (you might want to keep with php53, ie; 
rename php5->php53 using portmaster/portmanager/portupgrade0
#3, to report, open a pr (use send-pr, and or support form on 
http://www.freebsd.org/send-pr.html


looks like similar pr's www.freebsd.org/cgi/query-pr.cgi?pr=ports/168000 
and www.freebsd.org/cgi/query-pr.cgi?pr=ports/168002 deal with similar 
issues.


I would /assume/ that pecl-intl 2.0.0 will fix this?



so, #3a:  submit patches against current to update to 2.0.0, synopsis 
should be '[UPDATE] devel/pecl-intl to 2.0.0 to fix php5.4 api change?


--
Michael Scheidell, CTO
>*| * SECNAP Network Security Corporation
d: +1.561.948.2259
w: http://people.freebsd.org/~scheidell
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


/usr/ports/devel/pecl-intl

2012-05-17 Thread Jos Chrispijn

Being in the process of installing RoundCube port, I ran into this issue:

/usr/ports/devel/pecl-intl/work/intl-1.1.2/collator/collator_class.c:114: error: 
expected '=', ',', ';', 'asm' or '__attribute__' before 
'Collator_class_functions'
/usr/ports/devel/pecl-intl/work/intl-1.1.2/collator/collator_class.c: In 
function 'collator_register_Collator_class':
/usr/ports/devel/pecl-intl/work/intl-1.1.2/collator/collator_class.c:141: error: 
'Collator_class_functions' undeclared (first use in this function)
/usr/ports/devel/pecl-intl/work/intl-1.1.2/collator/collator_class.c:141: error: 
(Each undeclared identifier is reported only once
/usr/ports/devel/pecl-intl/work/intl-1.1.2/collator/collator_class.c:141: error: 
for each function it appears in.)

*** Error code 1

Stop in /usr/ports/devel/pecl-intl/work/intl-1.1.2.
*** Error code 1

Stop in /usr/ports/devel/pecl-intl.
*** Error code 1

Stop in /usr/ports/mail/roundcube.
*** Error code 1

--- cut ---

Who can I contact to report this issue?

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


Re: x11-toolkits/wxgtk29

2012-05-17 Thread Rainer Hurling

Max,

many thanks for your update! Unfortunately is does not compile on my 
10.0-CURRENT (amd64) box:


[..snip..]
c++ -o wxrc wxrc_wxrc.o 
-L/usr/ports/x11-toolkits/wxgtk29/work/wxWidgets-2.9.3/lib  -pthread 
-L/usr/local/lib -lwx_baseu_xml-2.9 -lexpat -lwx_baseu-2.9 
-lwxregexu-2.9  -pthread   -L/usr/local/lib 
-Wl,--version-script,/usr/ports/x11-toolkits/wxgtk29/work/wxWidgets-2.9.3/version-script 
-lz -liconv -L/usr/local/lib -pthread -lm  -lz -liconv -L/usr/local/lib 
-pthread -lm
/usr/ports/x11-toolkits/wxgtk29/work/wxWidgets-2.9.3/lib/libwx_baseu-2.9.so: 
undefined reference to `inotify_add_watch'
/usr/ports/x11-toolkits/wxgtk29/work/wxWidgets-2.9.3/lib/libwx_baseu-2.9.so: 
undefined reference to `inotify_rm_watch'
/usr/ports/x11-toolkits/wxgtk29/work/wxWidgets-2.9.3/lib/libwx_baseu-2.9.so: 
undefined reference to `inotify_init'

gmake[1]: *** [wxrc] Fehler 1
gmake[1]: Leaving directory 
`/usr/ports/x11-toolkits/wxgtk29/work/wxWidgets-2.9.3/utils/wxrc'

gmake: *** [wxrc] Fehler 2
*** [do-build] Error code 1
Stop in /usr/ports/x11-toolkits/wxgtk29.
*** [build] Error code 1
Stop in /usr/ports/x11-toolkits/wxgtk29.
===>>> make failed for x11-toolkits/wxgtk29
===>>> Aborting update


Do you have any idea what is going on here?
Rainer


On 15.05.2012 08:35 (UTC+1), Max Khon wrote:

Rainer,

I will update the port, hopefully today

Sent from iPhone

On 15.05.2012, at 12:22, Rainer Hurling  wrote:


In the ports we find version 2.9.2 of wxGTK2 with source tarball from 
2011-07-04. There had been many improvements and 2.9.3 is released since 
2011-12-14.

I am the maintainer of math/saga and I am trying to prepare my port for the 
upcoming SAGA GIS version 2.1.0, which needed at least wxGTK2-2.9.x. With 
version 2.9.2 there are some strange string conversion errors and there is a 
good chance that they are solved in a newer version.

Are there any plans to update the port version to 2.9.3 (or to forthcoming 
2.9.4) in the near future?

Thanks in advance,
Rainer Hurling


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