Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
[HOWTO] Installare metisse (un altro wm 3d)
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

Goto page 1, 2, 3  Next  
Reply to topic    Gentoo Forums Forum Index Forum italiano (Italian) Risorse italiane (documentazione e tools)
View previous topic :: View next topic  
Author Message
fedeliallalinea
Administrator
Administrator


Joined: 08 Mar 2003
Posts: 30837
Location: here

PostPosted: Sat Jul 03, 2004 10:02 am    Post subject: [HOWTO] Installare metisse (un altro wm 3d) Reply with quote

Introduzione
Bene, visto che ho fatto l'howto per lookingglass mi metto a fare anche quello di metisse che e' un'alternativa.
http://insitu.lri.fr/~chapuis/metisse


Requisiti
Non lo so che requisiti minimi ci vogliono quindi metto quelli del mio notebook dove l'ho provato
  • pentium4-M 2GHz
  • 512 Mb RAM
  • scheda video ati 7500 Mobility
  • server X configurato a 24 bit



Preparazione del sistema
Prima di tutto creiamo un portage secondario aggiungendo nel /etc/make.conf
Code:
PORTDIR_OVERLAY=/usr/local/portage

quindi se non esiste ancora creiamo la cartella
Code:
# mkdir /usr/local/portage

Ora creiamo le cartelle nel portage secondario per metisse e nucleo
Code:
# mkdir -p /usr/local/portage/x11-wm/metisse
# mkdir -p /usr/local/portage/dev-libs/nucleo

Ora prendete l'ebuild qui sotto e copiatelo in /usr/local/portage/dev-libs/nucleo chimandolo nucleo-0.1.ebuild
Code:
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-wm/fluxbox/fluxbox-0.9.9.ebuild,v 1.11 2004/06/24 23:41:00 agriffis Exp $

inherit eutils

IUSE="X vnc ffmpeg"

DESCRIPTION="Nucleo is some libary for metisse."
SRC_URI="http://insitu.lri.fr/~chapuis/software/metisse/${P}-20040701.tar.bz2"
HOMEPAGE="http://insitu.lri.fr/~chapuis/metisse"

RDEPEND="virtual/x11"
DEPEND=">=sys-devel/autoconf
      ${RDEPEND}"

SLOT="0"
LICENSE="LGPL-2.1"
KEYWORDS="~x86 ~ppc ~sparc ~amd64 ~alpha ~hppa ~ia64 ~mips"

src_compile() {
   econf \
      --prefix=/usr
      ${myconf} || die "configure failed"

   emake || die "make failed"
}

src_install() {
   make DESTDIR=${D} install || die "make install failed"
   dodoc README ChangeLog AUTHORS NEWS COPYING.LESSER
}

Stessa cosa per quest'altro che e' da copiare in /usr/local/portage/x11-wm/metisse e nominandolo metisse-0.3.0.ebuild
Code:
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-wm/fluxbox/fluxbox-0.9.9.ebuild,v 1.11 2004/06/24 23:41:00 agriffis Exp $

inherit eutils

IUSE="freetype xv fc bitmap"

DESCRIPTION="A free Looking Glass replasment."
SRC_URI="http://insitu.lri.fr/~chapuis/software/metisse/${P}.tar.bz2"
HOMEPAGE="http://insitu.lri.fr/~chapuis/metisse"

RDEPEND="virtual/x11"
DEPEND=">=sys-devel/autoconf
      ${RDEPEND}
   dev-libs/nucleo"

SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc ~sparc ~amd64 ~alpha ~hppa ~ia64 ~mips"

src_compile() {
   econf \
      --prefix=/usr \
      ${myconf} || die "configure failed"

   emake -j1 || die "make failed"
}

src_install() {
   make DESTDIR=${D} install || die "make install failed"
   dodoc README ChangeLog AUTHORS NEWS TOD COPYING
}

Una volta fatto questo bisogna dare i comandi
Code:
# ebuild /usr/local/portage/x11-wm/metisse/metisse-0.3.0.ebuild digest
# ebuild /usr/local/portage/dev-libs/nucleo/nucleo-0.1.ebuild digest



Installazione
Ora vi basta lanciare il comando
Code:
# ACCEPT_KEYWORDS="~x86" emerge metisse



Esecuzione
Per eseguire metisse dovete stoppare X (killarlo o con /etc/init.d/xdm stop). Poi lanciate il comando (da utente non root)
Code:
$ Xwnc -depth 24 -geometry 1024x768 -ac

dove 1024x768 puo' essere impostato con la vostra risoluzione.
Poi create nella home dell'utente (se non esiste gia') il file .xinitrc con dentro
Code:
metisse-start-fvwm -wd :0

A questo punto per avviare tutto basta lanciare
Code:
$ startx



Osservazioni
La grafica non e' sicuramente come quella di Looking Glass, d'altra parte qui il sistema e' usabile. L'ho provato per 10 min e non ho avuto nessun crash.


IMPORTANTE
--------------

Grazie ancora una volta all'aiuto datomi da doom.it
_________________
Questions are guaranteed in life; Answers aren't.


Last edited by fedeliallalinea on Sun Jul 04, 2004 11:14 am; edited 2 times in total
Back to top
View user's profile Send private message
zUgLiO
l33t
l33t


Joined: 12 Aug 2003
Posts: 754
Location: Ferrara (Italy)

PostPosted: Sat Jul 03, 2004 10:06 am    Post subject: Re: [HOWTO] Installare metisse (un altro wm 3d) Reply with quote

fedeliallalinea wrote:


Esecuzione
Per eseguire lookingglass dovete stoppare X (killarlo o con /etc/init.d/xdm stop).

lookingglass? :D
_________________

voglio poi dire che il tempo mi avrà fatto abituare,

ma io non trovo nemmeno brutta la stiva buia di questa nave
Back to top
View user's profile Send private message
fedeliallalinea
Administrator
Administrator


Joined: 08 Mar 2003
Posts: 30837
Location: here

PostPosted: Sat Jul 03, 2004 10:09 am    Post subject: Re: [HOWTO] Installare metisse (un altro wm 3d) Reply with quote

zUgLiO wrote:
lookingglass? :D

Grazie per la segnalazione
_________________
Questions are guaranteed in life; Answers aren't.
Back to top
View user's profile Send private message
Raffo
Veteran
Veteran


Joined: 23 Apr 2004
Posts: 1019
Location: Berlin

PostPosted: Sat Jul 03, 2004 12:21 pm    Post subject: Reply with quote

quando do il comando
Code:
Xwnc -depth 24 -geometry 1024x768 -ac
a un certo punto si ferma, per la precisione quando dice qualcosa riguardo all'rgb...aspetto a lungo nella speranza che vada avanti o devo correggere qualcosa??
Back to top
View user's profile Send private message
fedeliallalinea
Administrator
Administrator


Joined: 08 Mar 2003
Posts: 30837
Location: here

PostPosted: Sat Jul 03, 2004 12:33 pm    Post subject: Reply with quote

@Raffo: a questo punto vai su un'altra shell crei il file .xinitrc con dentro quello che ho detto e poi lanci startx
_________________
Questions are guaranteed in life; Answers aren't.
Back to top
View user's profile Send private message
Raffo
Veteran
Veteran


Joined: 23 Apr 2004
Posts: 1019
Location: Berlin

PostPosted: Sat Jul 03, 2004 12:35 pm    Post subject: Reply with quote

fedeliallalinea wrote:
@Raffo: a questo punto vai su un'altra shell crei il file .xinitrc con dentro quello che ho detto e poi lanci startx

provato, ma mi da un errore....
Back to top
View user's profile Send private message
fedeliallalinea
Administrator
Administrator


Joined: 08 Mar 2003
Posts: 30837
Location: here

PostPosted: Sat Jul 03, 2004 12:36 pm    Post subject: Reply with quote

Raffo wrote:
provato, ma mi da un errore....

Che errore?
_________________
Questions are guaranteed in life; Answers aren't.
Back to top
View user's profile Send private message
Raffo
Veteran
Veteran


Joined: 23 Apr 2004
Posts: 1019
Location: Berlin

PostPosted: Sat Jul 03, 2004 12:47 pm    Post subject: Reply with quote

se lascio quel comando e intanto do startx da un'altra shell mi si avvia x, ma mi rimane per un bel po' lo schermo nero col solo cursore al centro dello schermo...ci mette tanto oppure nn mi parte proprio? ho provato anche a fare tutto da una sola shell e mi da errore, nn ricordo bene cosa dice....
Back to top
View user's profile Send private message
unarana
Tux's lil' helper
Tux's lil' helper


Joined: 05 Mar 2004
Posts: 120
Location: Erice (TP) Italy

PostPosted: Sat Jul 03, 2004 1:06 pm    Post subject: Reply with quote

ma hai installato fvwm?

Ciao :mrgreen:
Back to top
View user's profile Send private message
Raffo
Veteran
Veteran


Joined: 23 Apr 2004
Posts: 1019
Location: Berlin

PostPosted: Sat Jul 03, 2004 1:08 pm    Post subject: Reply with quote

unarana wrote:
ma hai installato fvwm?

Ciao :mrgreen:

ma lol, lo sai che nn ricordo se ce l'ho installato...ho dimenticato di controllare! ora vedo! :D
Back to top
View user's profile Send private message
fedeliallalinea
Administrator
Administrator


Joined: 08 Mar 2003
Posts: 30837
Location: here

PostPosted: Sat Jul 03, 2004 1:08 pm    Post subject: Reply with quote

unarana wrote:
ma hai installato fvwm?

Non devi mica installarlo!
_________________
Questions are guaranteed in life; Answers aren't.
Back to top
View user's profile Send private message
fedeliallalinea
Administrator
Administrator


Joined: 08 Mar 2003
Posts: 30837
Location: here

PostPosted: Sat Jul 03, 2004 1:09 pm    Post subject: Reply with quote

Raffo wrote:
se lascio quel comando e intanto do startx da un'altra shell mi si avvia x

Sei sicuro di avere creato il file in ~/.xinitrc (con il punto davanti).
_________________
Questions are guaranteed in life; Answers aren't.
Back to top
View user's profile Send private message
Raffo
Veteran
Veteran


Joined: 23 Apr 2004
Posts: 1019
Location: Berlin

PostPosted: Sat Jul 03, 2004 1:11 pm    Post subject: Reply with quote

si, eccolo da un ls -a in home/raffo
Code:
.xinitrc
Back to top
View user's profile Send private message
unarana
Tux's lil' helper
Tux's lil' helper


Joined: 05 Mar 2004
Posts: 120
Location: Erice (TP) Italy

PostPosted: Sat Jul 03, 2004 2:14 pm    Post subject: Reply with quote

Cosa posso usare per fare degli screenshots, usando gimp mi fa gli shots solo dello sfondo, senza le applicazioni :cry:

Ciao :mrgreen:
Back to top
View user's profile Send private message
nick_spacca
l33t
l33t


Joined: 29 May 2004
Posts: 689
Location: Paris/France

PostPosted: Sat Jul 03, 2004 2:26 pm    Post subject: Reply with quote

unarana wrote:
Cosa posso usare per fare degli screenshots, usando gimp mi fa gli shots solo dello sfondo, senza le applicazioni :cry:

Ciao :mrgreen:


Code:

import <nome_che vuoi>.jpg (puoi scegliere anche le estensioni)

E' un piccolo tool ,ma troppo potente, che fa parte di Image Magick. :D
_________________
I can resist anything but temptation.
(O. Wilde)
Back to top
View user's profile Send private message
JacoMozzi
l33t
l33t


Joined: 12 May 2003
Posts: 645
Location: Giubiasco world(EU(CH(TI)))

PostPosted: Sat Jul 03, 2004 2:38 pm    Post subject: Reply with quote

Ho seguito tutti i passi ma allo startx mi da inesorabilmente:

Code:


giakomino@amd giakomino $ startx
Using authority file /home/giakomino/.Xauthority
Writing authority file /home/giakomino/.Xauthority

XFree86 Version 4.3.0
Release Date: 27 February 2003

X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: Linux 2.6.0-gentoo-r1 i686 [ELF]
Build Date: 26 January 2004
Before reporting problems, check http://www.XFree86.Org/
to make sure that you have the latest version.
Mule Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/XFree86.0.log", Time: Sat Jul  3 16:43:22 2004
(==) Using config file: "/etc/X11/XF86Config"
Using vt 7
(II) Initializing extension GLX
Start fvwmi with args -d :0 -w wnc://127.0.0.1:0?password=no  for FvwmAmetista
[FVWM][main]: <<ERROR>> can't open display 127.0.0.1:0
                   
waiting for X server to shut down


Ciaoo
Jaco
Back to top
View user's profile Send private message
silian87
Advocate
Advocate


Joined: 06 Oct 2003
Posts: 2318
Location: Treviso, Italy

PostPosted: Sat Jul 03, 2004 2:51 pm    Post subject: Reply with quote

Almeno questo funziona benissimo!!!!!!!!!

Ho un athlon 1000mhz geforce4mx440 348mb ram e posso dire che funziona benissimo. Bellissimo l'effetto foglio che si verifica quando sollevi una vinestra da uno dei suoi angoli!!!!!! Sarebbe figo che si potesse applicare anche ad altri WM come xfce4
_________________
Musica che ascolto: http://www.last.fm/user/silian87/

Silian87 FAQs: http://marentax.homelinux.org/~silian87/silian87-faq.txt

GTalk: silian87@gmail.com
Back to top
View user's profile Send private message
xchris
Advocate
Advocate


Joined: 10 Jul 2003
Posts: 2824

PostPosted: Sat Jul 03, 2004 2:59 pm    Post subject: Reply with quote

una piccola nota per chi vuole lanciarlo in finestra dal proprio WM abituale
(utile per dare un occhio al volo)

Code:

Xwnc -depth 24 -geometry 1024x768 -ac :1
metisse-start-fvwm -wd :1


la risoluzione specificata imposta la dimensione della finestra!
ciao
_________________
while True:Gentoo()
Back to top
View user's profile Send private message
JacoMozzi
l33t
l33t


Joined: 12 May 2003
Posts: 645
Location: Giubiasco world(EU(CH(TI)))

PostPosted: Sat Jul 03, 2004 3:04 pm    Post subject: Reply with quote

xchris wrote:
una piccola nota per chi vuole lanciarlo in finestra dal proprio WM abituale
(utile per dare un occhio al volo)

Code:

Xwnc -depth 24 -geometry 1024x768 -ac :1
metisse-start-fvwm -wd :1


la risoluzione specificata imposta la dimensione della finestra!
ciao


Adesso funzia :D

Cmq sbagliavo io perché davo il comando
Code:
wnc -depth 24 -geometry 1024x768 -ac :1
e poi stoppavo con un CTRL+C visto che non ritornava al prompt :roll:

:)

Ciaoo
Jaco
Back to top
View user's profile Send private message
xchris
Advocate
Advocate


Joined: 10 Jul 2003
Posts: 2824

PostPosted: Sat Jul 03, 2004 3:09 pm    Post subject: Reply with quote

uno screenshot veloce di metisse lanciato in finestra sotto kde
http://xchris.altervista.org/GECHI/metisse.jpg

ciao
_________________
while True:Gentoo()
Back to top
View user's profile Send private message
jp10hp
Apprentice
Apprentice


Joined: 29 Feb 2004
Posts: 180
Location: Milano

PostPosted: Sat Jul 03, 2004 3:16 pm    Post subject: Reply with quote

uff...mi da questo errore nel configure di nucleo:
Code:

>>> emerge (1 of 2) dev-libs/nucleo-0.1 to /
*** Adjusting cvs-src permissions for portage user...
>>> md5 src_uri ;-) nucleo-0.1-20040701.tar.bz2
>>> Unpacking source...
>>> Unpacking nucleo-0.1-20040701.tar.bz2 to /var/tmp/portage/nucleo-0.1/work
>>> Source unpacked.
configure: WARNING: you should use --build, --host, --target
configure: WARNING: invalid host type:
checking for a BSD-compatible install... /bin/install -c
checking whether build environment is sane... yes
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for i686-pc-linux-gnu-strip... no
checking for strip... strip
checking build system type... config.sub: missing argument
Try `config.sub --help' for more information.
configure: error: /bin/sh build-utils/config.sub   failed

!!! ERROR: dev-libs/nucleo-0.1 failed.
!!! Function econf, Line 365, Exitcode 1
!!! econf failed
Back to top
View user's profile Send private message
unarana
Tux's lil' helper
Tux's lil' helper


Joined: 05 Mar 2004
Posts: 120
Location: Erice (TP) Italy

PostPosted: Sat Jul 03, 2004 3:20 pm    Post subject: Reply with quote

nick_spacca wrote:

Code:

import <nome_che vuoi>.jpg (puoi scegliere anche le estensioni)



niente da fare, come gimp mi shotta solo lo sfondo :cry: :cry:

Ciao :mrgreen:
Back to top
View user's profile Send private message
fedeliallalinea
Administrator
Administrator


Joined: 08 Mar 2003
Posts: 30837
Location: here

PostPosted: Sat Jul 03, 2004 3:31 pm    Post subject: Reply with quote

Come sono le tue cflags?
_________________
Questions are guaranteed in life; Answers aren't.
Back to top
View user's profile Send private message
jp10hp
Apprentice
Apprentice


Joined: 29 Feb 2004
Posts: 180
Location: Milano

PostPosted: Sat Jul 03, 2004 4:30 pm    Post subject: Reply with quote

...le classiche:

Code:

CFLAGS="-O2 -march=athlon-xp -pipe -fomit-frame-pointer"

Code:

# less /var/tmp/portage/nucleo-0.1/work/nucleo-0.1/config.log
....
configure:2023: checking build system type
configure:2036: error: /bin/sh build-utils/config.sub   failed
Back to top
View user's profile Send private message
Raffo
Veteran
Veteran


Joined: 23 Apr 2004
Posts: 1019
Location: Berlin

PostPosted: Sat Jul 03, 2004 7:14 pm    Post subject: Reply with quote

da kde metisse mi parte e funziona anche bene. nn riesco ancora a farlo partire nel modo spiegato dall'how-to, mi parte solo x, sfondo nero e cursore ad x al centro dello schermo....sicuri che nn c'è qualcosa di errato nella guida?? :?:
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Forum italiano (Italian) Risorse italiane (documentazione e tools) All times are GMT
Goto page 1, 2, 3  Next
Page 1 of 3

 
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