Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Baobab
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

Goto page 1, 2  Next  
Reply to topic    Gentoo Forums Forum Index Forum italiano (Italian)
View previous topic :: View next topic  
Author Message
thesaltydog
n00b
n00b


Joined: 06 Apr 2005
Posts: 46

PostPosted: Fri Jul 01, 2005 8:34 am    Post subject: Baobab Reply with quote

Baobab v.0.1.0 per Gnome è online!

http://www.marzocca.net/linux/baobab.html
Back to top
View user's profile Send private message
.:deadhead:.
Advocate
Advocate


Joined: 25 Nov 2003
Posts: 2963
Location: Milano, Italy

PostPosted: Fri Jul 01, 2005 10:27 am    Post subject: Reply with quote

che carino: funziona anche su xfce & kde, nevvero?
Perchè non ci scrivi un ebuild o chiedi aiuto per crearne uno? Così aggiungi anche gentoo nella lista delle distro supportate. Oltretutto i devel di gentoo sono abb veloci nell'inserire nel portage ufficiale i nuovi SW [anche se all'inizio saranno mascherati]

complimenti[/list]
_________________
Proudly member of the Gentoo Documentation Project: the Italian Conspiracy ! ;)
Back to top
View user's profile Send private message
thesaltydog
n00b
n00b


Joined: 06 Apr 2005
Posts: 46

PostPosted: Fri Jul 01, 2005 10:38 am    Post subject: Reply with quote

Funziona ovunque, a patto che vengano installate le dipendenze...

Circa l'ebuild... se fedeliallalinea legge questo post, può mettersi in contatto con me per quello che gli occorre!
Back to top
View user's profile Send private message
gutter
Bodhisattva
Bodhisattva


Joined: 13 Mar 2004
Posts: 7162
Location: Aarau, Aargau, Switzerland

PostPosted: Fri Jul 01, 2005 9:04 pm    Post subject: Reply with quote

Se domani pomeriggio ho un poco di tempo e ci mettiamo in contatto in IM posso farne una bozza io.
_________________
Registered as User #281564 and Machines #163761
Back to top
View user's profile Send private message
thesaltydog
n00b
n00b


Joined: 06 Apr 2005
Posts: 46

PostPosted: Wed Jul 13, 2005 4:17 pm    Post subject: baobab v.1.0.0 Reply with quote

E' online la versione 1.0.0 di Baobab, completamente riscritta in C/gtk+, quindi moooolto più veloce.

http://www.marzocca.net/linux/baobab.html
Back to top
View user's profile Send private message
.:deadhead:.
Advocate
Advocate


Joined: 25 Nov 2003
Posts: 2963
Location: Milano, Italy

PostPosted: Thu Jul 14, 2005 9:12 am    Post subject: Reply with quote

lo so sono viziato :-) : ma poi delll'ebuild non se ne è fatto più nulla ?
_________________
Proudly member of the Gentoo Documentation Project: the Italian Conspiracy ! ;)
Back to top
View user's profile Send private message
codarin
Apprentice
Apprentice


Joined: 29 Apr 2004
Posts: 179
Location: Udine

PostPosted: Thu Jul 14, 2005 12:12 pm    Post subject: ebuild baobab - Aggiornata - Reply with quote

Ciao,
non so se postare qua o no, nel dubbio... questa ebuild l'ho fatta ora ed alla svelta...
provate gente provate.

Ciao
Ivan

thesaltydog mettiamo sul tuo sito?

PS
io l'ho messa nel mio portage overlay.


NUOVA VERSIONE pesca il file giusto dal sito ora che è stato rinominato
Code:

# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $


MY_PN="baobab"
MY_P="${MY_PN}-${PV}"
S="${WORKDIR}/${MY_P}"
FEATURES="-sandbox"

