Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
[portage]Yuppidù!! E' uscito il nuovo windowmaker!
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

Goto page Previous  1, 2, 3  
Reply to topic    Gentoo Forums Forum Index Forum italiano (Italian)
View previous topic :: View next topic  
Author Message
gutter
Bodhisattva
Bodhisattva


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

PostPosted: Mon Jan 10, 2005 5:24 pm    Post subject: Reply with quote

Tutto ok, sono riuscito a compilare wmakerconf :wink:
_________________
Registered as User #281564 and Machines #163761
Back to top
View user's profile Send private message
Cazzantonio
Bodhisattva
Bodhisattva


Joined: 20 Mar 2004
Posts: 4514
Location: Somewere around the world

PostPosted: Mon Jan 10, 2005 6:20 pm    Post subject: Reply with quote

buono :)
e ti funziona bene? devo dire che ultimamente non ho avuto tutto questo tempo per spippolarci :wink:
_________________
Any mans death diminishes me, because I am involved in Mankinde; and therefore never send to know for whom the bell tolls; It tolls for thee.
-John Donne
Back to top
View user's profile Send private message
gutter
Bodhisattva
Bodhisattva


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

PostPosted: Mon Jan 10, 2005 6:30 pm    Post subject: Reply with quote

Cazzantonio wrote:
buono :)
e ti funziona bene? devo dire che ultimamente non ho avuto tutto questo tempo per spippolarci :wink:


Lo stavo provando. Domani ti faccio sapere ;)
_________________
Registered as User #281564 and Machines #163761
Back to top
View user's profile Send private message
Cazzantonio
Bodhisattva
Bodhisattva


Joined: 20 Mar 2004
Posts: 4514
Location: Somewere around the world

PostPosted: Thu Mar 10, 2005 8:40 am    Post subject: Reply with quote

Per chi fosse interessato comunico che è uscito il nuovo wmakerconf che funziona con windowmaker >=0.9X.... solo che non è ancora in portage e va scaricato e compilato a manina :wink:

P.S.
Dubito che sarà presto in portage visto che il mantainer (immagino sia lui) del pacchetto che mi ha risposto su bugzilla non mi ha fatto una grande impressione (visto come sono stati gestiti i precedenti ebuild di wmakerconf....)
_________________
Any mans death diminishes me, because I am involved in Mankinde; and therefore never send to know for whom the bell tolls; It tolls for thee.
-John Donne
Back to top
View user's profile Send private message
Cazzantonio
Bodhisattva
Bodhisattva


Joined: 20 Mar 2004
Posts: 4514
Location: Somewere around the world

PostPosted: Thu Mar 10, 2005 8:40 am    Post subject: Reply with quote

Per chi fosse interessato comunico che è uscito il nuovo wmakerconf (2.11) che funziona con windowmaker >=0.9X.... solo che non è ancora in portage e va scaricato e compilato a manina :wink:

P.S.
Dubito che sarà presto in portage visto che il mantainer (immagino sia lui) del pacchetto che mi ha risposto su bugzilla non mi ha fatto una grande impressione (visto come sono stati gestiti i precedenti ebuild di wmakerconf....)
_________________
Any mans death diminishes me, because I am involved in Mankinde; and therefore never send to know for whom the bell tolls; It tolls for thee.
-John Donne
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 Mar 10, 2005 10:30 am    Post subject: Reply with quote

Ho scritto un ebuild per wmakerconf-2.11:

Code:

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

inherit eutils

DESCRIPTION="X based config tool for the windowmaker X windowmanager."
SRC_URI="http://www.starplot.org/wmakerconf/${P}.tar.gz"
HOMEPAGE="http://www.starplot.org/wmakerconf/"

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

IUSE="nls imlib perl"

DEPEND="=x11-libs/gtk+-2*
        >=x11-wm/windowmaker-0.90.0
        imlib? ( media-libs/imlib )"

RDEPEND="nls? ( sys-devel/gettext )
        perl? ( dev-lang/perl
        dev-perl/HTML-Parser
        dev-perl/libwww-perl
        www-client/lynx
        net-misc/wget )"

src_compile() {
        local myconf

        use nls || myconf="${myconf} --disable-nls"
        use imlib || myconf="${myconf} --disable-imlibtest"
        if use perl; then
                myconf="${myconf} --enable-upgrade"
        fi

        econf ${myconf} || die "configure failed"
        emake || die "make failed"
}

