Re: Pure Swift Cross-platform UIKit (Cocoa Touch) implementation (Supports Linux)

2017-11-21 Thread brunomaximom

> How about implementing uikit in objective c? :)
 
I can be wrong, but I can't see any future for objective-c as a language 
anymore for productivity and leaning curve reasons. People tend to drop/replace 
it nowadays. Some IT companies in my town have started to migrate to Swift 
adding Swift code in existing ObjC projects and writing new software completely 
in Swift too. This is just my view of actual scenario, please don't 
misunderstand me.
___
Discuss-gnustep mailing list
Discuss-gnustep@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnustep


Re: Pure Swift Cross-platform UIKit (Cocoa Touch) implementation (Supports Linux)

2017-11-21 Thread brunomaximom
Nice project. Swift is a great language, but I'd prefer a reimplementation in 
one of these languages:
1) C# if you want/need a "pure" object-oriented language like Java but better 
than it or
2) Go if you want/need a very well designed, smart and flexible language, maybe 
with a OOP minimal library.
IMHO.

> Hi,
> 
> today I came across this library which is a pure Swift Cross-platform UIKit 
> (Cocoa Touch) implementation
> 
> Since this is a GNUstep topic (in the broadest sense) I just thought I share 
> this link here in case anyone is interested:
> 
> https://github.com/PureSwift/Cacao
> 
> 
> Have Fun!
> 
>   Lars
> ___
> Discuss-gnustep mailing list
> Discuss-gnustep@gnu.org
> https://lists.gnu.org/mailman/listinfo/discuss-gnustep
___
Discuss-gnustep mailing list
Discuss-gnustep@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnustep


Atheros AR9485 slow connection

2017-02-26 Thread brunomaximom
Hi all, I'm using FreeBSD 12-CURRENT and I get a very slow speed 
connection since when I was in FreeBSD 10-RELEASE. I have a AR9485 
wireless card and getting =~ 150kB/s, but in Linux I get the real paid 
speed =~ 2MB/s.


Any idea?

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


NetBSD current on ASUS laptop

2016-09-19 Thread brunomaximom

Hi people,
I was wanting to try NetBSD current in my new ASUS laptop (X555UB), but 
I'm facing many issues:


First: the system cannot see my touchpad as pms device. There is no pms 
device listed in dmesg. My touchpad is a Elantech. Any idea?


Second: I have a Skylake i7 CPU and a Nvidia 940M, any idea if some of 
them is supported? In negative case, when will be? Is there a linux-drm 
branch which I can get newer graphics support?


Third: my wifi pci device is not supported, it is an Atheros AR9485. I 
don't think this have a workaround =/.


The reasons I want to try NetBSD on my machine is rump kernel, pkgsrc 
and the NetBSD clean code is so easy to understand and study.


Thanks for any answers.


Re: apparently JIGS not working

2016-09-07 Thread brunomaximom

Well, i tried this example code in JIGS manual:

import gnu.gnustep.base.*;

class PrintHostName
{
  public static void main (String[] args)
  {
NSProcessInfo process;

process = NSProcessInfo.processInfo();
System.out.println (process.hostName());
  }
}

And I get 2 errors:
PrintHostName.java:7: error: cannot find symbol
NSProcessInfo process;
^
  symbol:   class NSProcessInfo
  location: class PrintHostName
PrintHostName.java:9: error: cannot find symbol
process = NSProcessInfo.processInfo();
  ^
  symbol:   variable NSProcessInfo
  location: class PrintHostName
2 errors


___
Discuss-gnustep mailing list
Discuss-gnustep@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnustep


apparently JIGS not working

2016-09-06 Thread brunomaximom

Hi people,
Apparently JIGS is not working with OpenJDK 8, look:

My code:

import gnu.gnustep.base.*;

class test
{
  public static void main (String[] args)
throws Throwable
  {
NSString str;

str = "bla";
System.out.println (str);
  }
}

The error message:

test.java:8: error: cannot find symbol
NSString str;
^
  symbol:   class NSString
  location: class test
1 error


Any idea? Thanks.

___
Discuss-gnustep mailing list
Discuss-gnustep@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnustep


Re: Custom NSToolbar

2016-07-27 Thread brunomaximom

Em 2016-07-27 22:26, Svetlana Tkachenko escreveu:

I think I have identified a bug. Trying to put a segmented control in
toolbar I get a weird behavior (image attached).
Any idea?


Can you please send or upload your code which reproduces the problem?


Sorry, it was not a bug. I was the bug :P

___
Discuss-gnustep mailing list
Discuss-gnustep@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnustep


Custom NSToolbar

2016-07-25 Thread brunomaximom

Hi,
How can I write a NSToolbar with NSButton or NSSegmentedControl for 
example from scratch? I have no idea how to do it.

Thanks.

___
Discuss-gnustep mailing list
Discuss-gnustep@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnustep


GNUstep bugs in printing system and in open/save panel

2016-05-26 Thread brunomaximom

Hi people,
I'm just reporting you I have built TextEdit here and I realized that 
bug #32845 still lives.

I'm reporting too that Open or Save panel are very slow to come in.
OS is FreeBSD using the gnustep packages from ports.
Thanks.

___
Gnustep-dev mailing list
Gnustep-dev@gnu.org
https://lists.gnu.org/mailman/listinfo/gnustep-dev


Re: building corebase on FreeBSD

2016-05-03 Thread brunomaximom

Really thanks. Working.

Em 2016-05-03 23:24, Stefan Bidigaray escreveu:

That's because I forgot to include the -I (that's a dash, uppercase
i). Should've been

CFLAGS=-I/usr/local/include ./configure

It's just taking the compiler where to find the include files.
On May 3, 2016 22:20,  wrote:


So that give me this error:
$ CFLAGS=/usr/local/include ./configure
checking for gcc... cc
checking whether the C compiler works... no
configure: error: in `/usr/home/dharc/Downloads/corebase-master':
configure: error: C compiler cannot create executables

Em 2016-05-03 22:11, Stefan Bidigaray escreveu:


It's an issue caused by how the current configure script works...
It
doesn't check for where the ICU headers are installed. Run:

CFLAGS=/usr/local/include ./configure

See if that fixes the problem for you. I used to test corebase on
FreeBSD, so I don't even know how I never caught such a trivial
oversight.
On May 3, 2016 8:46 PM,  wrote:



___
Discuss-gnustep mailing list
Discuss-gnustep@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnustep


Re: building corebase on FreeBSD

2016-05-03 Thread brunomaximom

So that give me this error:
$ CFLAGS=/usr/local/include ./configure
checking for gcc... cc
checking whether the C compiler works... no
configure: error: in `/usr/home/dharc/Downloads/corebase-master':
configure: error: C compiler cannot create executables

Em 2016-05-03 22:11, Stefan Bidigaray escreveu:

It's an issue caused by how the current configure script works... It
doesn't check for where the ICU headers are installed. Run:

CFLAGS=/usr/local/include ./configure

See if that fixes the problem for you. I used to test corebase on
FreeBSD, so I don't even know how I never caught such a trivial
oversight.
On May 3, 2016 8:46 PM,  wrote:


___
Discuss-gnustep mailing list
Discuss-gnustep@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnustep


building corebase on FreeBSD

2016-05-03 Thread brunomaximom

Hi people,
I'm trying to get corebase building on FreeBSD 11-CURRENT, but I get a 
error with icu:


checking unicode/ucal.h usability... no
checking unicode/ucal.h presence... no
checking for unicode/ucal.h... no
configure: error: Could not find required ICU headers.

But I have icu package installed and gnustep-base builds correctly with 
it.


The config.log is attached then you can see what is happening.

Thanks.This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by libgnustep-corebase configure 0.2, which was
generated by GNU Autoconf 2.69.  Invocation command line was

  $ ./configure 

## - ##
## Platform. ##
## - ##

hostname = pcbsd-3864
uname -m = amd64
uname -r = 11.0-CURRENTAPRIL2016
uname -s = FreeBSD
uname -v = FreeBSD 11.0-CURRENTAPRIL2016 #0 f2b3ebe(master): Tue Apr  5 20:47:46 UTC 2016 root@devastator:/usr/obj/tmp/build/HOyJ/pcbsd/git/freebsd/sys/GENERIC 

/usr/bin/uname -p = amd64
/bin/uname -X = unknown

/bin/arch  = unknown
/usr/bin/arch -k   = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo  = unknown
/bin/machine   = unknown
/usr/bin/oslevel   = unknown
/bin/universe  = unknown

PATH: /usr/home/dharc/GNUstep/Tools
PATH: /usr/local/GNUstep/Local/Tools
PATH: /usr/local/GNUstep/System/Tools
PATH: /sbin
PATH: /bin
PATH: /usr/sbin
PATH: /usr/bin
PATH: /usr/games
PATH: /usr/local/sbin
PATH: /usr/local/bin
PATH: /usr/home/dharc/bin


## --- ##
## Core tests. ##
## --- ##

configure:2250: checking for gcc
configure:2277: result: cc
configure:2506: checking for C compiler version
configure:2515: cc --version >&5
FreeBSD clang version 3.8.0 (tags/RELEASE_380/final 262564) (based on LLVM 3.8.0)
Target: x86_64-unknown-freebsd11.0
Thread model: posix
InstalledDir: /usr/bin
configure:2526: $? = 0
configure:2515: cc -v >&5
FreeBSD clang version 3.8.0 (tags/RELEASE_380/final 262564) (based on LLVM 3.8.0)
Target: x86_64-unknown-freebsd11.0
Thread model: posix
InstalledDir: /usr/bin
configure:2526: $? = 0
configure:2515: cc -V >&5
cc: error: argument to '-V' is missing (expected 1 value)
cc: error: no input files
configure:2526: $? = 1
configure:2515: cc -qversion >&5
cc: error: unknown argument: '-qversion'
cc: error: no input files
configure:2526: $? = 1
configure:2546: checking whether the C compiler works
configure:2568: ccconftest.c  >&5
configure:2572: $? = 0
configure:2620: result: yes
configure:2623: checking for C compiler default output file name
configure:2625: result: a.out
configure:2631: checking for suffix of executables
configure:2638: cc -o conftestconftest.c  >&5
configure:2642: $? = 0
configure:2664: result: 
configure:2686: checking whether we are cross compiling
configure:2694: cc -o conftestconftest.c  >&5
configure:2698: $? = 0
configure:2705: ./conftest
configure:2709: $? = 0
configure:2724: result: no
configure:2729: checking for suffix of object files
configure:2751: cc -c   conftest.c >&5
configure:2755: $? = 0
configure:2776: result: o
configure:2780: checking whether we are using the GNU C compiler
configure:2799: cc -c   conftest.c >&5
configure:2799: $? = 0
configure:2808: result: yes
configure:2817: checking whether cc accepts -g
configure:2837: cc -c -g  conftest.c >&5
configure:2837: $? = 0
configure:2878: result: yes
configure:2895: checking for cc option to accept ISO C89
configure:2958: cc  -c -g -O2  conftest.c >&5
configure:2958: $? = 0
configure:2971: result: none needed
configure:2996: checking how to run the C preprocessor
configure:3066: result: cpp
configure:3086: cpp  conftest.c
configure:3086: $? = 0
configure:3100: cpp  conftest.c
conftest.c:9:10: fatal error: 'ac_nonexistent.h' file not found
#include 
 ^