DESCRIPTION="Baobab is a C/gtk+ application to analyse directory trees in any Gnome environment."
HOMEPAGE="http://www.marzocca.net/linux/baobab.html"
SRC_URI="http://www.marzocca.net/linux/downloads/${MY_P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc"
IUSE=""

DEPEND=">=x11-libs/gtk+-2.6.0
   >=x11-libs/pango-1.8.1"


src_compile() {

   cd ${S}
   
   econf
   
   emake
   dobin baobab

}

src_install() {
   emake install DESTDIR=${D} || die "Install failed"
}

_________________
---------------------------------------------------------------------------------
Acer TM803 - Centrino 1.6 GHZ - AtiRadeon9000 - 1.25GB RAM

CFLAGS="-O2 -march=pentium3 -pipe ........"


Last edited by codarin on Fri Jul 15, 2005 6:42 am; edited 1 time in total
Back to top
View user's profile Send private message
gutter
Bodhisattva
Bodhisattva


Joined: 13 Mar 2004
Posts: 7162
Location: Aarau, Aargau, Switzerland

PostPosted: Thu Jul 14, 2005 3:40 pm    Post subject: Reply with quote

.:deadhead:. wrote:
lo so sono viziato :-) : ma poi delll'ebuild non se ne è fatto più nulla ?


Qualcuno ha fatto la proposta (ovvero io) ed altri hanno realizzato l'ebuild.

