Re: Good subversion GUI?

2006-04-14 Thread Norberto Meijome
On Thu, 13 Apr 2006 11:02:52 +0100
Ashley Moran [EMAIL PROTECTED] wrote:

 Thanks for the port!  I actually installed the package because I wanted to
 get it working.  No problems with it so far, although I've only done basic
 stuff so far.

FWIW, i've just installed tkcvs, which supports both CVS and SVN (as well as
RCS). it doesn't look as 'modern' as other apps, but it seems to work where
eSVN failed (doing a simple svn copy :-( ).

I haven't tried kdesvn - i refuse to install however many kde support packages
just to run the one app .

B
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Good subversion GUI?

2006-04-14 Thread Ashley Moran


On Apr 14, 2006, at 12:02 pm, Norberto Meijome wrote:

Thanks for the port!  I actually installed the package because I  
wanted to
get it working.  No problems with it so far, although I've only  
done basic

stuff so far.


FWIW, i've just installed tkcvs, which supports both CVS and SVN  
(as well as
RCS). it doesn't look as 'modern' as other apps, but it seems to  
work where

eSVN failed (doing a simple svn copy :-( ).

I haven't tried kdesvn - i refuse to install however many kde  
support packages

just to run the one app .


I'm quite fond of KDE so I was hoping to get something that would  
integrate in with everything else.  When you've already got a 3  
terabyte desktop system installed one more package won't hurt :)


Ideally I'd like to see something like TortoiseSVN.  In fact, it's  
possibly the only Windows app I miss.  KDEsvn goes some way to  
desktop integration - it's not perfect, but it's the best I've seen.   
esvn wound me up - it kept forgetting what folder I was working on  
for a start.


Ashley
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Good subversion GUI?

2006-04-14 Thread guru
El día Thursday, April 13, 2006 a las 05:32:59PM +0800, Yuan Jue escribió:

  I've fetched the port into 6.0-REL...  There is during linking some how
  the -lpthread missing:
 
  $ make
  ...
  /bin/sh /usr/local/bin/libtool15 --silent --mode=link --tag=CXX c++ 
  -Wnon-virtu al-dtor -Wno-long-long -Wundef -Wall -W -Wpointer-arith
  -Wwrite-strings -O2 -O2 -fno-strict-aliasing -pipe -fno-check-new
  -fno-common -fexceptions-o kdesvn -R /usr/local/lib -R /usr/X11R6/lib
  -R /usr/X11R6/lib -R /usr/local/lib -L/usr/X 11R6/lib -L/usr/local/lib 
  -L/usr/local/lib main.o kdesvn.o urldlg.o commandline .o -lkparts
  -Wl,-export-dynamic -L/usr/local/lib -L/usr/X11R6/lib -ljpeg  -L/usr
  /X11R6/lib
  /usr/X11R6/lib/libqt-mt.so: undefined reference to `pthread_cleanup_pop'
  /usr/X11R6/lib/libqt-mt.so: undefined reference to `pthread_attr_destroy'
  /usr/X11R6/lib/libqt-mt.so: undefined reference to `pthread_attr_init'
  /usr/X11R6/lib/libqt-mt.so: undefined reference to `pthread_exit'
  /usr/X11R6/lib/libqt-mt.so: undefined reference to `pthread_cancel'
  ...
 
  I've added it to 'LIBS' in the Makefile (which of course is dirty) but
  then it linked.
 
  # make install gives:
 
  ...
  ===   Running ldconfig
  /sbin/ldconfig -m /usr/local/lib
  ===   Registering installation for kdesvn-0.8.1
  pkg_create: read_plist: unknown command '@dirrmtry
  share/icons/hicolor/128x128/actions' (package tools out of date?)
...
 
  Stop in /usr/ports/devel/kdesvn_port.
 
  and it does not lauch from KDE's menue :-(
  it raises a popup with Error - kdevsvn 'Could not find our part.'
 
 Hi, Matthias
 
 Thanks for your quick reply. I have change the port files in some place
 based on the information you provided. You can download it once more.
 Hope this time you can get it work :-)
 
 If it still has something wrong, please let me know. Thanks

Hi Yuan,

The problem of -lpthread is still there and again I've just added
it to 'LIBS' in the Makefile:

LIBS = -Wl,-export-dynamic -L/usr/local/lib -L/usr/X11R6/lib -ljpeg  -L/usr/X11R
6/lib -lpthread

Now the 'make install' does not complain anymore:

# make install
...
===   Running ldconfig
/sbin/ldconfig -m /usr/local/lib
===   Registering installation for kdesvn-0.8.1

But the kdesvn itself does not work. I've checked it with 'truss'
and it is some how missing its shared object libkdesvnpart.la and
libkdesvnpart.so. The libkdesvnpart.so gets installed in
/usr/local/lib/kde3/libkdesvnpart.so while the libkdesvnpart.la
is not installed at all. Launching kdesvn with truss shows where
it is missing the files:

$ truss -o /tmp/kdesvn.tr kdesvn
KCrash: Application 'kdesvn' crashing...
$ fgrep libkdesvnpart /tmp/kdesvn.tr
access(/home/guru/.kde/lib/kde3/libkdesvnpart.la,4) ERR#2 'No such file or 
directory'
access(/usr/local/lib/kde3/libkdesvnpart.la,4) ERR#2 'No such file or 
directory'
access(/home/guru/.kde/lib/libkdesvnpart.la,4) ERR#2 'No such file or 
directory'
access(/usr/local/lib/libkdesvnpart.la,4)  ERR#2 'No such file or 
directory'
$ 

I have copied the libkdesvnpart.la and libkdesvnpart.so to
/usr/local/lib/ by hand and then kdesvn starts fine:

$ truss -o /tmp/kdesvn.tr kdesvn
package version in svnqt missmatched release version!

kdesvn: Name: cFactory
kdesvn: New SvnActionsData()
kdesvn: New SvnActionsData() finished
kdesvn: SshAgent::querySshAgent(): ENTER
kdesvn: SshAgent::querySshAgent(): ssh-agent already exists
kdesvn: Appname = kdesvn
kdesvn: Destructor KdesvnFileListPrivate done
kdesvn: SshAgent::killSshAgent(): ENTER
$ fgrep libkdesvnpart /tmp/kdesvn.tr
access(/home/guru/.kde/lib/kde3/libkdesvnpart.la,4) ERR#2 'No such file or dir
ectory'
access(/usr/local/lib/kde3/libkdesvnpart.la,4) ERR#2 'No such file or director
y'
access(/home/guru/.kde/lib/libkdesvnpart.la,4) ERR#2 'No such file or director
y'
access(/usr/local/lib/libkdesvnpart.la,4)  = 0 (0x0)
stat(/usr/local/lib/libkdesvnpart.la,0xbfbfe250) = 0 (0x0)
open(/usr/local/lib/libkdesvnpart.la,0x0,0666) = 11 (0xb)
open(/usr/local/lib/.libs/libkdesvnpart.so,0x0,01) ERR#2 'No such file
 or directory'
open(/usr/local/lib/libkdesvnpart.so,0x0,01) = 11 (0xb)

matthias

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Good subversion GUI?

2006-04-14 Thread Yuan Jue
On Friday 14 April 2006 23:45, [EMAIL PROTECTED] wrote:
 El día Thursday, April 13, 2006 a las 05:32:59PM +0800, Yuan Jue escribió:
   I've fetched the port into 6.0-REL...  There is during linking some how
   the -lpthread missing:
  
   $ make
 ...
   /bin/sh /usr/local/bin/libtool15 --silent --mode=link --tag=CXX c++
   -Wnon-virtu al-dtor -Wno-long-long -Wundef -Wall -W -Wpointer-arith
   -Wwrite-strings -O2 -O2 -fno-strict-aliasing -pipe -fno-check-new
   -fno-common -fexceptions-o kdesvn -R /usr/local/lib -R
   /usr/X11R6/lib -R /usr/X11R6/lib -R /usr/local/lib -L/usr/X 11R6/lib
   -L/usr/local/lib -L/usr/local/lib main.o kdesvn.o urldlg.o commandline
   .o -lkparts -Wl,-export-dynamic -L/usr/local/lib -L/usr/X11R6/lib
   -ljpeg  -L/usr /X11R6/lib
   /usr/X11R6/lib/libqt-mt.so: undefined reference to
   `pthread_cleanup_pop' /usr/X11R6/lib/libqt-mt.so: undefined reference
   to `pthread_attr_destroy' /usr/X11R6/lib/libqt-mt.so: undefined
   reference to `pthread_attr_init' /usr/X11R6/lib/libqt-mt.so: undefined
   reference to `pthread_exit' /usr/X11R6/lib/libqt-mt.so: undefined
   reference to `pthread_cancel' ...
  
   I've added it to 'LIBS' in the Makefile (which of course is dirty) but
   then it linked.
  
   # make install gives:
  
 ...
   ===   Running ldconfig
   /sbin/ldconfig -m /usr/local/lib
   ===   Registering installation for kdesvn-0.8.1
   pkg_create: read_plist: unknown command '@dirrmtry
   share/icons/hicolor/128x128/actions' (package tools out of date?)

   ...

   Stop in /usr/ports/devel/kdesvn_port.
  
   and it does not lauch from KDE's menue :-(
   it raises a popup with Error - kdevsvn 'Could not find our part.'
 
  Hi, Matthias
 
  Thanks for your quick reply. I have change the port files in some place
  based on the information you provided. You can download it once more.
  Hope this time you can get it work :-)
 
  If it still has something wrong, please let me know. Thanks

 Hi Yuan,

 The problem of -lpthread is still there and again I've just added
 it to 'LIBS' in the Makefile:

 LIBS = -Wl,-export-dynamic -L/usr/local/lib -L/usr/X11R6/lib -ljpeg 
 -L/usr/X11R 6/lib -lpthread

 Now the 'make install' does not complain anymore:

 # make install
   ...
 ===   Running ldconfig
 /sbin/ldconfig -m /usr/local/lib
 ===   Registering installation for kdesvn-0.8.1

 But the kdesvn itself does not work. I've checked it with 'truss'
 and it is some how missing its shared object libkdesvnpart.la and
 libkdesvnpart.so. The libkdesvnpart.so gets installed in
 /usr/local/lib/kde3/libkdesvnpart.so while the libkdesvnpart.la
 is not installed at all. Launching kdesvn with truss shows where
 it is missing the files:

 $ truss -o /tmp/kdesvn.tr kdesvn
 KCrash: Application 'kdesvn' crashing...
 $ fgrep libkdesvnpart /tmp/kdesvn.tr
 access(/home/guru/.kde/lib/kde3/libkdesvnpart.la,4) ERR#2 'No such file
 or directory' access(/usr/local/lib/kde3/libkdesvnpart.la,4) ERR#2 'No
 such file or directory' access(/home/guru/.kde/lib/libkdesvnpart.la,4)
 ERR#2 'No such file or directory'
 access(/usr/local/lib/libkdesvnpart.la,4)  ERR#2 'No such file or
 directory' $

 I have copied the libkdesvnpart.la and libkdesvnpart.so to
 /usr/local/lib/ by hand and then kdesvn starts fine:

 $ truss -o /tmp/kdesvn.tr kdesvn
 package version in svnqt missmatched release version!

 kdesvn: Name: cFactory
 kdesvn: New SvnActionsData()
 kdesvn: New SvnActionsData() finished
 kdesvn: SshAgent::querySshAgent(): ENTER
 kdesvn: SshAgent::querySshAgent(): ssh-agent already exists
 kdesvn: Appname = kdesvn
 kdesvn: Destructor KdesvnFileListPrivate done
 kdesvn: SshAgent::killSshAgent(): ENTER
 $ fgrep libkdesvnpart /tmp/kdesvn.tr
 access(/home/guru/.kde/lib/kde3/libkdesvnpart.la,4) ERR#2 'No such file
 or dir ectory'
 access(/usr/local/lib/kde3/libkdesvnpart.la,4) ERR#2 'No such file or
 director y'
 access(/home/guru/.kde/lib/libkdesvnpart.la,4) ERR#2 'No such file or
 director y'
 access(/usr/local/lib/libkdesvnpart.la,4)  = 0 (0x0)
 stat(/usr/local/lib/libkdesvnpart.la,0xbfbfe250) = 0 (0x0)
 open(/usr/local/lib/libkdesvnpart.la,0x0,0666) = 11 (0xb)
 open(/usr/local/lib/.libs/libkdesvnpart.so,0x0,01) ERR#2 'No such
 file or directory'
 open(/usr/local/lib/libkdesvnpart.so,0x0,01) = 11 (0xb)


Hi, matthias

The port has been changed a lot and submitted to ports tree. This may
be solve the problem you are encountering :-)

please download the port from my website again and do a test to see
if it works this time.

thanks very much

-- 
Best Regards
Yuan Jue @ www.yuanjue.net
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Good subversion GUI?

2006-04-13 Thread guru
El día Thursday, April 13, 2006 a las 10:43:08AM +0800, Yuan Jue escribió:

 On Tuesday 14 March 2006 19:43, Ashley Moran wrote:
  I use KDE on my desktop and I'm trying to find a good svn GUI but I can't
  see one in the ports.  I've tried eSVN but it's a bit flaky.  I saw a good
  one on KDE-apps.org called KdeSvn but it's not in ports.  KDE integration
  would be nice but any X11 GUI will do.
 
 I have made a port for KDESvn. The problem report is here:
 http://www.freebsd.org/cgi/query-pr.cgi?pr=95676
 
 If anyone is interested in it, please feel free to test it :-)
 
 port: http://www.yuanjue.net/download/kdesvn_port.tar.gz
 package: http://www.yuanjue.net/download/kdesvn-0.8.1.tbz
 
 Any feedback would be very appreciated ^_^

I've fetched the port into 6.0-REL...  There is during linking some how
the -lpthread missing:

$ make
...
/bin/sh /usr/local/bin/libtool15 --silent --mode=link --tag=CXX c++  -Wnon-virtu
al-dtor -Wno-long-long -Wundef -Wall -W -Wpointer-arith -Wwrite-strings -O2 -O2 
-fno-strict-aliasing -pipe -fno-check-new -fno-common -fexceptions-o kdesvn 
-R /usr/local/lib -R /usr/X11R6/lib -R /usr/X11R6/lib -R /usr/local/lib -L/usr/X
11R6/lib -L/usr/local/lib  -L/usr/local/lib main.o kdesvn.o urldlg.o commandline
.o -lkparts -Wl,-export-dynamic -L/usr/local/lib -L/usr/X11R6/lib -ljpeg  -L/usr
/X11R6/lib
/usr/X11R6/lib/libqt-mt.so: undefined reference to `pthread_cleanup_pop'
/usr/X11R6/lib/libqt-mt.so: undefined reference to `pthread_attr_destroy'
/usr/X11R6/lib/libqt-mt.so: undefined reference to `pthread_attr_init'
/usr/X11R6/lib/libqt-mt.so: undefined reference to `pthread_exit'
/usr/X11R6/lib/libqt-mt.so: undefined reference to `pthread_cancel'
...

I've added it to 'LIBS' in the Makefile (which of course is dirty) but
then it linked.

# make install gives:

...
===   Running ldconfig
/sbin/ldconfig -m /usr/local/lib
===   Registering installation for kdesvn-0.8.1
pkg_create: read_plist: unknown command '@dirrmtry 
share/icons/hicolor/128x128/actions' (package tools out of date?)
pkg_create: read_plist: unknown command '@dirrmtry 
share/icons/hicolor/128x128/filesystems' (package tools out of date?)
pkg_create: read_plist: unknown command '@dirrmtry 
share/icons/hicolor/16x16/filesystems' (package tools out of date?)
pkg_create: read_plist: unknown command '@dirrmtry 
share/icons/hicolor/22x22/filesystems' (package tools out of date?)
pkg_create: read_plist: unknown command '@dirrmtry 
share/icons/hicolor/32x32/filesystems' (package tools out of date?)
pkg_create: read_plist: unknown command '@dirrmtry 
share/icons/hicolor/48x48/filesystems' (package tools out of date?)
pkg_create: read_plist: unknown command '@dirrmtry 
share/icons/hicolor/64x64/actions' (package tools out of date?)
pkg_create: read_plist: unknown command '@dirrmtry 
share/icons/hicolor/64x64/filesystems' (package tools out of date?)
pkg_create: read_plist: unknown command '@dirrmtry 
share/icons/hicolor/scalable/actions' (package tools out of date?)
pkg_create: read_plist: unknown command '@dirrmtry 
share/icons/hicolor/scalable/filesystems' (package tools out of date?)
pkg_create: write_plist: unknown command type -1 
(share/icons/hicolor/128x128/actions)
*** Error code 2

Stop in /usr/ports/devel/kdesvn_port.

and it does not lauch from KDE's menue :-(
it raises a popup with Error - kdevsvn 'Could not find our part.'

matthias

-- 
Matthias Apitz / Sisis Informationssysteme GmbH
ein Tochterunternehmen der OCLC PICA B.V. Leiden (NL)
D-82041 Oberhaching, Gruenwalder Weg 28g
Fon: +49 89 / 61308-351, Fax: -399, Mobile +49 170 4527211
http://www.sisis.de/~guru/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Good subversion GUI?

2006-04-13 Thread Yuan Jue
On Thursday 13 April 2006 15:30, [EMAIL PROTECTED] wrote:
 El día Thursday, April 13, 2006 a las 10:43:08AM +0800, Yuan Jue escribió:
  On Tuesday 14 March 2006 19:43, Ashley Moran wrote:
   I use KDE on my desktop and I'm trying to find a good svn GUI but I
   can't see one in the ports.  I've tried eSVN but it's a bit flaky.  I
   saw a good one on KDE-apps.org called KdeSvn but it's not in ports. 
   KDE integration would be nice but any X11 GUI will do.
 
  I have made a port for KDESvn. The problem report is here:
  http://www.freebsd.org/cgi/query-pr.cgi?pr=95676
 
  If anyone is interested in it, please feel free to test it :-)
 
  port: http://www.yuanjue.net/download/kdesvn_port.tar.gz
  package: http://www.yuanjue.net/download/kdesvn-0.8.1.tbz
 
  Any feedback would be very appreciated ^_^

 I've fetched the port into 6.0-REL...  There is during linking some how
 the -lpthread missing:

 $ make
   ...
 /bin/sh /usr/local/bin/libtool15 --silent --mode=link --tag=CXX c++ 
 -Wnon-virtu al-dtor -Wno-long-long -Wundef -Wall -W -Wpointer-arith
 -Wwrite-strings -O2 -O2 -fno-strict-aliasing -pipe -fno-check-new
 -fno-common -fexceptions-o kdesvn -R /usr/local/lib -R /usr/X11R6/lib
 -R /usr/X11R6/lib -R /usr/local/lib -L/usr/X 11R6/lib -L/usr/local/lib 
 -L/usr/local/lib main.o kdesvn.o urldlg.o commandline .o -lkparts
 -Wl,-export-dynamic -L/usr/local/lib -L/usr/X11R6/lib -ljpeg  -L/usr
 /X11R6/lib
 /usr/X11R6/lib/libqt-mt.so: undefined reference to `pthread_cleanup_pop'
 /usr/X11R6/lib/libqt-mt.so: undefined reference to `pthread_attr_destroy'
 /usr/X11R6/lib/libqt-mt.so: undefined reference to `pthread_attr_init'
 /usr/X11R6/lib/libqt-mt.so: undefined reference to `pthread_exit'
 /usr/X11R6/lib/libqt-mt.so: undefined reference to `pthread_cancel'
   ...

 I've added it to 'LIBS' in the Makefile (which of course is dirty) but
 then it linked.

 # make install gives:

   ...
 ===   Running ldconfig
 /sbin/ldconfig -m /usr/local/lib
 ===   Registering installation for kdesvn-0.8.1
 pkg_create: read_plist: unknown command '@dirrmtry
 share/icons/hicolor/128x128/actions' (package tools out of date?)
 pkg_create: read_plist: unknown command '@dirrmtry
 share/icons/hicolor/128x128/filesystems' (package tools out of date?)
 pkg_create: read_plist: unknown command '@dirrmtry
 share/icons/hicolor/16x16/filesystems' (package tools out of date?)
 pkg_create: read_plist: unknown command '@dirrmtry
 share/icons/hicolor/22x22/filesystems' (package tools out of date?)
 pkg_create: read_plist: unknown command '@dirrmtry
 share/icons/hicolor/32x32/filesystems' (package tools out of date?)
 pkg_create: read_plist: unknown command '@dirrmtry
 share/icons/hicolor/48x48/filesystems' (package tools out of date?)
 pkg_create: read_plist: unknown command '@dirrmtry
 share/icons/hicolor/64x64/actions' (package tools out of date?) pkg_create:
 read_plist: unknown command '@dirrmtry
 share/icons/hicolor/64x64/filesystems' (package tools out of date?)
 pkg_create: read_plist: unknown command '@dirrmtry
 share/icons/hicolor/scalable/actions' (package tools out of date?)
 pkg_create: read_plist: unknown command '@dirrmtry
 share/icons/hicolor/scalable/filesystems' (package tools out of date?)
 pkg_create: write_plist: unknown command type -1
 (share/icons/hicolor/128x128/actions) *** Error code 2

 Stop in /usr/ports/devel/kdesvn_port.

 and it does not lauch from KDE's menue :-(
 it raises a popup with Error - kdevsvn 'Could not find our part.'

Hi, Matthias

Thanks for your quick reply. I have change the port files in some place
based on the information you provided. You can download it once more.
Hope this time you can get it work :-)

If it still has something wrong, please let me know. Thanks

-- 
Best Regards
Yuan Jue @ www.yuanjue.net
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Good subversion GUI?

2006-04-13 Thread Ashley Moran
On Thursday 13 April 2006 03:43, Yuan Jue wrote:
 If anyone is interested in it, please feel free to test it :-)

 port: http://www.yuanjue.net/download/kdesvn_port.tar.gz
 package: http://www.yuanjue.net/download/kdesvn-0.8.1.tbz

 Any feedback would be very appreciated ^_^

Hi

Thanks for the port!  I actually installed the package because I wanted to get 
it working.  No problems with it so far, although I've only done basic stuff 
so far.

Cheers
Ashley
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Good subversion GUI?

2006-04-12 Thread Yuan Jue
On Tuesday 14 March 2006 19:43, Ashley Moran wrote:
 I use KDE on my desktop and I'm trying to find a good svn GUI but I can't
 see one in the ports.  I've tried eSVN but it's a bit flaky.  I saw a good
 one on KDE-apps.org called KdeSvn but it's not in ports.  KDE integration
 would be nice but any X11 GUI will do.

I have made a port for KDESvn. The problem report is here:
http://www.freebsd.org/cgi/query-pr.cgi?pr=95676

If anyone is interested in it, please feel free to test it :-)

port: http://www.yuanjue.net/download/kdesvn_port.tar.gz
package: http://www.yuanjue.net/download/kdesvn-0.8.1.tbz

Any feedback would be very appreciated ^_^

-- 
Best Regards
Yuan Jue @ www.yuanjue.net
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Good subversion GUI?

2006-03-14 Thread Yuan Jue
On Tuesday 14 March 2006 19:43, Ashley Moran wrote:
 I use KDE on my desktop and I'm trying to find a good svn GUI but I can't
 see one in the ports.  I've tried eSVN but it's a bit flaky.  I saw a good
 one on KDE-apps.org called KdeSvn but it's not in ports.  KDE integration
 would be nice but any X11 GUI will do.

That's what I want too. KDESVN seems pretty good. Could anyone please
port it to freebsd ?

-- 
Best Regards
Yuan Jue @ www.yuanjue.net
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Good subversion GUI?

2006-03-14 Thread Norberto Meijome
On Tue, 14 Mar 2006 11:43:43 +
Ashley Moran [EMAIL PROTECTED] wrote:

 I use KDE on my desktop and I'm trying to find a good svn GUI but I
 can't see one in the ports.  I've tried eSVN but it's a bit flaky.  I
 saw a good one on KDE-apps.org called KdeSvn but it's not in ports.
 KDE integration would be nice but any X11 GUI will do.

try devel/kdesdk3

B
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Good subversion GUI?

2006-03-14 Thread Norberto Meijome
On Tue, 14 Mar 2006 11:43:43 +
Ashley Moran [EMAIL PROTECTED] wrote:

  I've tried eSVN but it's a bit flaky.

in what way flaky? I haven't found any problems (again, I probably
don't push it hard enough)
thx,
Beto
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]