1 error generated.
configure:3100: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "libgnustep-corebase"
| #define PACKAGE_TARNAME "libgnustep-corebase"
| #define PACKAGE_VERSION "0.2"
| #define PACKAGE_STRING "libgnustep-corebase 0.2"
| #define PACKAGE_BUGREPORT "bug-gnus...@gnu.org"
| #define PACKAGE_URL ""
| /* end confdefs.h.  */
| #include 
configure:3141: checking for grep that handles long lines and -e
configure:3199: result: /usr/bin/grep
configure:3204: checking for egrep
configure:3266: result: /usr/bin/grep -E
configure:3271: checking for ANSI C header files
configure:3291: cc -c -g -O2  conftest.c >&5
configure:3291: $? = 0
configure:3364: cc -o conftest -g -O2   conftest.c  >&5
configure:3364: $? = 0
configure:3364: ./conftest
configure:3364: $? = 0
configure:3375: result: yes
configure:3384: checking for inline
configure:3400: cc -c -g -O2  conftest.c >&5
configure:3400: $? = 0
configure:3408: result: inline
configure:3431: checking for sys/types.h
configure:3431: cc -c -g -O2  conftest.c >&5
configure:3431: $? = 0
configure:3431: result: yes
configure:3431: checking for sys/stat.h
configure:3431: cc -c -g -O2 

weird noise in Facebook chat with Firefox

2015-12-06 Thread brunomaximom

Hi people, I'm trying to return to Firefox, but there are some bugs yet.
I heard a weird noise at Facebook chat with received message after a 
while, it's very undesirable and annoying. Not happening with Chromium.

Any idea? About my system attached.
PC-BSD 11.0-CURRENTDEC2015 Diagnostic Sheet
Generated:  6 de dezembro de 2015 23:31:16 BRST

---PC-BSD Packages

pcbsd-appweb-1448398417
pcbsd-base-2020151023
pcbsd-libsh-1438351389
pcbsd-meta-virtualbox-1429971087
pcbsd-syscache-1447342214
pcbsd-utils-1448502124
pcbsd-utils-qt5-1448388429

-Dmesg Output-

Copyright (c) 1992-2015 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
The Regents of the University of California. All rights reserved.
FreeBSD is a registered trademark of The FreeBSD Foundation.
FreeBSD 11.0-CURRENTDEC2015 #2 a19abdd(freebsd-base-graphics): Wed Dec  2 
15:05:30 UTC 2015

root@devastator:/usr/obj/net/executor/builds/git/freebsd-11-graphics/sys/GENERIC
 amd64
FreeBSD clang version 3.7.0 (tags/RELEASE_370/final 246257) 20150906
VT(vga): resolution 640x480
info: [drm] Initialized drm 1.1.0 20060810
CPU: Intel(R) Core(TM) i5-3230M CPU @ 2.60GHz (2594.16-MHz K8-class CPU)
  Origin="GenuineIntel"  Id=0x306a9  Family=0x6  Model=0x3a  Stepping=9
  
Features=0xbfebfbff
  
Features2=0x7fbae3bf
  AMD Features=0x28100800
  AMD Features2=0x1
  Structured Extended Features=0x281
  XSAVE Features=0x1
  VT-x: PAT,HLT,MTF,PAUSE,EPT,UG,VPID
  TSC: P-state invariant, performance statistics
real memory  = 8589934592 (8192 MB)
avail memory = 8103751680 (7728 MB)
Event timer "LAPIC" quality 600
ACPI APIC Table: 
FreeBSD/SMP: Multiprocessor System Detected: 4 CPUs
FreeBSD/SMP: 1 package(s) x 2 core(s) x 2 SMT threads
 cpu0 (BSP): APIC ID:  0
 cpu1 (AP): APIC ID:  1
 cpu2 (AP): APIC ID:  2
 cpu3 (AP): APIC ID:  3
random: unblocking device.
ioapic0  irqs 0-23 on motherboard
random: entropy device external interface
kbd1 at kbdmux0
module_register_init: MOD_LOAD (vesa, 0x80f825e0, 0) error 19
netmap: loaded module
random: registering fast source Intel Secure Key RNG
random: fast provider: "Intel Secure Key RNG"
vtvga0:  on motherboard
cryptosoft0:  on motherboard
aesni0:  on motherboard
acpi0:  on motherboard
acpi0: Power Button (fixed)
cpu0:  on acpi0
cpu1:  on acpi0
cpu2:  on acpi0
cpu3:  on acpi0
hpet0:  iomem 0xfed0-0xfed003ff on acpi0
Timecounter "HPET" frequency 14318180 Hz quality 950
Event timer "HPET" frequency 14318180 Hz quality 550
Event timer "HPET1" frequency 14318180 Hz quality 440
Event timer "HPET2" frequency 14318180 Hz quality 440
Event timer "HPET3" frequency 14318180 Hz quality 440
Event timer "HPET4" frequency 14318180 Hz quality 440
atrtc0:  port 0x70-0x77 irq 8 on acpi0
atrtc0: Warning: Couldn't map I/O.
Event timer "RTC" frequency 32768 Hz quality 0
attimer0:  port 0x40-0x43,0x50-0x53 irq 0 on acpi0
Timecounter "i8254" frequency 1193182 Hz quality 0
Event timer "i8254" frequency 1193182 Hz quality 100
Timecounter "ACPI-fast" frequency 3579545 Hz quality 900
acpi_timer0: <24-bit timer at 3.579545MHz> port 0x408-0x40b on acpi0
acpi_ec0:  port 0x62,0x66 on acpi0
pcib0:  port 0xcf8-0xcff on acpi0
pci0:  on pcib0
pcib1:  irq 16 at device 1.0 on pci0
pci1:  on pcib1
vgapci0:  port 0x3000-0x30ff mem 
0xa000-0xafff,0xc000-0xc003 irq 16 at device 0.0 on pci1
vgapci1:  port 0x4000-0x403f mem 
0xc100-0xc13f,0xb000-0xbfff irq 16 at device 2.0 on pci0
agp0:  on vgapci1
agp0: aperture size is 256M, detected 65532k stolen memory
vgapci1: Boot video device
xhci0:  mem 0xc160-0xc160 at 
device 20.0 on pci0
xhci0: 32 bytes context size, 64-bit DMA
usbus0: waiting for BIOS to give up control
xhci0: Port routing mask set to 0x
usbus0 on xhci0
pci0:  at device 22.0 (no driver attached)
ehci0:  mem 0xc1619000-0xc16193ff irq 
16 at device 26.0 on pci0
usbus1: EHCI version 1.0
usbus1 on ehci0
hdac0:  mem 0xc161-0xc1613fff irq 22 at 
device 27.0 on pci0
pcib2:  irq 17 at device 28.0 on pci0
pci2:  on pcib2
re0:  port 
0x2000-0x20ff mem 0xc1404000-0xc1404fff,0xc140-0xc1403fff irq 16 at device 
0.0 on pci2
re0: Using 1 MSI-X message
re0: ASPM disabled
re0: Chip rev. 0x2c80
re0: MAC rev. 0x0010
miibus0:  on re0
rgephy0:  PHY 1 on miibus0
rgephy0:  none, 10baseT, 10baseT-FDX, 10baseT-FDX-flow, 100baseTX, 
100baseTX-FDX, 100baseTX-FDX-flow, 1000baseT, 1000baseT-master, 1000baseT-FDX, 
1000baseT-FDX-master, 1000baseT-FDX-flow, 1000baseT-FDX-flow-master, auto, 
auto-flow
re0: Using defaults for TSO: 65518/35/2048
re0: Ethernet 

critical bugs in Firefox, unusable.

2015-12-06 Thread brunomaximom
Hi people, Firefox has critical bugs: crashing all the time with 
different errors and no apparent reason.
I have a printscreen of 3 time I tried to start it, I couldn't use it 
for 1 minute =/.

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


Re: [kde-freebsd] 7 errors in kf5-knewstuff

2015-09-10 Thread brunomaximom

Em 2015-09-10 07:34, T.C.Berner escreveu:

Hi,

Did you deinstall attica, as mentioned in point 3) of the README?


Yes, it's removed from my system and installed kf5-attica and same 
error...

___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] kf5-baloo problem

2015-09-09 Thread brunomaximom

Hi,
All the third-party softwares are installed in /usr/local, but some 
ports stops the build saying kf5-baloo is not in /lib. This is true, it 
is in /usr/local/lib.

Please fix this.
Thanks.
___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] 7 errors in kf5-knewstuff

2015-09-09 Thread brunomaximom
/usr/ports/devel/kf5-knewstuff/work/knewstuff-5.13.0/src/attica/atticaprovider.cpp:259:9: 
error: member function 'hasPrice' not viable: 'this' argument has type 
'const Attica::DownloadDescription', but function is not marked const

if (desc.hasPrice()) {
^~~~
/usr/local/include/attica/downloaddescription.h:58:10: note: 'hasPrice' 
declared here

bool hasPrice();
 ^
/usr/ports/devel/kf5-knewstuff/work/knewstuff-5.13.0/src/attica/atticaprovider.cpp:446:21: 
error: member function 'name' not viable: 'this' argument has type 
'const Attica::DownloadDescription', but function is not marked const

info.name = desc.name();
^~~~
/usr/local/include/attica/downloaddescription.h:60:13: note: 'name' 
declared here

QString name();
^
/usr/ports/devel/kf5-knewstuff/work/knewstuff-5.13.0/src/attica/atticaprovider.cpp:447:28: 
error: member function 'priceAmount' not viable: 'this' argument has 
type 'const Attica::DownloadDescription', but function is not marked 
const

info.priceAmount = desc.priceAmount();
   ^~~~
/usr/local/include/attica/downloaddescription.h:64:13: note: 
'priceAmount' declared here

QString priceAmount();
^
/usr/ports/devel/kf5-knewstuff/work/knewstuff-5.13.0/src/attica/atticaprovider.cpp:448:33: 
error: member function 'distributionType' not viable: 'this' argument 
has type 'const Attica::DownloadDescription', but function is not marked 
const

info.distributionType = desc.distributionType();
^~~~
/usr/local/include/attica/downloaddescription.h:62:13: note: 
'distributionType' declared here

QString distributionType();
^
/usr/ports/devel/kf5-knewstuff/work/knewstuff-5.13.0/src/attica/atticaprovider.cpp:449:32: 
error: member function 'link' not viable: 'this' argument has type 
'const Attica::DownloadDescription', but function is not marked const

info.descriptionLink = desc.link();
   ^~~~
/usr/local/include/attica/downloaddescription.h:61:13: note: 'link' 
declared here

QString link();
^
/usr/ports/devel/kf5-knewstuff/work/knewstuff-5.13.0/src/attica/atticaprovider.cpp:450:19: 
error: member function 'id' not viable: 'this' argument has type 'const 
Attica::DownloadDescription', but function is not marked const

info.id = desc.id();
  ^~~~
/usr/local/include/attica/downloaddescription.h:55:9: note: 'id' 
declared here

int id();
^
/usr/ports/devel/kf5-knewstuff/work/knewstuff-5.13.0/src/attica/atticaprovider.cpp:451:35: 
error: member function 'type' not viable: 'this' argument has type 
'const Attica::DownloadDescription', but function is not marked const
info.isDownloadtypeLink = desc.type() == 
Attica::DownloadDescription::LinkDownload;

  ^~~~
/usr/local/include/attica/downloaddescription.h:56:39: note: 'type' 
declared here

Attica::DownloadDescription::Type type();
  ^
7 errors generated.
--- src/CMakeFiles/KF5NewStuff.dir/attica/atticaprovider.cpp.o ---
*** [src/CMakeFiles/KF5NewStuff.dir/attica/atticaprovider.cpp.o] Error 
code 1


make[11]: stopped in /usr/ports/devel/kf5-knewstuff/work/.build
[ 79%] Building CXX object 
src/CMakeFiles/KF5NewStuff.dir/ui/itemsviewbasedelegate.cpp.o

1 error

___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


Re: [kde-freebsd] [SVN Commit] branches/plasma5/KDE/devel/kf5-kcoreaddons

2015-06-06 Thread brunomaximom

Em 2015-06-06 01:02, Tobias Berner escreveu:

SVN commit 10771 by tcberner:

Hasty fix for devel/kf5-kcoreaddons: Force dependency on
devel/libinotify and add -linotify

 M  +4 -0  Makefile


I think the same is necessary to build ksysguard. The build was going 
wrong with a error in libinotify too and I make these same changes in 
the Makefile and fixed it. Just to make you aware about it.

Thanks.
___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


Re: [kde-freebsd] [SVN Commit] branches/plasma5/KDE

2015-05-09 Thread brunomaximom

Hi


Is it possible to update KDE 4.14 to plasma 5.3.0?



Thank you.


Do you mean, whether it is possible to update from 4.14 to 5.3.0?

If so, there is no update path. To get 5.3.0 I would recommend to

deinstall kde4 entirely and install x11/plasma5-plasma and the

applications you want separately.

Note, these ports are still highly experimental, so they may not work,


or destroy your data, and so forth... (I would be careful with

kdepim for example). That being said, I'm using it myself.

[If you give it a try, please make sure to set both DOCS and NLS to
enabled

in the ports that provide them, as building without them will most
likely

fail at the moment].

mfg Tobias


Hi
Do you think if you could finish this port effort before the next 
quaterly update?
Any idea what will you do to Plasma 5 works on Wayland? Martin Grasslin 
has added systemd dependencies.

Thanks.

___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] Plasma 5