Mi scuso ma per ora sono a corto di tempo :(
_________________
Registered as User #281564 and Machines #163761
Back to top
View user's profile Send private message
Ic3M4n
Advocate
Advocate


Joined: 02 Nov 2004
Posts: 3489
Location: Bergamo.

PostPosted: Fri Jul 15, 2005 12:51 am    Post subject: Reply with quote

ho dovuto modificare questa riga perchè altrimenti non pesca il sorgente dal sito:
Code:
MY_P="${MY_PN}_${PV}"
con:
Code:
MY_P="${MY_PN}-${PV}"

poi ha compilato senza problemi.
Back to top
View user's profile Send private message
codarin
Apprentice
Apprentice


Joined: 29 Apr 2004
Posts: 179
Location: Udine

PostPosted: Fri Jul 15, 2005 6:40 am    Post subject: Reply with quote

Bravo!
Ieri ho chisto a thesaltydog di modificare il nome del sorgente sul suo sito (in cui compariva con l'underscore _)... vuol dire che l'ha fatto.... ora l'ebuild è un po più "standard".
Ero costretto ad usare l'altra MY_P2 per beccare il nome giusto dal suo sito con l'underscore.

Ciao
_________________
---------------------------------------------------------------------------------
Acer TM803 - Centrino 1.6 GHZ - AtiRadeon9000 - 1.25GB RAM

CFLAGS="-O2 -march=pentium3 -pipe ........"
Back to top
View user's profile Send private message
thesaltydog
n00b
n00b


Joined: 06 Apr 2005
Posts: 46

PostPosted: Fri Jul 15, 2005 8:08 am    Post subject: Reply with quote

Ho appena messo sul sito anche l'ebuild Gentoo.
Grazie a Ivan Codarin!
Back to top
View user's profile Send private message
fctk
Veteran
Veteran


Joined: 28 Jan 2004
Posts: 1424
Location: Milan, Italy, EU

PostPosted: Sat Jul 16, 2005 7:48 am    Post subject: Reply with quote

scusate la domanda banale... ma in che categoria andrebbe messo l'ebuild di baobab?

/EDIT:
l'ebuild che c'è sul sito di thesaltydog non funziona... a me da questo errore:
Code:
# ebuild baobab-1.0.0.ebuild digest
: command not foundsys-apps/baobab/baobab-1.0.0.ebuild: line 4:
: command not foundsys-apps/baobab/baobab-1.0.0.ebuild: line 5:
: command not foundsys-apps/baobab/baobab-1.0.0.ebuild: line 10:
: command not foundsys-apps/baobab/baobab-1.0.0.ebuild: line 14:
: command not foundsys-apps/baobab/baobab-1.0.0.ebuild: line 19:
: command not foundsys-apps/baobab/baobab-1.0.0.ebuild: line 22:
: command not foundsys-apps/baobab/baobab-1.0.0.ebuild: line 23:
'usr/local/portage/sys-apps/baobab/baobab-1.0.0.ebuild: line 24: syntax error near unexpected token `{
'usr/local/portage/sys-apps/baobab/baobab-1.0.0.ebuild: line 24: `src_compile() {

!!! ERROR: sys-apps/baobab-1.0.0 failed.
!!! Function , Line 1686, Exitcode 1
!!! error sourcing ebuild
!!! If you need support, post the topmost build error, NOT this status message.


aux_get(): (0) Error in sys-apps/baobab-1.0.0 ebuild. (1)
               Check for syntax error or corruption in the ebuild. (--debug)

: command not foundsys-apps/baobab/baobab-1.0.0.ebuild: line 4:
: command not foundsys-apps/baobab/baobab-1.0.0.ebuild: line 5:
: command not foundsys-apps/baobab/baobab-1.0.0.ebuild: line 10:
: command not foundsys-apps/baobab/baobab-1.0.0.ebuild: line 14:
: command not foundsys-apps/baobab/baobab-1.0.0.ebuild: line 19:
: command not foundsys-apps/baobab/baobab-1.0.0.ebuild: line 22:
: command not foundsys-apps/baobab/baobab-1.0.0.ebuild: line 23:
'usr/local/portage/sys-apps/baobab/baobab-1.0.0.ebuild: line 24: syntax error near unexpected token `{
'usr/local/portage/sys-apps/baobab/baobab-1.0.0.ebuild: line 24: `src_compile() {

!!! ERROR: sys-apps/baobab-1.0.0 failed.
!!! Function , Line 1686, Exitcode 1
!!! error sourcing ebuild
!!! If you need support, post the topmost build error, NOT this status message.


aux_get(): (0) Error in sys-apps/baobab-1.0.0 ebuild. (1)
               Check for syntax error or corruption in the ebuild. (--debug)

doebuild(): aux_get() error reading sys-apps/baobab-1.0.0; aborting.


quando ho aperto l'ebuild con nano mi sono accorto di un messaggio:
Quote:
[ Lette 37 righe (Convertite dal formato DOS) ]


il "problema" si risolve se si crea il file ex-novo con touch ad esempio, e poi si incolla il contenuto dell'ebuild.
Back to top
View user's profile Send private message
CRV§ADER//KY
Guru
Guru


Joined: 30 Aug 2004
Posts: 405
Location: Torino

PostPosted: Sun Jul 17, 2005 1:07 pm    Post subject: Reply with quote

Stesso errore di fctk.

fctk wrote:
quando ho aperto l'ebuild con nano mi sono accorto di un messaggio:
Quote:
[ Lette 37 righe (Convertite dal formato DOS) ]


il "problema" si risolve se si crea il file ex-novo con touch ad esempio, e poi si incolla il contenuto dell'ebuild.


Così è anche più semplice:
# dos2unix baobab-1.0.0.ebuild


Appena lancio la scansione di una directory qualsiasi, va in segmentation fault.

[EDIT]Inoltre non riesco a emergerlo con i simboli di debug:
Code:
CFLAGS="-g" FEATURES="nostrip" ACCEPT_KEYWORDS=~x86 emerge baobab
[...]
>>> Install baobab-1.0.0 into /var/tmp/portage/baobab-1.0.0/image/ category app-misc
Making install in src
make[1]: Entering directory `/var/tmp/portage/baobab-1.0.0/work/baobab-1.0.0/src'
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -DPACKAGE_DATA_DIR=\""/usr/share"\"  -DPACKAGE_LOCALE_DIR=\""/usr/share/locale"\"    -DXTHREADS -D_REENTRANT -DXUSE_MTSAFE_API -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/pango-1.0 -I/usr/include/freetype2 -I/usr/include/freetype2/config -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include      -g -c baobab.c
baobab.c: In function `main':
baobab.c:271: error: `LC_MESSAGES' undeclared (first use in this function)
baobab.c:271: error: (Each undeclared identifier is reported only once
baobab.c:271: error: for each function it appears in.)
make[1]: *** [baobab.o] Error 1
make[1]: Leaving directory `/var/tmp/portage/baobab-1.0.0/work/baobab-1.0.0/src'
make: *** [install-recursive] Error 1

!!! ERROR: app-misc/baobab-1.0.0 failed.
!!! Function src_install, Line 36, Exitcode 2


mentre con CFLAGS="-O3 -march=athlon-xp -fomit-frame-pointer" e FEATURES="strip" compila senza problemi.
_________________
Kyrie, Ignis Divine, Eleison ~ Elfen Lied
Back to top
View user's profile Send private message
Ic3M4n
Advocate
Advocate


Joined: 02 Nov 2004
Posts: 3489
Location: Bergamo.

PostPosted: Sun Jul 17, 2005 1:17 pm    Post subject: Reply with quote

io l'ho emerso senza nessun problema ed è funzionante, mai un crash ne niente del genere. per la storia di msdos... non ti so dire, tutti i file del portdir overlay io li genero con nano.
Code:
cd /usr/local/portage/...
nano nome_ebuild-vers.ebuild
copia-incolla

e poi faccio il digest. con l'opzione -g non ho provato a compilarlo, per questo mi spiace ma non posso esserti d'aiuto.
Back to top
View user's profile Send private message
fctk
Veteran
Veteran


Joined: 28 Jan 2004
Posts: 1424
Location: Milan, Italy, EU

PostPosted: Sun Jul 17, 2005 2:21 pm    Post subject: Reply with quote

CRV§ADER//KY wrote:
Appena lancio la scansione di una directory qualsiasi, va in segmentation fault.

anche qui... :?

CRV§ADER//KY wrote:
Inoltre non riesco a emergerlo con i simboli di debug:
Code:
CFLAGS="-g" FEATURES="nostrip" ACCEPT_KEYWORDS=~x86 emerge baobab
[...]
>>> Install baobab-1.0.0 into /var/tmp/portage/baobab-1.0.0/image/ category app-misc
Making install in src
make[1]: Entering directory `/var/tmp/portage/baobab-1.0.0/work/baobab-1.0.0/src'
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -DPACKAGE_DATA_DIR=\""/usr/share"\"  -DPACKAGE_LOCALE_DIR=\""/usr/share/locale"\"    -DXTHREADS -D_REENTRANT -DXUSE_MTSAFE_API -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/pango-1.0 -I/usr/include/freetype2 -I/usr/include/freetype2/config -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include      -g -c baobab.c
baobab.c: In function `main':
baobab.c:271: error: `LC_MESSAGES' undeclared (first use in this function)
baobab.c:271: error: (Each undeclared identifier is reported only once
baobab.c:271: error: for each function it appears in.)
make[1]: *** [baobab.o] Error 1
make[1]: Leaving directory `/var/tmp/portage/baobab-1.0.0/work/baobab-1.0.0/src'
make: *** [install-recursive] Error 1

!!! ERROR: app-misc/baobab-1.0.0 failed.
!!! Function src_install, Line 36, Exitcode 2

stesso identico errore... comunque facendo semplicemente emerge baobab compila benissimo...
Back to top
View user's profile Send private message
Gaspyd
Apprentice
Apprentice


Joined: 21 Nov 2004
Posts: 242
Location: Brindisi, Italy

PostPosted: Sun Jul 17, 2005 4:32 pm    Post subject: Reply with quote

fctk wrote:

il "problema" si risolve se si crea il file ex-novo con touch ad esempio, e poi si incolla il contenuto dell'ebuild.

Stesso identico errore appena ritorno su gentoo provo a ricreare il file come hai detto .... :?
Back to top
View user's profile Send private message
codarin
Apprentice
Apprentice


Joined: 29 Apr 2004
Posts: 179
Location: Udine

PostPosted: Mon Jul 18, 2005 7:11 am    Post subject: Reply with quote

Ciao,
l'ebuild l'ho fatta da gentoo con "gedit"... quindi a meno dello spostamento sul server marzocca.net non dovrebbe avere ritorni a capo DOS.... Ora non so se parlate di quella sul forum presa giù di copia+incolla o quella del sito.

Io l'ho piazzata sul mio portage OVERLAY su /usr/local/portage/gnome-extra/baobab
dove overlay == /usr/local/portage....

Ciao
_________________
---------------------------------------------------------------------------------
Acer TM803 - Centrino 1.6 GHZ - AtiRadeon9000 - 1.25GB RAM

CFLAGS="-O2 -march=pentium3 -pipe ........"
Back to top
View user's profile Send private message
fctk
Veteran
Veteran


Joined: 28 Jan 2004
Posts: 1424
Location: Milan, Italy, EU

PostPosted: Mon Jul 18, 2005 7:34 am    Post subject: Reply with quote

codarin wrote:

l'ebuild l'ho fatta da gentoo con "gedit"... quindi a meno dello spostamento sul server marzocca.net non dovrebbe avere ritorni a capo DOS.... Ora non so se parlate di quella sul forum presa giù di copia+incolla o quella del sito.

l'ebuild che dà problemi è quello sul sito... se fai un copia e incolla va tutto ok.
Back to top
View user's profile Send private message
codarin
Apprentice
Apprentice


Joined: 29 Apr 2004
Posts: 179
Location: Udine

PostPosted: Mon Jul 18, 2005 7:56 am    Post subject: Reply with quote

Ciao,
thesaltydog potresti ripubblicare l'ebuild?

Ivan
_________________
---------------------------------------------------------------------------------
Acer TM803 - Centrino 1.6 GHZ - AtiRadeon9000 - 1.25GB RAM

CFLAGS="-O2 -march=pentium3 -pipe ........"
Back to top
View user's profile Send private message
Gaspyd
Apprentice
Apprentice


Joined: 21 Nov 2004
Posts: 242
Location: Brindisi, Italy

PostPosted: Mon Jul 18, 2005 7:57 am    Post subject: Reply with quote

fctk wrote:
codarin wrote:

l'ebuild l'ho fatta da gentoo con "gedit"... quindi a meno dello spostamento sul server marzocca.net non dovrebbe avere ritorni a capo DOS.... Ora non so se parlate di quella sul forum presa giù di copia+incolla o quella del sito.

l'ebuild che dà problemi è quello sul sito... se fai un copia e incolla va tutto ok.


Confermo, il copia e incolla dal thread va bene, l'ebuild dal sito non funziona.
La scansione dell'intero filesystem manda in Segmentation fault, forse perchè ho forzato il programma aggiungendo la keywords ~amd64 x farlo funzionare sul mio sistema ?
In ogni caso si è compilato senza errori.
Back to top
View user's profile Send private message
otaku
Guru
Guru


Joined: 16 Dec 2004
Posts: 428
Location: Rho (MI)

PostPosted: Mon Jul 18, 2005 8:45 am    Post subject: Reply with quote

Volevo notificare che ho aperto un bug relativo a questo ebuild nel bugzilla di gentoo...
per chi fosse interessato a usarlo o volesse apportare miglioramenti l'indirizzo è il seguente:
https://bugs.gentoo.org/show_bug.cgi?id=99307

ps. la versione 1.0.1 appena uscita compila e lavora bene anche se compilata con gcc 3.4 :)
_________________
Ventiquattr'ore al giorno in preda a una follia contorta...
Back to top
View user's profile Send private message
codarin
Apprentice
Apprentice


Joined: 29 Apr 2004
Posts: 179
Location: Udine

PostPosted: Mon Jul 18, 2005 8:58 am    Post subject: Reply with quote

Bene, meglio...
così, tra le altre cose, evitiamo di incasinare il post.
Meglio gestire il tutto in modo "comunitario"... così ognuno può provare i suoi flag/architetture

Ivan
_________________
---------------------------------------------------------------------------------
Acer TM803 - Centrino 1.6 GHZ - AtiRadeon9000 - 1.25GB RAM

CFLAGS="-O2 -march=pentium3 -pipe ........"
Back to top
View user's profile Send private message
CRV§ADER//KY
Guru
Guru


Joined: 30 Aug 2004
Posts: 405
Location: Torino

PostPosted: Mon Jul 18, 2005 4:20 pm    Post subject: Reply with quote

La 1.0.1 funziona.
Devo dire che non mi piace la visualizzazione delle dimensione... è molto poco leggibile. Preferirei che, ad esempio, fosse 14,23 MB, mentre ora è 14.230,00 KB.

Sarebbe utile che
1)fosse calcolato ricorsivamente il numero di oggetti
2)fossero visualizzati sia la somma della dimensione dei files sia l'utilizzo effettivo del disco fisso