src_install() {
        emake DESTDIR=${D} \
                gnulocaledir=${D}/usr/share/locale \
                install || die "install failed"

        dodoc README NEWS INSTALL MANUAL AUTHORS TODO COPYING ChangeLog
        doman man/*

}


Per usarlo basta:

1 - Abilitare il portage overlay in /usr/local/portage
2 - Salvarlo in /usr/local/portage/x11-misc/wmakerconf/wmakerconf-2.11.ebuild
3 - Aggiungere la riga "x11-misc/wmakerconf ~x86" in /etc/portage/package.keyword
4 - Scaricare il pacchetto: http://www.starplot.org/wmakerconf/wmakerconf-2.11.tar.gz e salvarlo in /usr/portage/distfiles
5 - ebuild /usr/local/portage/x11-misc/wmakerconf/wmakerconf-2.11.ebuild digest
6 - emerge -v wmakerconf



EDIT Wed Mar 16 09:49:04 CET 2005 : Ho aggiornato l'ebuild per tenere conto del fatto che lynx è passato da net-www a www-client.
_________________
Registered as User #281564 and Machines #163761


Last edited by gutter on Wed Mar 16, 2005 8:50 am; edited 3 times in total
Back to top
View user's profile Send private message
Cazzantonio
Bodhisattva
Bodhisattva


Joined: 20 Mar 2004
Posts: 4514
Location: Somewere around the world

PostPosted: Thu Mar 10, 2005 11:32 am    Post subject: Reply with quote

Grande! :D
Nemmeno un'ora dopo il post hai già pensato all'ebuild! :wink:

Ne approfitto per domandarti:
che cambia tra installare wmakerconf con la use "perl" o meno?
_________________
Any mans death diminishes me, because I am involved in Mankinde; and therefore never send to know for whom the bell tolls; It tolls for thee.
-John Donne
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 Mar 10, 2005 11:40 am    Post subject: Reply with quote

Da quello che ho capito leggendo la doc dovresti avere il supporto per l'installazione automatica dei temi, ma ci credi che sto ancora cercando di capire di preciso dove dovrebbe trovarsi questa opzione :D

Comunque sto provando il pacchetto e devo dire che funziona benissimo.

EDIT: Ho capito che a funzione aggiunta dalla use perl è:

Quote:
Install a list of themes (gzip/bzip2 compressed tar archives
or style files). Both local files and WWW hyperlinks are
supported: wmakerconf gets the requested theme via WWW
request. You may drag files or hyperlinks from your favorite
file manager (e.g., gmc) or WWW browser (e.g., netscape) and
drop them on the 'themes to install' list.


In pratica puoi installare un tema nella tua home dir semplicemente trascinando un link da firefox :D.
L'ho appena provata e funziona.

Ora ho solo una domanda:

Quote:
Upgrade:
Connect to the wmakerconf WWW homepage and check if the Window
Maker attributes have been changed. If yes, get new
wmakerconf-data package, unpack and install it. You must
restart wmakerconf to use the new attributes. (If wmakerconf
was installed via RPM then an RPM upgrade is used). Please
ensure that you have the right permissions, e.g., log in as root.


Non mi ritrovo questa voce nel menu a "File". :?: :?: :?:
_________________
Registered as User #281564 and Machines #163761
Back to top
View user's profile Send private message
Cazzantonio
Bodhisattva
Bodhisattva


Joined: 20 Mar 2004
Posts: 4514
Location: Somewere around the world

PostPosted: Thu Mar 10, 2005 12:40 pm    Post subject: Reply with quote

Penso corrisponda (in italiano) alla voce "aggiorna anteprime" nel menù "temi".... boh :roll:
Io comunque non ho ancora provato l'ebuild e sto ancora usando quello che mi ero compilato nella mia home
_________________
Any mans death diminishes me, because I am involved in Mankinde; and therefore never send to know for whom the bell tolls; It tolls for thee.
-John Donne
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 Mar 10, 2005 2:28 pm    Post subject: Reply with quote

Cazzantonio wrote:
Penso corrisponda (in italiano) alla voce "aggiorna anteprime" nel menù "temi"....


Credo che invece debba permettere di aggiornare online le definizioni del formato dei file di conf di wmaker.

Sto facendo una prova ti faccio sapere :) fra un poco.

EDIT: Ho aggiornato l'ebuild per tenere conto della possibilità di aggiornare il file che contiene le definizioni del formato dei file di conf di wmaker.

_________________
Registered as User #281564 and Machines #163761
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 Mar 18, 2005 8:45 am    Post subject: Reply with quote

Non è più necessario questo ebuild dal momento che è stato aggiunto a portage ;)
_________________
Registered as User #281564 and Machines #163761
Back to top
View user's profile Send private message
Cazzantonio
Bodhisattva
Bodhisattva


Joined: 20 Mar 2004
Posts: 4514
Location: Somewere around the world

PostPosted: Fri Mar 18, 2005 12:39 pm    Post subject: Reply with quote

evviva! le nostre suppliche hanno avuto effetto! :D :wink:
_________________
Any mans death diminishes me, because I am involved in Mankinde; and therefore never send to know for whom the bell tolls; It tolls for thee.
-John Donne
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 Mar 18, 2005 2:26 pm    Post subject: Reply with quote

Cazzantonio wrote:
evviva! le nostre suppliche hanno avuto effetto! :D :wink:


L'ebuild è quello mio ;)
_________________
Registered as User #281564 and Machines #163761
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 Previous  1, 2, 3
Page 3 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