2015-03-28 Thread brunomaximom

Hi,
what's missing to we get Plasma 5 in ports? Kubuntu and Netrunner will 
bring Plasma 5 in next release yet. Would be awesome the same for 
PC-BSD.

Thanks.
___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] Systemsettings critical bug in KDE 4.14.3

2015-03-22 Thread brunomaximom
Hi, critical bug in systemsettings. Everytime shows kcrash window with 
systemsettings PID: 15388 Sinal: Segmentation fault (11) when I go to 
audio and video configuration. More info:


Application: Configurações do Sistema (systemsettings), signal: 
Segmentation fault

[KCrash Handler]
#8  0x000804ed93c0 in strcmp () from /lib/libc.so.7
#9  0x0008245aa5bf in QMetaType::registerNormalizedType () from 
/usr/local/lib/libQt5Core.so.5
#10 0x000823fee30c in operator () from 
/usr/local/lib/libQt5Gui.so.5
#11 0x000823fec83a in operator () from 
/usr/local/lib/libQt5Gui.so.5
#12 0x0008240a78f2 in QOpenGLTimeMonitor::qt_metacall () from 
/usr/local/lib/libQt5Gui.so.5

#13 0x000823d9d3f6 in _init () from /usr/local/lib/libQt5Gui.so.5
#14 0x7fff9e10 in ?? ()
#15 0x00080061e6bf in r_debug_state () from /libexec/ld-elf.so.1
#16 0x000800622d87 in _rtld_get_stack_prot () from 
/libexec/ld-elf.so.1

#17 0x00080061fad3 in dlopen () from /libexec/ld-elf.so.1
#18 0x0008220fa6d1 in vlc_timer_getoverrun () from 
/usr/local/lib/libvlccore.so.8
#19 0x0008220e569a in module_list_free () from 
/usr/local/lib/libvlccore.so.8
#20 0x0008220e5ad8 in module_list_free () from 
/usr/local/lib/libvlccore.so.8
#21 0x0008220e5a1e in module_list_free () from 
/usr/local/lib/libvlccore.so.8
#22 0x0008220e5812 in module_list_free () from 
/usr/local/lib/libvlccore.so.8
#23 0x0008220e52b6 in module_config_free () from 
/usr/local/lib/libvlccore.so.8
#24 0x00082208f36f in libvlc_InternalInit () from 
/usr/local/lib/libvlccore.so.8

#25 0x00082234e137 in libvlc_new () from /usr/local/lib/libvlc.so.5
#26 0x000821e5b94f in qt_plugin_instance () from 
/usr/local/lib/kde4/plugins/phonon_backend/phonon_vlc.so
#27 0x000821e3cff7 in qt_plugin_instance () from 
/usr/local/lib/kde4/plugins/phonon_backend/phonon_vlc.so
#28 0x000821e3cb80 in qt_plugin_instance () from 
/usr/local/lib/kde4/plugins/phonon_backend/phonon_vlc.so
#29 0x000803eccd2c in QPluginLoader::instance () from 
/usr/local/lib/qt4/libQtCore.so.4
#30 0x000809a89f7e in Phonon::Factory::setBackend () from 
/usr/local/lib/libphonon.so.4
#31 0x000809a8a3cf in Phonon::Factory::setBackend () from 
/usr/local/lib/libphonon.so.4
#32 0x000809a8b34e in Phonon::Factory::backend () from 
/usr/local/lib/libphonon.so.4
#33 0x000809a8da56 in Phonon::GlobalConfig::audioOutputDeviceListFor 
() from /usr/local/lib/libphonon.so.4
#34 0x000821c11a89 in qt_plugin_instance () from 
/usr/local/lib/kde4/kcm_phonon.so
#35 0x000821c119f6 in qt_plugin_instance () from 
/usr/local/lib/kde4/kcm_phonon.so
#36 0x000821c0d632 in qt_plugin_instance () from 
/usr/local/lib/kde4/kcm_phonon.so
#37 0x000821c0d317 in qt_plugin_instance () from 
/usr/local/lib/kde4/kcm_phonon.so
#38 0x000821c0d84d in qt_plugin_instance () from 
/usr/local/lib/kde4/kcm_phonon.so
#39 0x0008037a5a37 in KPluginFactory::create () from 
/usr/local/lib/libkdecore.so.5
#40 0x000801bb55fd in KCModuleLoader::showLastLoaderError () from 
/usr/local/lib/libkcmutils.so.4
#41 0x000801bb423c in KCModuleLoader::loadModule () from 
/usr/local/lib/libkcmutils.so.4
#42 0x000801bbb26c in KCModuleProxy::realModule () from 
/usr/local/lib/libkcmutils.so.4
#43 0x000801bbaff2 in KCModuleProxy::realModule () from 
/usr/local/lib/libkcmutils.so.4
#44 0x000801bbc279 in KCModuleProxy::showEvent () from 
/usr/local/lib/libkcmutils.so.4
#45 0x000802a3bf67 in QWidget::event () from 
/usr/local/lib/qt4/libQtGui.so.4
#46 0x0008029ef5bb in QApplicationPrivate::notify_helper () from 
/usr/local/lib/qt4/libQtGui.so.4
#47 0x0008029f2497 in QApplication::notify () from 
/usr/local/lib/qt4/libQtGui.so.4
#48 0x0008020643b0 in KApplication::notify () from 
/usr/local/lib/libkdeui.so.5
#49 0x000803ee9d15 in QCoreApplication::notifyInternal () from 
/usr/local/lib/qt4/libQtCore.so.4
#50 0x000802a3aa8a in QWidgetPrivate::show_helper () from 
/usr/local/lib/qt4/libQtGui.so.4
#51 0x000802a3acd1 in QWidgetPrivate::showChildren () from 
/usr/local/lib/qt4/libQtGui.so.4
#52 0x000802a3a919 in QWidgetPrivate::show_helper () from 
/usr/local/lib/qt4/libQtGui.so.4
#53 0x000802a3b5ac in QWidget::setVisible () from 
/usr/local/lib/qt4/libQtGui.so.4
#54 0x000802a3acca in QWidgetPrivate::showChildren () from 
/usr/local/lib/qt4/libQtGui.so.4
#55 0x000802a3a919 in QWidgetPrivate::show_helper () from 
/usr/local/lib/qt4/libQtGui.so.4
#56 0x000802a3b5ac in QWidget::setVisible () from 
/usr/local/lib/qt4/libQtGui.so.4
#57 0x000802a21aba in QStackedLayout::setCurrentIndex () from 
/usr/local/lib/qt4/libQtGui.so.4
#58 0x00080209df26 in KPageModel::qt_metacall () from 
/usr/local/lib/libkdeui.so.5
#59 0x00080209ec9f in KPageView::viewPosition () from 
/usr/local/lib/libkdeui.so.5
#60 0x000803f011a2 in QMetaObject::activate () from 
/usr/local/lib/qt4/libQtCore.so.4
#61 0x000802f3587d in 

Re: [kde-freebsd] Systemsettings critical bug in KDE 4.14.3

2015-03-22 Thread brunomaximom

Em 2015-03-22 17:21, Schaich Alonso escreveu:

On Sun, 22 Mar 2015 13:41:05 -0300
brunomaxi...@openmailbox.org wrote:


Hi, critical bug in systemsettings. Everytime shows kcrash window with
systemsettings PID: 15388 Sinal: Segmentation fault (11) when I go to
audio and video configuration. More info:



Hi

This is an artifact of the recent VLC version bump. KDE defaults to use
VLC for it's multimedia playback, which can be configured at the
x11/kde4-workspace port.

Recently, VLC was updated and now uses QT5, which is ABI incompatible 
to

QT4 used by KDE. The segmentation fault is an outcome thereof.

To workaround the issue, either rebuild kde4-workspace with gstreamer
instead of VLC support or rebuild multimedia/vlc without the QT5 option
(this will disable the VLC GUI though).

Alonso


The problem persists if I press Shift+Del or unplug the AC cable I 
kcrash report.

___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


Re: [kde-freebsd] kinfocenter bug and ksysguard bug

2015-03-07 Thread brunomaximom

Em 2015-02-16 20:56, Adriaan de Groot escreveu:

On Sunday 15 February 2015 21:54:44 brunomaxi...@openmailbox.org wrote:

The second is in KSysGuard when a process is right-button-clicked on
memory information I get this message: Sorry Your system is not
currently supported (/proc/1192/smaps was not found).


 - Start KSysguard
 - Right-click any process
 - Choose ''Detailed Memory Information'' from the menu
 - Memory information window shows up with the listed error message 
(and it's

butt-ugly, too).

The relevant strings are in /usr/local/lib/libprocessui.so.4.14.2, 
which comes
from kde-workspace/libs/ksysguard/ ; what's happening is some 
javascript (!)
is opening /proc/PID/smaps and parsing the contents thereof, which of 
course

is as portable as the Great Megamountain Magramal.


They are not fixed yet.

___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] kinfocenter bug and ksysguard bug

2015-02-15 Thread brunomaximom

Hi, I'd like to report 2 bugs. I'm not sure this is the right place.
The first bug is in KInfoCenter when DMA Channels is clicked. The 
program closes with /usr/local/lib/kde4/kcm_info.so: Undefined symbol 
devinfo_init message.
The second is in KSysGuard when a process is right-button-clicked on 
memory information I get this message: Sorry Your system is not 
currently supported (/proc/1192/smaps was not found).

Any idea?
Thanks.
___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


Re: [kde-freebsd] coreutils

2014-12-15 Thread brunomaximom

Em 2014-11-05 10:25, Schaich, Alonso escreveu:

On Wed, 05 Nov 2014 03:09:06 -0200
brunomaxi...@openmailbox.org wrote:


Hi folks,

I notice coreutils is a dependency for kde, specifically kdepim. But I
tried to build kdepim removing the coreutils from Makefile and it 
builds

fine. Which are the needs to depend on coreutils? Could coreutils be
removed from KDE?
And what about gcc and bash? Are they necessary too? I have tried to
change my default shell to /bin/sh on Debian + KDE and KDE stopped to
log in, but here FreeBSD I use /bin/sh as default and KDE works
perfectly. So why bash dependency? KDE cannot work with native FreeBSD
components, besides FreeBSD has its own coreutils and shell?

Thanks for answer.


Hi,

KDE doesnot depend on GCC. A component of it, namely kactivitymanagerd
needs C++11 support to build a working binary (it could build but
failed at runtime), and C++11 support was originally only availible
with ports gcc or WITH_CLANG_IS_CC - however the later became the
default in FreeBSD 10, so there's no direct GCC dependency any more.
Packages used by KDE could be depending on it though.


So, can you remove gcc from KDE dependencies? gcc package is big and KDE 
too, I see no reason to keep it there after your explanation or we lose 
packages resources removing it?

KDE has not bash dependency anymore. Just KDE Telepathy.
I am just trying to avoid redundant packages.

___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


Tor browser

2014-11-12 Thread brunomaximom
Hi, I was trying to buil linux-tor-browser but when I run it I got this 
error:


mkdir: cannot create directory `.config': Permission denied
ln: creating symbolic link `.config/ibus': No such file or directory
expr: error while loading shared libraries: libgmp.so.3: cannot open 
shared object file: No such file or directory
/usr/local/bin/linux-tor-browser: line 213: [: 32: unary operator 
expected


Copying skeleton profile to /tmp/linux-tor-browser
Launching Tor Browser for Linux in 
/usr/local/lib/linux-tor-browser/Browser...

Gtk-Message: Failed to load module canberra-gtk-module
Fontconfig error: /etc/fonts/conf.d/10-scale-bitmap-fonts.conf, line 
70: non-double matrix element
Fontconfig error: /etc/fonts/conf.d/10-scale-bitmap-fonts.conf, line 
70: non-double matrix element
Fontconfig warning: /etc/fonts/conf.d/10-scale-bitmap-fonts.conf, line 
78: saw unknown, expected number

Tor Browser exited abnormally.  Exit code: 1

Any idea?
___
freebsd-gecko@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-gecko
To unsubscribe, send any mail to freebsd-gecko-unsubscr...@freebsd.org


Re: [kde-freebsd] KDE 4.12.5 or 4.14.2: no jingle when KDE comes up

2014-11-04 Thread brunomaximom

Em 2014-11-04 14:55, Kris Moore escreveu:

On 11/04/2014 05:13, Matthias Apitz wrote:
El día Monday, November 03, 2014 a las 01:18:03PM -0200, 
brunomaxi...@openmailbox.org escribió:


This was a really stupid question: Somehow they just have been 
disabled

by the update process, don't know why or how. Sorry for the noise.

matthias

No, it's not.
My KDE has bug with GStreamer. Amarok doesn't play sounds with this 
bug:

Yes, it was a stupid question in my case. You might have another
issue/bug, but mine was a silly misconfiguration or an unwanted change
of the configuration.

matthias



The workaround we are using is to build x11/kde4-workspace with VLC
instead of GSTREAMER, then nuke phonon-gstreamer. Makes audio work fine
in amarok and other phonon friends again.


Thanks Kris, is working now but just work if I pkg remove -f 
phonon-gstreamer. Could phonon-gstreamer don't be a mandatory dependecy 
to another KDE packages anymore?

___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] coreutils

2014-11-04 Thread brunomaximom

Hi folks,

I notice coreutils is a dependency for kde, specifically kdepim. But I 
tried to build kdepim removing the coreutils from Makefile and it builds 
fine. Which are the needs to depend on coreutils? Could coreutils be 
removed from KDE?
And what about gcc and bash? Are they necessary too? I have tried to 
change my default shell to /bin/sh on Debian + KDE and KDE stopped to 
log in, but here FreeBSD I use /bin/sh as default and KDE works 
perfectly. So why bash dependency? KDE cannot work with native FreeBSD 
components, besides FreeBSD has its own coreutils and shell?


Thanks for answer.
___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


Re: [kde-freebsd] KDE 4.12.5 or 4.14.2: no jingle when KDE comes up

2014-11-03 Thread brunomaximom

Em 2014-11-03 10:10, Matthias Apitz escreveu:

El día Monday, November 03, 2014 a las 12:23:37PM +0100, Matthias
Apitz escribió:



Hello,

Since 4.12.5 and 4.14.2 I'm missing the jingle bells when KDE comes 
up.
For the rest sound is fine. Any idea? Not that I'm depending on it, 
but

in an office full of Microsoft stations, it was always nice to get the
attention of my co-workers with this :-)


This was a really stupid question: Somehow they just have been disabled
by the update process, don't know why or how. Sorry for the noise.

matthias


No, it's not.
My KDE has bug with GStreamer. Amarok doesn't play sounds with this bug:

(amarok:1724): GStreamer-CRITICAL **: void 
gst_mini_object_unref(GstMiniObject *): assertion `GST_IS_MINI_OBJECT 
(mini_object)' failed
(amarok:1724): GLib-GObject-WARNING **: void g_object_get_valist(GObject 
*, const gchar *, __va_list_tag *): object class `GstPlayBin' has no 
property named `n-video'


And when I click at test in System Settings  Multimedia  AV 
Configuration and select the audio device, no sound too.

___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


Re: [kde-freebsd] KDE 4.12.5 or 4.14.2: no jingle when KDE comes up

2014-11-03 Thread brunomaximom

Em 2014-11-03 14:45, Dwayne MacKinnon escreveu:

On November 3, 2014 11:34:11 AM Jerry wrote:
On Mon, 03 Nov 2014 13:18:03 -0200, brunomaxi...@openmailbox.org 
stated:

 Em 2014-11-03 10:10, Matthias Apitz escreveu:
  El día Monday, November 03, 2014 a las 12:23:37PM +0100, Matthias
 
  Apitz escribió:
  Hello,
 
  Since 4.12.5 and 4.14.2 I'm missing the jingle bells when KDE comes
  up.
  For the rest sound is fine. Any idea? Not that I'm depending on it,
  but
  in an office full of Microsoft stations, it was always nice to get the
  attention of my co-workers with this :-)
 
  This was a really stupid question: Somehow they just have been disabled
  by the update process, don't know why or how. Sorry for the noise.
 
matthias

 No, it's not.
 My KDE has bug with GStreamer. Amarok doesn't play sounds with this bug:

 (amarok:1724): GStreamer-CRITICAL **: void
 gst_mini_object_unref(GstMiniObject *): assertion `GST_IS_MINI_OBJECT
 (mini_object)' failed
 (amarok:1724): GLib-GObject-WARNING **: void g_object_get_valist(GObject
 *, const gchar *, __va_list_tag *): object class `GstPlayBin' has no
 property named `n-video'

 And when I click at test in System Settings  Multimedia  AV
 Configuration and select the audio device, no sound too.

I have exactly the same problem. However, due to the multitude of 
problems

getting sound to work right on FreeBSD, I just ignore it.



I had problems with gstreamer after the current upgrade. I found that 
the main
sound system was linking to the gstreamer1 port, and I had plugins 
missing as

a result.

telepathy-farsight pulls in gstreamer-0.10 as part of its dependencies 
so I've
ended up with both versions of gstreamer co-existing. So far, it all 
seems to

work ok.

Cheers,
DMKk


well, dunno but gstreamer1 doesn't fix that bug...I have these packages 
installed:

gstreamer1-1.2.4
gstreamer1-plugins-1.2.4
gstreamer1-plugins-bad-1.2.4
gstreamer1-plugins-dts-1.2.4
gstreamer1-plugins-ugly-1.2.4
gstreamer1-plugins-mad-1.2.4
gstreamer1-plugins-a52dec-1.2.4
gstreamer1-plugins-good-1.2.4_1
gstreamer1-plugins-ogg-1.2.4
gstreamer1-plugins-vorbis-1.2.4
gstreamer1-plugins-pango-1.2.4
gstreamer1-plugins-theora-1.2.4
___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


kFreeBSD future

2014-09-30 Thread brunomaximom

Hi,
I see http://www.phoronix.com/scan.php?page=news_itempx=MTgwMTE and I 
am concerned with kFreeBSD too. Then I thought: why not make an OS like 
Illumian was...but with FreeBSD? ie, why not make a FreeBSD with Debian 
technologies? FreeBSD with APT+DPKG+Aptitude packages instead pkgng?



--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/710039cf4e8083360e9f169a818a3...@openmailbox.org



node-webkit

2014-09-12 Thread brunomaximom

Hi,
Could you port the node-webkit to FreeBSD? It's useful part to run 
Popcorn Time-like softwares...

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


WebRTC support

2014-08-30 Thread brunomaximom

Hi people,
What happened with WebRTC support in Chromium? When I try 36 I realized 
that it Chromium had WebRTC support, I could see myself in 
opentokrtc.com through the webcam, but this version 37 I can't. Is it a 
regression?

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


Re: Chrome 37 opens then dumps core

2014-08-26 Thread brunomaximom

same here

ATTENTION: default value of option force_s3tc_enable overridden by 
environment.
[69737:346097664:0826/215611:ERROR:cache_creator.cc(125)] Unable to 
create cache
[69737:346097664:0826/215611:ERROR:appcache_storage_impl.cc(1819)] 
Failed to open the appcache diskcache.
[69737:454373376:0826/215648:ERROR:get_updates_processor.cc(240)] 
PostClientToServerMessage() failed during GetUpdates

Segmentation fault (core dumped)
___
freebsd-chromium@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-chromium
To unsubscribe, send any mail to freebsd-chromium-unsubscr...@freebsd.org


Re: Call for Tanglu favlor maintainers!

2014-07-10 Thread brunomaximom

Em 2014-07-10 19:35, Matthias Klumpp escreveu:

Hey there!
Just a quick heads up: If you want Tanglu to provide support for your
favourite flavour (MATE, Cinnamon, some specialized variant for
servers, musicians, etc.), you have to act now!
The first task is to get all packages ready which are required for your 
flavor.

If that is done, we need to supply a seed (just contact me about that)
to generate a meta package for the stuff you want to have installed.
Then, you are able to spin a new live-cd image. It's simple as that,
but a lot of maintenance work needs to go into the packages, and into
testing.
In order to get a live-cd published together with the existing GNOME
and KDE images, we need people to claim responsibility for the
released CD and to supply updates to the stable Tanglu release.
The metapackage seeds are independent from that.
It is still some time until Bartholomea is released, but we need some
action now for your flavor to make it into the final release.
Cheers,
Matthias


I think a Tanglu BSD would be great, there is so much Linux flavors, the 
Tanglu community could help the BSD community using the Debian fame to 
make a desktop distribution...

___
Tanglu-devel mailing list
Tanglu-devel@lists.tanglu.org
http://lists.tanglu.org/mailman/listinfo/tanglu-devel


Re: FreeBSD 10 userland

2014-03-09 Thread brunomaximom

I'm also using xorg 1.15 from sid, with Robert's patch to use devd
instead of HAL.


The patch already is in package or not yet?


--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/8ab94d93c39dc8d63d1297f2dc4c4...@openmailbox.org



Re: my experience with i915kms, newcons and k-11

2014-03-04 Thread brunomaximom

Em 2014-02-27 20:26, Robert Millan escreveu:

On 27/02/2014 23:25, Robert Millan wrote:

On 27/02/2014 18:25, Christoph Egger wrote:
On Sun, Feb 23, 2014 at 11:44:35AM -0300, 
brunomaxi...@openmailbox.org wrote:

but, any input (mouse, touchpad, keyboard) doesn't work, so I can't
log in.
This is happening with you guys or just me? Any idea?
Thanks,


Happens for me since xserver 1.15 or something (very recent update in
jessie). I don't have any input working in any way (kfreebsd 9.2 or
9.3) with slim. I'll try to allocate some time to fix that but can't 
promise anything currently.


Probably HAL-related. xserver 1.15 works fine with the devd patch, I 
tested

that version just a few days ago.


Here's the most recent version. Also needs the Debian bits from:

https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=736765#47


When that patch will be applied in the package?


--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/9cf57ee862a34afa53474ab86e334...@openmailbox.org



Bug#736765: my experience with i915kms, newcons and k-11

2014-03-04 Thread brunomaximom

Em 2014-02-27 20:26, Robert Millan escreveu:

On 27/02/2014 23:25, Robert Millan wrote:

On 27/02/2014 18:25, Christoph Egger wrote:
On Sun, Feb 23, 2014 at 11:44:35AM -0300, 
brunomaxi...@openmailbox.org wrote:

but, any input (mouse, touchpad, keyboard) doesn't work, so I can't
log in.
This is happening with you guys or just me? Any idea?
Thanks,


Happens for me since xserver 1.15 or something (very recent update in
jessie). I don't have any input working in any way (kfreebsd 9.2 or
9.3) with slim. I'll try to allocate some time to fix that but can't 
promise anything currently.


Probably HAL-related. xserver 1.15 works fine with the devd patch, I 
tested

that version just a few days ago.


Here's the most recent version. Also needs the Debian bits from:

https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=736765#47


When that patch will be applied in the package?


--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#736765: my experience with i915kms, newcons and k-11

2014-03-04 Thread brunomaximom

Em 2014-02-27 20:26, Robert Millan escreveu:

On 27/02/2014 23:25, Robert Millan wrote:

On 27/02/2014 18:25, Christoph Egger wrote:
On Sun, Feb 23, 2014 at 11:44:35AM -0300, 
brunomaxi...@openmailbox.org wrote:

but, any input (mouse, touchpad, keyboard) doesn't work, so I can't
log in.
This is happening with you guys or just me? Any idea?
Thanks,


Happens for me since xserver 1.15 or something (very recent update in
jessie). I don't have any input working in any way (kfreebsd 9.2 or
9.3) with slim. I'll try to allocate some time to fix that but can't 
promise anything currently.


Probably HAL-related. xserver 1.15 works fine with the devd patch, I 
tested

that version just a few days ago.


Here's the most recent version. Also needs the Debian bits from:

https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=736765#47


When that patch will be applied in the package?


--
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#736765: my experience with i915kms, newcons and k-11

2014-03-04 Thread brunomaximom

Em 2014-02-27 20:26, Robert Millan escreveu:

On 27/02/2014 23:25, Robert Millan wrote:

On 27/02/2014 18:25, Christoph Egger wrote:
On Sun, Feb 23, 2014 at 11:44:35AM -0300, 
brunomaxi...@openmailbox.org wrote:

but, any input (mouse, touchpad, keyboard) doesn't work, so I can't
log in.
This is happening with you guys or just me? Any idea?
Thanks,


Happens for me since xserver 1.15 or something (very recent update in
jessie). I don't have any input working in any way (kfreebsd 9.2 or
9.3) with slim. I'll try to allocate some time to fix that but can't 
promise anything currently.


Probably HAL-related. xserver 1.15 works fine with the devd patch, I 
tested

that version just a few days ago.


Here's the most recent version. Also needs the Debian bits from:

https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=736765#47


When that patch will be applied in the package?


--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/9cf57ee862a34afa53474ab86e334...@openmailbox.org



GhostBSD's network manager and GNOME 3.12

2014-02-28 Thread brunomaximom

Hey guys, look: https://github.com/GhostBSD/networkmgr
Look the development of GNOME 3.12: 
http://news.softpedia.com/news/GNOME-Display-Manager-3-12-Beta-1-Brings-FreeBSD-Build-Fixes-429616.shtml


What do you think about those informations?


--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/a04d2678c19e15b920e0a89ccbc69...@openmailbox.org



my experience with i915kms, newcons and k-11

2014-02-23 Thread brunomaximom

Hi guys,
I have feedback to you about my almost-test with i915kms on kfreebsd-11.
I follow the instruction:
kldload drm2
kldload i915kms
startx (here i have gnome shell installed, the X starts fine but I got a 
Oops[...] message from Gnome
then I return to tty1 and kill startx, and /etc/init.d/lightdm start, it 
works
but, any input (mouse, touchpad, keyboard) doesn't work, so I can't log 
in.

This is happening with you guys or just me? Any idea?
Thanks,


--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/026e50bebbf891ddccbcd2d2a6667...@openmailbox.org



Re: my experience with i915kms, newcons and k-11

2014-02-23 Thread brunomaximom

Em 2014-02-23 18:21, Robert Millan escreveu:

Hi Bruno,

On 23/02/2014 14:44, brunomaxi...@openmailbox.org wrote:

Hi guys,
I have feedback to you about my almost-test with i915kms on 
kfreebsd-11.

I follow the instruction:
kldload drm2
kldload i915kms


With latest kfreebsd-11 manual kldload drm2 shouldn't be required
anymore, just
kldload i915kms. Does this work for you too?


yes, no problem!

then I return to tty1 and kill startx, and /etc/init.d/lightdm start, 
it works


Did you try VT switching after X has started? It should work with zero
delay (no mode
switch).



Yes, apparently works well.

but, any input (mouse, touchpad, keyboard) doesn't work, so I can't 
log in.

This is happening with you guys or just me? Any idea?


This is most likely HAL-induced breakage. My devd patch should fix it,
but I find
it a bit scary that it completely broke keyboard/mouse for you. Does 
this happen

every time for you, or just in this situation?


just in this situation.


--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/ad3848c97624ba8b928d16fda8559...@openmailbox.org



Re: Bits from the Release Team: Architecture health check

2014-02-19 Thread brunomaximom

Em 2014-02-19 13:45, Cyril Brulebois escreveu:

Robert Millan r...@debian.org (2014-02-19):
After some discussion we've reached the following position statement, 
which

has the approval of Steven, Petr and myself:

~~~
It is with much regret that we observe that GDM has grown hard 
dependencies

on a Linux-specific component (systemd). Although GDM still offers the
possibility of running it using ConsoleKit, this codepath is no longer
supported by upstream, and ConsoleKit itself is considered deprecated
software and has been abandoned by its developers.

Furthermore, we observe that the GNOME UI has grown hard dependencies 
on GDM,
as well as other developments which make it impractical to run GNOME 
on
kernels other than Linux. Our understanding is that GNOME release 
managers don't

see this as a problem and are not actively trying to resolve this.

In this situation we do not think it's reasonably practical for us to 
continue
providing assistance to ensure portability of the GNOME desktop on 
GNU/kFreeBSD.


When it comes to individual applications, we'd like to support as many 
of

them as possible. As long as they are still intended to be portable by
their upstream developers, and that they don't have any hard 
dependency
on the GNOME desktop itself (i.e., they can be run as standalone 
apps), we

intend to continue providing porting assistance for them.
~~~


I thought this might be of some interest:
  http://blogs.gnome.org/mclasen/2014/02/19/on-portability/

Mraw,
KiBi.


Interesting...he say: We don’t make it a secret that modern Linux is 
the primary target that we are developing on and for.. KDE guys also 
make KDE first in LInux, but they have an official web site to support 
this purpose http://freebsd.kde.org/ and Gnome?
KDE also investing in new technologies and at same time they have a team 
to portability, so...



--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/914917e9ce458a98991d41430b9de...@openmailbox.org



Re: Bits from the Release Team: Architecture health check

2014-02-19 Thread brunomaximom

Em 2014-02-19 13:45, Cyril Brulebois escreveu:

Robert Millan r...@debian.org (2014-02-19):
After some discussion we've reached the following position statement, 
which

has the approval of Steven, Petr and myself:

~~~
It is with much regret that we observe that GDM has grown hard 
dependencies

on a Linux-specific component (systemd). Although GDM still offers the
possibility of running it using ConsoleKit, this codepath is no longer
supported by upstream, and ConsoleKit itself is considered deprecated
software and has been abandoned by its developers.

Furthermore, we observe that the GNOME UI has grown hard dependencies 
on GDM,
as well as other developments which make it impractical to run GNOME 
on
kernels other than Linux. Our understanding is that GNOME release 
managers don't

see this as a problem and are not actively trying to resolve this.

In this situation we do not think it's reasonably practical for us to 
continue
providing assistance to ensure portability of the GNOME desktop on 
GNU/kFreeBSD.


When it comes to individual applications, we'd like to support as many 
of

them as possible. As long as they are still intended to be portable by
their upstream developers, and that they don't have any hard 
dependency
on the GNOME desktop itself (i.e., they can be run as standalone 
apps), we

intend to continue providing porting assistance for them.
~~~


I thought this might be of some interest:
  http://blogs.gnome.org/mclasen/2014/02/19/on-portability/

Mraw,
KiBi.


Interesting...he say: We don’t make it a secret that modern Linux is 
the primary target that we are developing on and for.. KDE guys also 
make KDE first in LInux, but they have an official web site to support 
this purpose http://freebsd.kde.org/ and Gnome?
KDE also investing in new technologies and at same time they have a team 
to portability, so...



--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/914917e9ce458a98991d41430b9de...@openmailbox.org



WITH_NEW_XORG?

2014-02-13 Thread brunomaximom
Hi, is there a WITH_NEW_XORG patch in X? I have installed PC-BSD 10.0 
here and my intel 3D graphics is working fine (i have intel and ati). 
I'd like to use it on kFreeBSD too.



--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/a5d9f3409f4a0baeacb98f3ce5307...@openmailbox.org



Re: WITH_NEW_XORG?

2014-02-13 Thread brunomaximom

Em 2014-02-13 13:39, Robert Millan escreveu:

On 13/02/2014 15:35, brunomaxi...@openmailbox.org wrote:
Hi, is there a WITH_NEW_XORG patch in X? I have installed PC-BSD 10.0 
here and my intel 3D graphics is working fine (i have intel and ati). 
I'd like to use it on kFreeBSD too.


That patch is FreeBSD-specific but it is being worked on. In our case
for the transition
we'll require Newcons.

If you want to help, you could test it. It's the default in
kfreebsd-11 (available in
experimental).

--
Robert Millan


so only kfreebsd-11 could give me 3D acceleration or just for a while??


--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/05104d290e1b98390f6da4d95d2ef...@openmailbox.org



Re: Bits from the Release Team: Architecture health check

2014-02-13 Thread brunomaximom

Secondly, there are cases like GDM, where a single unsupported package
have rather long reaching consequences.  In the concrete example,
GNOME (via gnome-core) strictly depends on gdm3, meaning that if gdm3
goes, (more or less) all of gnome goes with it[2].  That in turn means
that task-gnome-desktop cannot be installed on kFreeBSD (I presume 
this

will at least affect d-i).


gdm3 could be replaced by lightdm in the gnome-core package or not?


--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/b72d0d082f92cfec116c5e9dafed4...@openmailbox.org



Re: Bits from the Release Team: Architecture health check

2014-02-13 Thread brunomaximom

Secondly, there are cases like GDM, where a single unsupported package
have rather long reaching consequences.  In the concrete example,
GNOME (via gnome-core) strictly depends on gdm3, meaning that if gdm3
goes, (more or less) all of gnome goes with it[2].  That in turn means
that task-gnome-desktop cannot be installed on kFreeBSD (I presume 
this

will at least affect d-i).


gdm3 could be replaced by lightdm in the gnome-core package or not?


--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/b72d0d082f92cfec116c5e9dafed4...@openmailbox.org



ubuntu's logind

2014-02-07 Thread brunomaximom
Well, today I have talked about consolekit alternatives at Gnome IRC and 
one guy quote logind port from canonical to work without systemd. I 
asked for a link but he doesn't have a link. Do you know about that? The 
only website I found about it is: 
http://www.phoronix.com/scan.php?page=news_itempx=MTMyMDE but I didn't 
find any code about.



--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/ac02826a870ef0e9ba55b6bfbf559...@openmailbox.org



Re: Bits from the Release Team: Architecture health check

2014-01-30 Thread brunomaximom

Em 2014-01-30 16:05, Russ Allbery escreveu:

Robert Millan r...@debian.org writes:

On 30/01/2014 08:15, Raphael Hertzog wrote:



So the console kit path seems like the only option so far (unless
someone ports logind to use some other freebsd technology).



I'm not an expert on session or console management, but seeing how XDM
has managed to work without consolekit for the last 25 years, I have a
hard time believing either consolekit or logind are the only option if
you want to implement a display manager.


They probably aren't.  However, they are, as I understand it, the only
options that GNOME has any support for whatsoever.  Adding support for
some third option might be possible, but I'm dubious that's realistic 
for

a jessie release timeframe.

--
Russ Allbery (r...@debian.org)   
http://www.eyrie.org/~eagle/


why not replace only gdm3 for kfreebsd?
the next problem is wayland...3.12 will have wayland by default and 
wayland wasn't ported to FreeBSD yet, so I think maintain Gnome in 
kFreeBSD port will become impossible...

it's best save efforts
what about this: https://wiki.gnome.org/Projects/Jhbuild/FreeBSD ?


--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/d4ab1b6450e237e5c2192d2d6...@openmailbox.org



Re: Init system for non-Linux ports

2014-01-28 Thread brunomaximom

Em 2014-01-28 20:31, Steven Chamberlain escreveu:

Hi everyone,

What init system would we like to use by default on the non-Linux 
ports

for jessie?

I hope this question is really as straightforward as it looks, and that
we might come to some general agreement much more quickly than the
tech-ctte bug!

Here are the options I can think of - but let me know if you want
something not represented here:

1. stay with sysvinit
2. switch to OpenRC unconditionally
3. switch to Upstart unconditionally
4. switch to Upstart only if Linux uses it by default, otherwise OpenRC
5. further discussion

Please rank the above putting your preferred option first, as per
Debian's usual Condorcet voting system.  This is totally non-binding,
I'm most interested in hearing people's ideas, questions, or the 
reasons

for their choices.

Thanks!
Regards,


4 or 1...a good idea would be openlaunchd...if Debian adopt openlaunchd, 
would be the first GNU distro to have the Apple init system.



--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/8b33a374cb9d9e9600f837d123f9c...@openmailbox.org



kFreeBSD on VirtualBox or other VM

2014-01-19 Thread brunomaximom
Hi, I wanna know if kFreeBSD works perfectly on a VM (VirtualBox, 
qemu/kvm...) because I gave up it on my notebook because the power 
management/temperature and having to tame the grub to boot other 
operating systems. So the best idea was run it on a virtual machine at 
least. I will install FreeBSD on my notebook to learn and then when I 
have learned I reinstall kFreeBSD in HD.

I'll keep reporting bugs usually.
PS: Perfectly = kFreeBSD runs any removable discs, mouse, etc...(maybe 
3D acceleration too).

Thanks



--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/28d120849d2f664d18bb5df7307a0...@openmailbox.org



Bug#735096: Eclipse kfreebsd-amd64 can't create projects

2014-01-17 Thread brunomaximom
Sorry, but the problem persists and sometimes eclipse freezes when it is 
opening...


__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Bug#735096: Eclipse kfreebsd-amd64 can't create projects

2014-01-17 Thread brunomaximom
Sorry, but the problem persists and sometimes eclipse freezes when it is 
opening...



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#735096: Eclipse kfreebsd-amd64 can't create projects

2014-01-17 Thread brunomaximom
Sorry, but the problem persists and sometimes eclipse freezes when it is 
opening...



--
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#735096: eclipse: Eclipse kfreebsd-amd64 can't create projects

2014-01-16 Thread brunomaximom

Em 2014-01-15 13:20, Robert Millan escreveu:

Hi Bruno,

On 12/01/2014 19:16, Bruno Maximo e Melo wrote:

Package: eclipse
Version: 3.8.0~rc4-1
Severity: grave
Justification: renders package unusable

Hi,
I'm reporting this bug from Linux, the problem is: eclipse-cdt and 
eclipse-jdt

are installed but Eclipse can't create C/C++ or Java projects.
I installed too the Pydev and same problem, look the video I made:
http://media.libreplanetbr.org/u/dharc/m/eclipse-bug-kfreebsd-amd64/


When you run it from the command-line, do you see any error messages?


No.

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Re: Bug#735096: eclipse: Eclipse kfreebsd-amd64 can't create projects

2014-01-16 Thread brunomaximom

Em 2014-01-15 13:20, Robert Millan escreveu:

Hi Bruno,

On 12/01/2014 19:16, Bruno Maximo e Melo wrote:

Package: eclipse
Version: 3.8.0~rc4-1
Severity: grave
Justification: renders package unusable

Hi,
I'm reporting this bug from Linux, the problem is: eclipse-cdt and 
eclipse-jdt

are installed but Eclipse can't create C/C++ or Java projects.
I installed too the Pydev and same problem, look the video I made:
http://media.libreplanetbr.org/u/dharc/m/eclipse-bug-kfreebsd-amd64/


When you run it from the command-line, do you see any error messages?


No.


--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/a873d4cc5916538b73fd01f257787...@openmailbox.org



Re: Bug#735097: empathy: Empathy 3.8 kfreebsd-amd64 can't open window conversation

2014-01-16 Thread brunomaximom

Em 2014-01-15 13:20, Robert Millan escreveu:

Hi,

On 12/01/2014 19:21, Bruno Maximo e Melo wrote:

Package: empathy
Version: 3.4.2.3-2+deb7u1
Severity: grave
Justification: renders package unusable

Dear Maintainer,
I'm reporting this bug from Linux.
Empathy can't open window conversation in kfreebsd-amd64 testing. Look 
this

video:
http://media.libreplanetbr.org/u/dharc/m/embathy-bug-kfreebsd-amd64/


When you run it from the command-line, do you see any error messages?


This help?
** (empathy:2384): WARNING **: Couldn't register with accessibility bus: 
Did not receive a reply. Possible causes include: the remote application 
did not send a reply, the message bus security policy blocked the reply, 
the reply timeout expired, or the network connection was broken.



--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/639a8d81c1074dab4d22d80465660...@openmailbox.org



Bug#735097: empathy: Empathy 3.8 kfreebsd-amd64 can't open window conversation

2014-01-16 Thread brunomaximom

Em 2014-01-15 13:20, Robert Millan escreveu:

Hi,

On 12/01/2014 19:21, Bruno Maximo e Melo wrote:

Package: empathy
Version: 3.4.2.3-2+deb7u1
Severity: grave
Justification: renders package unusable

Dear Maintainer,
I'm reporting this bug from Linux.
Empathy can't open window conversation in kfreebsd-amd64 testing. Look 
this

video:
http://media.libreplanetbr.org/u/dharc/m/embathy-bug-kfreebsd-amd64/


When you run it from the command-line, do you see any error messages?


This help?
** (empathy:2384): WARNING **: Couldn't register with accessibility bus: 
Did not receive a reply. Possible causes include: the remote application 
did not send a reply, the message bus security policy blocked the reply, 
the reply timeout expired, or the network connection was broken.



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#735096: eclipse: Eclipse kfreebsd-amd64 can't create projects

2014-01-16 Thread brunomaximom

Em 2014-01-15 13:20, Robert Millan escreveu:

Hi Bruno,

On 12/01/2014 19:16, Bruno Maximo e Melo wrote:

Package: eclipse
Version: 3.8.0~rc4-1
Severity: grave
Justification: renders package unusable

Hi,
I'm reporting this bug from Linux, the problem is: eclipse-cdt and 
eclipse-jdt

are installed but Eclipse can't create C/C++ or Java projects.
I installed too the Pydev and same problem, look the video I made:
http://media.libreplanetbr.org/u/dharc/m/eclipse-bug-kfreebsd-amd64/


When you run it from the command-line, do you see any error messages?


No.


--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#735097: empathy: Empathy 3.8 kfreebsd-amd64 can't open window conversation

2014-01-16 Thread brunomaximom

Em 2014-01-15 13:20, Robert Millan escreveu:

Hi,

On 12/01/2014 19:21, Bruno Maximo e Melo wrote:

Package: empathy
Version: 3.4.2.3-2+deb7u1
Severity: grave
Justification: renders package unusable

Dear Maintainer,
I'm reporting this bug from Linux.
Empathy can't open window conversation in kfreebsd-amd64 testing. Look 
this

video:
http://media.libreplanetbr.org/u/dharc/m/embathy-bug-kfreebsd-amd64/


When you run it from the command-line, do you see any error messages?


This help?
** (empathy:2384): WARNING **: Couldn't register with accessibility bus: 
Did not receive a reply. Possible causes include: the remote application 
did not send a reply, the message bus security policy blocked the reply, 
the reply timeout expired, or the network connection was broken.



--
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#735096: eclipse: Eclipse kfreebsd-amd64 can't create projects

2014-01-16 Thread brunomaximom

Em 2014-01-15 13:20, Robert Millan escreveu:

Hi Bruno,

On 12/01/2014 19:16, Bruno Maximo e Melo wrote:

Package: eclipse
Version: 3.8.0~rc4-1
Severity: grave
Justification: renders package unusable

Hi,
I'm reporting this bug from Linux, the problem is: eclipse-cdt and 
eclipse-jdt

are installed but Eclipse can't create C/C++ or Java projects.
I installed too the Pydev and same problem, look the video I made:
http://media.libreplanetbr.org/u/dharc/m/eclipse-bug-kfreebsd-amd64/


When you run it from the command-line, do you see any error messages?


No.


--
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



possible dpkg bug?

2014-01-12 Thread brunomaximom

Hi guys,
look: http://media.libreplanetbr.org/u/dharc/m/dpkg-bug-kfreebsd-amd64/
any package I install, I get errors like that.
I don't know if it's occuring on GNU/Linux Jessie because I have Linux 
Wheezy here and kFreeBSD Jessie.



--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/2ebc73a8944a286b41c0b8179bf02...@openmailbox.org



Re: sysctl.conf missing?

2014-01-06 Thread brunomaximom

Em 2013-12-27 11:02, Robert Millan escreveu:

On 27/12/2013 06:45, brunomaxi...@openmailbox.org wrote:

hey guys, where is sysctl.conf from freebsd?


See:

freebsd-utils (9.2+ds2-1) UNRELEASED; urgency=low

  * Add /etc/sysctl.conf. It used to be provided by procps, but now it
isn't. Its content is kernel-specific anyway, so let's just use the
FreeBSD version.

and...god, kfreebsd is almost unusable because the laptop temperature 
when i'm using it is able to make me sterile.


Did you try powerd? It's supposed to be installed by default.


how to use powerd? the manual does not clarify much for me.
is there the package freebsd-utils 9.2+ds2-1?


--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/f302507e76283442404c43f5256b2...@openmailbox.org



Re: sysctl.conf missing?

2014-01-06 Thread brunomaximom

Em 2014-01-06 20:54, Robert Millan escreveu:

On 06/01/2014 23:47, brunomaxi...@openmailbox.org wrote:

how to use powerd? the manual does not clarify much for me.


Just install it. Everything should be automated.

so it's not working correctly :P


--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/cde302346ba94015501bfc57757c7...@openmailbox.org



Re: Release sprint results - team changes, auto-rm and arch status

2014-01-05 Thread brunomaximom

So, gnome-shell is working for you?


--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/3d26b6360471ca9a1164153b95fe5...@openmailbox.org



Re: Release sprint results - team changes, auto-rm and arch status

2014-01-05 Thread brunomaximom

Em 2014-01-05 20:34, Robert Millan escreveu:

On 05/01/2014 23:05, brunomaxi...@openmailbox.org wrote:

So, gnome-shell is working for you?


Yes. It just needs a patch from the bug I mentioned.

Or you can edit config.js by hand and comment out the bluetooth /
network-manager
bits.


I think the FreeBSD porters should to know that.


--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/3623bd12bd348b6030ab98fa2f2d5...@openmailbox.org



Re: Re: target FreeBSD version for Jessie

2014-01-02 Thread brunomaximom

I preffer to ship 10.x only in jessie.

Me too.



Is there someone who'd rather have both?


If not, we could proceed with upgrading kfreebsd-kernel-headers (first 
to

experimental and later to unstable).


Me too. A good idea is bring kfreebsd 9.2 for wheezy-backports to 
replace 9.0 or bring 10.0 to replace 9.0 and 9.2 to 8.3.



--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/78a38ee837d6da7a1de55cf8002c4...@openmailbox.org



webcam

2013-12-26 Thread brunomaximom

hey guys, what about webcam support? is it possible? how?
thanks


--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/65fed5a47a1f4d7cc9c19df70f580...@openmailbox.org



Re: mintupdate

2013-12-19 Thread brunomaximom

Em 2013-12-15 15:34, Steven Chamberlain escreveu:

On 15/12/13 04:22, brunomaxi...@openmailbox.org wrote:

Yeah, that's unnecessary.
The program is ported now. What do you wnat? The patch or the package?


Did you patch some existing packaging to produce this?  In that case a
debdiff may be ideal.

Regards,


Hi, I have patched the mintUpdate.py from the mintupdate package.
I renamed the original deb package to mintupdate-mint* and extract it.
About the control file I don't know if it's necessary patch it, because 
the only difference between them it's necessary remove mint-mirrors 
package from de deps and add gksu or kdesudo.

The mint-common package is necessary, but it doesn't need to be ported.
This new mintupdate package can works on *all*, probably on hurd too.
Here is the link to download the package: 
http://packages.linuxmint.com/pool/main/m/mintupdate/  (I believe this 
patch works on the latest packages).

Here is the patch:

--- 
/home/dharc/Downloads/mintupdate-mint_4.5.6_all/usr/lib/linuxmint/mintUpdate/mintUpdate.py	2013-11-30 
00:08:50.0 -0200
+++ 
/home/dharc/Downloads/mintupdate_4.5.6_all/usr/lib/linuxmint/mintUpdate/mintUpdate.py	2013-12-15 
16:15:40.125823217 -0200

@@ -41,20 +41,6 @@ try:
 except Exception, detail:
 print detail

-architecture = commands.getoutput(uname -a)
-if (architecture.find(x86_64) = 0):
-import ctypes
-libc = ctypes.CDLL('libc.so.6')
-libc.prctl(15, 'mintUpdate', 0, 0, 0)
-else:
-import dl
-if os.path.exists('/lib/libc.so.6'):
-libc = dl.open('/lib/libc.so.6')
-libc.call('prctl', 15, 'mintUpdate', 0, 0, 0)
-elif os.path.exists('/lib/i386-linux-gnu/libc.so.6'):
-libc = dl.open('/lib/i386-linux-gnu/libc.so.6')
-libc.call('prctl', 15, 'mintUpdate', 0, 0, 0)
-
 # i18n
 gettext.install(mintupdate, /usr/share/linuxmint/locale)

Considering the mint programs are traditional programs, I hope the 
maintainers from traditional DE like MATE and XFCE use it as replace of 
gnome-packagekit, this is my intention. :D

What's the next step?
Please, try it by yourselves and look for errors.
Thanks


--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/f760402b1d50e4c2e2671eaba7122...@openmailbox.org



Grub possible bug...

2013-12-18 Thread brunomaximom

Hi, kfreebsd grub can't be installed in /dev/ada0, look the message:
Path `/boot/grub' is not readable by GRUB on boot. Installation is 
impossible. Aborting.

Any idea?


--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/029ada91e575800b90b025b5bdfdf...@openmailbox.org



Re: [lp-br-sp] Relato do MediaGoblin no servidor

2013-12-18 Thread brunomaximom
Mas enfim, enquanto a gente fica discutindo aqui, o MG ainda tá de pé 
no
servidor, e ninguém mais subiu material :-P.  Fiquem à vontade pra 
usar!


Bem, minha teoria por enquanto está sendo empiricamente verificável :)


Sim, eu sei disso, mas não é esse o ponto da questão :-).  Eu também
estou procurando não fazer as coisas pensando vamos socar a bota, e 
se

precisarmos de mais coisas a gente assina.


Eu diria que é mais algo como vamos socar a bota e se precisarmos do
hardware de volta a gente conversa e tira do ar. Pra precisar de mais
hardware, o negócio tem que estar bombando. E por enquanto a gente só
está vendo bola de feno passar :)


tenho uns videos de um conhecido meu que faz video pro youtube, mas 
tipo, nao tem absolutamente NAADA a ver com o contexto do 
libreplanet, então deixo pra postar em outro MG.
ainda não tive tempo de criar os vídeos e tenho que procurar software 
pra gravar a tela do GNU/kFreeBSD pra eu começar.

por isso ainda nao postei nadaou melhor, nada de util :P



Re: [PATCH] enable Radeon KMS

2013-12-16 Thread brunomaximom

What? 3D accelertion enabled with no blobs? How?


--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/33273ab8f10d01f69a9ce78606289...@openmailbox.org



Re: [lp-br-sp] Relato do MediaGoblin no servidor

2013-12-16 Thread brunomaximom

Em 2013-12-17 03:25, Sergio Durigan Junior escreveu:

On Monday, December 16 2013, Ricardo Panaggio wrote:


Se minha opinião conta, eu acho que rola deixar rodando. A gente está
subutilizando o servidor por enquanto, então o MG não está roubando
recurso que a gente está precisando agora. Se a gente instalar alguma
coisa mais importante, que precisar dos recursos que o MG está usando,
a gente tira do ar.


Works for me, módulo seria chato tirar o MG do ar depois de usarmos
durante um tempo.  Sério, se começarmos a fazer uso do MG pra subir
vídeos e tal, e de repente tirarmos tudo do ar, vai ser uma merda.  
Essa

é a coisa que mais preocupa; o resto (RAM e processamento), como você
disse, não estão sendo necessários agora.


Que tal fazer uma estimativa de outras coisas pra colocar no servidor em 
um futuro próximo? Ou uma enquete com opções para votarmos nas coisas 
que são mais necessárias para nós agora e que sempre serão.




Re: Re: Release sprint results - team changes, auto-rm and arch status

2013-12-15 Thread brunomaximom
Gnome guys is not interested in help kFreeBSD because now Gnome is 
Linux-only.

FreeBSD guys is porting Gnome 3.6 yet and Debian has 3.10 incoming.
I think is more feasible to bet on a Gnome-derivative DE like MATE 
and/or Cinnamon because they are portable and they are interested in 
being portable.
Because of that I think is more just Cinnamon/Mate be the next default 
for Debian. Something like the former CD and DVD of xfce-lxde, I think 
is possible bring Cinnamon and Mate at the same optical media and still 
be smaller than Gnome. I think that make more sense than bring Xfce 
because the Cinnamon and Mate are forks and can replace Gnome perfectly 
including some packages like Pidgin, Gparted, Icedove and VLC.

Mate is coming for jessie. I think until the freeze we have Mate.


--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/6162c6613da00442822bfd25f6378...@openmailbox.org



Re: Re: Release sprint results - team changes, auto-rm and arch status

2013-12-15 Thread brunomaximom
Gnome guys is not interested in help kFreeBSD because now Gnome is 
Linux-only.

FreeBSD guys is porting Gnome 3.6 yet and Debian has 3.10 incoming.
I think is more feasible to bet on a Gnome-derivative DE like MATE 
and/or Cinnamon because they are portable and they are interested in 
being portable.
Because of that I think is more just Cinnamon/Mate be the next default 
for Debian. Something like the former CD and DVD of xfce-lxde, I think 
is possible bring Cinnamon and Mate at the same optical media and still 
be smaller than Gnome. I think that make more sense than bring Xfce 
because the Cinnamon and Mate are forks and can replace Gnome perfectly 
including some packages like Pidgin, Gparted, Icedove and VLC.

Mate is coming for jessie. I think until the freeze we have Mate.


--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/6162c6613da00442822bfd25f6378...@openmailbox.org



IDLE and Eclipse

2013-12-14 Thread brunomaximom

Hi guys
Look for the IDLE and Eclipse on kFreeBSD...
IDLE almost freezes when I try to open a file, the edit window can't be 
closed and the name of the file isn't on top of window.
Eclipse...well, I have eclipse-cdt installed and I can't create any 
project, including java projects. And I cannot to install Pydev in it 
too.

Thanks


--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/ec6c5b0bd876fb1385417a910df87...@openmailbox.org



Re: mintupdate

2013-12-14 Thread brunomaximom

Why do you need setproctitle() when porting software from GNU/Linux?
That's a BSD-specific function.


Yeah, that's unnecessary.
The program is ported now. What do you wnat? The patch or the package?


--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/fe2567cd211d8c28cecf534dc04c8...@openmailbox.org



IDLE and Eclipse

2013-12-14 Thread brunomaximom

Hi guys
Look for the IDLE and Eclipse on kFreeBSD...
IDLE almost freezes when I try to open a file, the edit window can't be 
closed and the name of the file isn't on top of window.
Eclipse...well, I have eclipse-cdt installed and I can't create any 
project, including java projects. And I cannot to install Pydev in it 
too.

Thanks


--
To UNSUBSCRIBE, email to debian-java-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/ec6c5b0bd876fb1385417a910df87...@openmailbox.org



IDLE and Eclipse

2013-12-14 Thread brunomaximom

Hi guys
Look for the IDLE and Eclipse on kFreeBSD...
IDLE almost freezes when I try to open a file, the edit window can't be 
closed and the name of the file isn't on top of window.
Eclipse...well, I have eclipse-cdt installed and I can't create any 
project, including java projects. And I cannot to install Pydev in it 
too.

Thanks


--
To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/ec6c5b0bd876fb1385417a910df87...@openmailbox.org



Re: Re: Using wifi via a smart phone/USB tethering

2013-12-08 Thread brunomaximom
Man, I'll try to help you showing what I did. The driver what I need to 
use is ath from atheros, look what I did:

1- sudo ifconfig wlan0 create wlandev ath0
2- sudo yourtexteditor /etc/wpa_supplicant.conf
3- I have written this in wpa_supplicant.conf:
network={
ssid=WALUBAME
psk=minha senha
priority=5
}
4- save wpa_supplicant.conf and exit
5- sudo wpa_supplicant -i wlan0 -c /etc/wpa_supplicant.conf
6- sudo ifconfig wlan0 up
7- sudo dhclient -v wlan0
Well, my problem is always on boot it loads the wireless conection, 
because always i need to do 1, 5 and 7, unfortunately.



--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/473e88848531e54e644c504c7e568...@openmailbox.org



mintupdate

2013-12-07 Thread brunomaximom

HI all, I'm trying to port mintUpdate program but I'm having trouble.
http://pastebin.com/2qbMV8qV
Look the line 52...FreeBSD has not prctl, and apparently the 
setproctitle doesnt exist for us.

Can someone confirm that?


--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/315cb321dda4bd5ba0309476094fd...@openmailbox.org



Re: Cinnamon X Gnome X Mate

2013-12-03 Thread brunomaximom

Em 2013-12-03 19:43, Steven Chamberlain escreveu:

PC-BSD made a new (pre-?)release today based on FreeBSD 10-STABLE:
* Includes the Gnome3 / Mate / Cinnamon desktops, replacing Gnome2.

which means they have working ports of these, and that will undoubtedly
help towards using them on GNU/kFreeBSD.

No, that Gnome is 3.6 and probably on Debian Gnome will be 3.12 
depending on systemd =/.



--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/e1b877b341c6c56327e01622e3891...@openmailbox.org



Bug#731144: kfreebsd: drm2 and i915kms kernel modules are not loaded automatically

2013-12-02 Thread brunomaximom

Maybe that can solve my problem too.
I think xorg is needing a patch...I was looking for about hybrid 
graphics at Google and find this: WITH_NEW_XORG=true and WITH_KMS=true. 
Debian has that?



--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/389831a14387205d5b722fe5f4af7...@openmailbox.org



Bug#731144: kfreebsd: drm2 and i915kms kernel modules are not loaded automatically

2013-12-02 Thread brunomaximom

That's a known bug.  Once X starts, the display should come back on.
I'm not sure if your system needs to use the Radeon or Intel driver.


I'd prefer intel, because radeon can't work on Linux too. But if 
possible enable radeon too, that will be more advantageous for me than 
linux.



That's also why we want X to handle the automatic module loading;  if
the KMS modules get loaded too early (or when booting single-user) the
console wouldn't be usable.


Yes, I already did that, and the system became unusable :P.


--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/1720c56a262309a56d2a10d1d3c6d...@openmailbox.org



Bug#731144: kfreebsd: drm2 and i915kms kernel modules are not loaded automatically

2013-12-02 Thread brunomaximom

Maybe that can solve my problem too.
I think xorg is needing a patch...I was looking for about hybrid 
graphics at Google and find this: WITH_NEW_XORG=true and WITH_KMS=true. 
Debian has that?



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#731144: kfreebsd: drm2 and i915kms kernel modules are not loaded automatically

2013-12-02 Thread brunomaximom

That's a known bug.  Once X starts, the display should come back on.
I'm not sure if your system needs to use the Radeon or Intel driver.


I'd prefer intel, because radeon can't work on Linux too. But if 
possible enable radeon too, that will be more advantageous for me than 
linux.



That's also why we want X to handle the automatic module loading;  if
the KMS modules get loaded too early (or when booting single-user) the
console wouldn't be usable.


Yes, I already did that, and the system became unusable :P.


--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: automount program

2013-12-01 Thread brunomaximom

Would you consider porting amd(8)? With the current state of
freebsd-glue, porting of new code has become quite straightforward. If
you want to help with this, I suggest you have a look at how the
different packages are built in freebsd-utils source.


What I need to know to build it? From where of FreeBSD you get the 
sources?



--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/77bd24824bdaf969f016a73f19747...@openmailbox.org



automount program

2013-11-30 Thread brunomaximom
Hi, I think kFreeBSD needs an automount program. Is there someone for 
it? If not I can write one with Python, at same time I will be training 
my Python programming knowledge. :D



--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/bd8870ffc9a8c0a5968e77fdffbe8...@openmailbox.org



Re: Cinnamon X Gnome X Mate

2013-11-28 Thread brunomaximom

Em 2013-11-28 20:37, Steven Chamberlain escreveu:
Initially I think we just need as many components as possible to be 
able

to build.  Then we can compare what we have, to what's used by some
non-GNOME Linux desktop distros and see if we can produce a full 
desktop

environment task with what we have.


I see Snowlinux is Debian stable + Cinnamon + Gnome apps. But is Debian 
stable and Gnome apps from wheezy seem more DE-agnostic than the new 
Gnome apps, because the new Gnome apps have that menu what depends on 
Gnome Shell and without Gnome Shell, that menu is weird. But I don't 
know, that is what I think, I like Gnome apps but I need more 
opinions...



There's a mate-desktop package by Mike Gabriel in the NEW queue.  I'm
not sure if a copy of it is available yet to download from somewhere,
but we probably want to ensure things like this will build on 
GNU/kFreeBSD.


Yeah, if you think more appropriate Mate than Cinnamon or Gnome, I will 
port it. :)



Unrelated, there's also a new gambas3 package in the NEW queue which
hopefully gets it building on GNU/kFreeBSD.  A GUI programming language
+ IDE which looks nice.


Well, Eclipse has some problems on kFreeBSD...for example I can't 
include Pydev, but I'm happy Eclipse is finally in kFreeBSD.



--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/c18210968d4fd693704f73f4a059d...@openmailbox.org



Re: 3D acceleration

2013-11-28 Thread brunomaximom

Em 2013-11-20 09:01, Robert Millan escreveu:

(please keep debian-bsd on CC)

On 20/11/2013 05:13, brunomaxi...@openmailbox.org wrote:

look Robert, my Xorg.0.log from the kfreebsd-downloader-10.0-BETA3
kernel: http://paste.debian.net/66724/


So it doesn't work with 10.0-BETA3 kernel. Could you try installing
FreeBSD 10.0-BETA3 (full system) in a separate partition and check if
that works?

Well, I tried to install PC-BSD 10.0 and the screen goes black when the 
installer tries up X.

Apparently, FreeBSD cannot support my laptop...bad =/
But at least intel I wish =/.


--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/ab4a37e134bbc4682da56020eac1d...@openmailbox.org



Cinnamon X Gnome X Mate

2013-11-27 Thread brunomaximom

Hi guys,
I'm confused about what collaborating...
I'm Gnome user and we know that Gnome Shell has problem with systemd, so 
I thought about make the combination Cinnamon + Gnome apps, but Gnome 
apps was created for Gnome Shell and can run weird on another DE.
So I thought to make the combination Cinnamon + Mate apps, make more 
sense... or Cinnamon + other apps, but I don't know if that is 
convincing.
So if those options don't seems good options, I can colaborate with pure 
Mate.

What you suggest?


--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/774ff8e7cdc41be780630cafee5d5...@openmailbox.org



[lp-br-sp] Meshnet

2013-11-25 Thread brunomaximom
Olá pessoal, to super interessado em implementar uma meshnet porque 
tenho problemas com a droga da Vivo e nada melhor do que ter uma 
internet própria, e tipo, eu quero muito me livrar dessas empresas 
cretinas.
Queria saber se tem mais alguém interessado e que manje disso pra pelo 
menos poder dar um help, porque pretendo fazer isso essas férias sem 
falta.
Não encontro muito material sobre como montar uma na internet, em 
português realmente não existe.

Se mais alguém tiver interessado, bora fazer :D.
Alguns links a respeito:
https://commotionwireless.net/
https://projectmeshnet.org/
https://guifi.net/
http://hyperboria.net/



Fwd: Re: GPL X BSD

2013-11-24 Thread brunomaximom

Debian GNU/kFreeBSD is official Debian port, and thus Debian packages
and packagers support kFreeBSD.
Sorry, but that's not what I see...I dont see any interest from Gnome 
maintainers for kFreeBSD for example, just throw the job for kFreeBSD 
porters =/.



Debian is not a GNU project, and does not seek GNU project approval.
I was talking about kFreeBSD be more accepted by the GNU project. I have 
a dream: one day GNU and *BSD can join :)



--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/05d678607bd5101646caea638a52d...@openmailbox.org



Re: kfreebsd-10

2013-11-24 Thread brunomaximom
Wait Beta 4, put in sid and allow the migration to testing, but not 
include it in installer yet, at least while RC is not released...



--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/cc241644e45847051c10cfe0b7ce8...@openmailbox.org



GPL X BSD

2013-11-23 Thread brunomaximom

Hi folks,
What about relicensing of the kFreeBSD? BSD license is permissive, I 
think BSD doesn't match with GNU, because of that why not relicence the 
kFreeBSD under GPL? this can result in a greater approval of the GNU 
project.
And why the Debian packagers dont support kFreeBSD and remain depending 
on you to port theirs packages?

bye.


--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/76f0775973c05c03c7ec80d37dda5...@openmailbox.org



3D acceleration

2013-11-19 Thread brunomaximom

Hi,
Definitivaly here on my laptop I cannot have 3D acceleration with intel 
driver.
I have hybrid graphics (intel and radeon), but kldload i915kms returns 
black screen and unusable operating system that I need to reboot.

That's really needing a fix.
And how I reduce the brightness of my screen on it? Fn keys do not work 
on it.

Bye thanks.


--
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/8fb7617899bcbd38ca5147c437193...@openmailbox.org



[lp-br-sp] Novo membro

2013-11-07 Thread brunomaximom

Olá, meu nome é Bruno.
O Sergiodj e o Pannagio me encontraram na Semana de Estudos da 
Computação da Unesp de Rio Claro.

Muito provavelmente vão me encontrar no IRC como dharc...
Sou um entusiasta de software livre e principalmente de SOs livres, 
fanático por Debian e adoro trollar o Ubuntu :D.
Atualmente tenho o Debian GNU/Linux e o Debian GNU/kFreeBSD instalados 
na minha máquina e o Debian GNU/Hurd instalado numa VM.
Aliás, gostaria de convidá-los a ajudar o projeto do Debian GNU/kFreeBSD 
porque a coisa ta complicada, são pouquíssimas pessoas ajudando e 
ninguém tem interesse infelizmente =/. O pessoal do FreeBSD mantém um 
ódio mortal pelo projeto, tanto é que já fui pedir ajuda pra eles e se 
recusaram a dar porque não era o FreeBSD...mesmo tendo muita coisa dele 
=/. Eu ainda acredito no GNU/kFreeBSD como uma união do melhor dos dois 
mundos e uma união de ambas as comunidades podendo colaborar por um 
mundo de software melhor.

É um prazer conhece-los, software livre domina!!!
T+