P.S. "kilo" in kB andrebbe minuscolo.
_________________
Kyrie, Ignis Divine, Eleison ~ Elfen Lied
Back to top
View user's profile Send private message
thesaltydog
n00b
n00b


Joined: 06 Apr 2005
Posts: 46

PostPosted: Sun Sep 04, 2005 7:46 am    Post subject: Baobab Reply with quote

La nuova versione di baobab v.1.1.0 è online su:
http://www.marzocca.net/linux/baobab.html

Dal changelog:
v. 1.1.0

* New full file search functionality
* open/delete folders and files
* auto-detect filesystem changes in real-time
* monitoring of user's home directory for changes
* list all files in a folder

E' disponibile online anche l'ebuild.
Back to top
View user's profile Send private message
fctk
Veteran
Veteran


Joined: 28 Jan 2004
Posts: 1424
Location: Milan, Italy, EU

PostPosted: Sun Sep 04, 2005 8:22 am    Post subject: Reply with quote

ottengo questo errore:
Code:
checking whether i686-pc-linux-gnu-gcc accepts -g... (cached) yes
checking for i686-pc-linux-gnu-gcc option to accept ANSI C... (cached) none needed
checking for i686-pc-linux-gnu-gcc option to accept ANSI C... none needed
checking how to run the C preprocessor... i686-pc-linux-gnu-gcc -E
checking for egrep... grep -E
checking for ANSI C header files... yes
checking for pkg-config... /usr/bin/pkg-config
checking for gtk+-2.0 >= 2.0.0 libgnomeui-2.0 gnome-vfs-2.0 gnome-vfs-module-2.0,
         gconf-2.0, libgtop-2.0... Package libgtop-2.0 was not found in the pkg-config search path. Perhaps you should add the directory containing `libgtop-2.0.pc' to the PKG_CONFIG_PATH environment variable No package 'libgtop-2.0' found
configure: error: Library requirements (gtk+-2.0 >= 2.0.0 libgnomeui-2.0 gnome-vfs-2.0 gnome-vfs-module-2.0,
         gconf-2.0, libgtop-2.0) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them.

!!! Please attach the config.log to your bug report:
!!! /var/tmp/portage/baobab-1.1.0/work/baobab-1.1.0/config.log

!!! ERROR: app-admin/baobab-1.1.0 failed.
!!! Function econf, Line 485, Exitcode 0
!!! econf failed
!!! If you need support, post the topmost build error, NOT this status message.
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Forum italiano (Italian) All times are GMT
Goto page 1, 2  Next
Page 1 of 2

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum