Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
[INFO]Nuova release di Enlightenment 0.17!!
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
paperp
Guru
Guru


Joined: 27 Feb 2004
Posts: 544
Location: Toscana , Italy

PostPosted: Sat Dec 04, 2004 11:11 am    Post subject: [INFO]Nuova release di Enlightenment 0.17!! Reply with quote

...credo che sia degno di nota , il livello raggiunto da questo nuovo e promettente windowmanager , che si basa su librerie(imlib2)che permettono interessanti caratteristiche.
Vi consiglio anche di guardare lo stupendo file .avi del demo.

http://enlightenment.org/pages/enlightenment.html

..spettacoloso. 8O

Purtroppo per ora niente ebuild a quello che so io.
Back to top
View user's profile Send private message
molesto
Tux's lil' helper
Tux's lil' helper


Joined: 30 Oct 2004
Posts: 145
Location: Rome, Italy

PostPosted: Sat Dec 04, 2004 11:13 am    Post subject: Reply with quote

grrrrrr..... voglio l'ebuild..........
_________________
http://www.immeritus.org
The Sirius Black fan club
Back to top
View user's profile Send private message
paperp
Guru
Guru


Joined: 27 Feb 2004
Posts: 544
Location: Toscana , Italy

PostPosted: Sat Dec 04, 2004 11:20 am    Post subject: Reply with quote

...siamo in due!! :twisted:
Back to top
View user's profile Send private message
n3m0
l33t
l33t


Joined: 08 Feb 2004
Posts: 798
Location: Richville, Naples, Italy, Europe

PostPosted: Sat Dec 04, 2004 11:40 am    Post subject: Reply with quote

molesto wrote:
grrrrrr..... voglio l'ebuild..........


anche io 8O
_________________
L’energia è la civiltà. Lasciarla in mano ai piromani/petrolieri è criminale. Perché aspettare che finisca il petrolio?
L’età della pietra non è mica finita per mancanza di pietre. - B.G.


Site/Blog: http://www.neminis.org
Back to top
View user's profile Send private message
redview
Guru
Guru


Joined: 18 Feb 2004
Posts: 365
Location: Goteborg - Sweden

PostPosted: Sat Dec 04, 2004 12:30 pm    Post subject: Reply with quote

sembra decisamente bellissimo!
spero che arrivi in fretta l'ebuild così in questi giorni di svaccanza me lo posso provare per bene! :lol:
_________________
our enterprise a success as return is no option/our eyes were removed for our own safety/the distance too great for you to hear our cries/nevermind take this lamp we are beyond light [kinetic-arcturus]
you and I, connect and emerge [we ride-syl]
Back to top
View user's profile Send private message
Josuke
Veteran
Veteran


Joined: 07 May 2003
Posts: 1175
Location: Italy - Bolzano

PostPosted: Sat Dec 04, 2004 12:33 pm    Post subject: Reply with quote

Hehehe era ora..aspettavo questa versione da anni ormai
_________________
fletto i muscoli...e sono nel vuoto
Back to top
View user's profile Send private message
paperp
Guru
Guru


Joined: 27 Feb 2004
Posts: 544
Location: Toscana , Italy

PostPosted: Sat Dec 04, 2004 12:42 pm    Post subject: Reply with quote

sono lontano da un Sistema gentoo , ma vi posso postare lo script per l'ebuild , vanno adattati i settings secondo uso proprio ma dopo dovrebbe andare , se qualcuno di voi voule provare ,io brucio dalla volgia , appena torno lo volgio provare------->

Code:
#!/bin/bash

# VARS - Change as needed to reflect your settings #

SRC="/opt/DEVEL/e17"
PREFIX="/opt/e17"
PBIN="${PREFIX}/bin"
HWD="/opt/DEVEL"
SRC="${HWD}/e17"
LOGS="$HWD/logs"


##### END OF VARS ###############

ESS="imlib2 edb eet evas ecore epeg epsilon embryo edje esmart emotion etox ewl iconbar entice entrance elicit e"

RESULT=`cvs -q -n -z3 -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/enlightenment co e17 2>&1|grep "U "|awk '{print $2}'`
REBUILD=0

PATH=$PATH:${PREFIX}/bin:${PREFIX}/sbin

function clear_all() {
    if [ $REBUILD -eq 1 ]; then
   echo "Cleaning tags"
   find $SRC -type f -name .done -print -exec rm -f {} \;
    fi
}


function rebuild() {
# # # # # # # # # # # # # # # # # # # #
# Build Order [As of 2004-11-28] (EFL)
# # # # # # # # # # # # # # # # # # # #
#
# 1. e17/libs/imlib2
# 2. e17/libs/edb
# 3. e17/libs/eet
# 4. e17/libs/evas
# 5. e17/libs/ecore
# 6. e17/libs/epeg
# 7. e17/libs/epsilon
# 8. e17/libs/embryo
# 9. e17/libs/edje
# 10. e17/libs/esmart
# 11. e17/libs/emotion
# 12. e17/libs/etox
# 13. e17/libs/ewl
#
# * The following apps will build on the above libs:
# * e17/apps/iconbar
# * e17/apps/entice
# * e17/apps/entrance
# * e17/apps/elicit
# * e17/apps/e
#
# # # # # # # # # # # # # # # # # # # # # # # # # # #


CFL="-I${PREFIX}/include -L${PREFIX}/lib"

ARGS=

MUST=" \
    libs/imlib2 \
    libs/edb \
    libs/eet \
    libs/evas \
    libs/ecore \
    libs/epeg \
    libs/epsilon \
    libs/embryo \
    libs/edje \
    libs/esmart \
    libs/emotion \
    libs/etox \
    libs/ewl \
    apps/iconbar \
    apps/entice \
    apps/entrance \
    apps/elicit \
    apps/e"
   
#        {

function err() {
    local where=$1
    echo "ERROR! Error! ERROR!"
    tail -20 $LOGS/$where
    exit 100
}


     {
     echo "=========================================="
     echo "Build started on `date`"
     echo -e "==========================================\n\n\n"
     for comp in $MUST; do
   cd ${SRC}/${comp};
   echo -n "Now in: "; pwd ;
   name=`echo $comp|awk -F"/" '{print $2}'` ;
   echo "Building: $comp ($name)" ;
   echo -e "----------------------------------------\n" ;
       if [ -f .done ]; then continue; fi
      
       case $name in
          edb)   ARGS="--enable-test --enable-gtk --enable-ncurses";; # NOTE: need tcl-devel
          evas)   ARGS="--enable-software-x11 --enable-fb --enable-directfb --enable-buffer --enable-gl-x11 \
                  --enable-image-loader-png --enable-image-loader-jpeg --enable-image-loader-eet \
                      --enable-image-loader-edb --enable-font-loader-eet --enable-cpu-mmx --enable-cpu-sse \
                      --enable-cpu-altivec --enable-cpu-c --enable-scale-sample --enable-scale-smooth \
                      --enable-convert-yuv --enable-small-dither-mask";; 
              epsilon)   ARGS="--with-imlib2-prefix=${PREFIX} --with-imlib2-exec-prefix=${PREFIX} --with-epeg=${PREFIX}";;
              edje)   ARGS="--with-evas-config=${PREFIX}/bin/evas-config --with-ecore-config=${PREFIX}/bin/ecore-config \
                      --with-eet-config=${PREFIX}/bin/eet-config --with-embryo-config=${PREFIX}/bin/embryo-config \
                                   --with-imlib2-config=${PREFIX}/bin/imlib2-config";;
              esmart)   ARGS="--with-evas=${PREFIX} --with-ecore=${PREFIX} --with-imlib2=${PREFIX} --with-epsilon=${PREFIX} --with-edje=${PREFIX}";;
              emotion)   ARGS="--with-eet-config=${PBIN}/eet-config --with-evas-config=${PBIN}/evas-config --with-edje-config=${PBIN}/edje-config \
                       --with-ecore-config=${PBIN}/ecore-config --with-embryo-config=${PBIN}/embryo-config --with-xine-config=`which xine-config`";;
#          etox)   ARGS="--with-evas-config=${PBIN}/evas-config --with-ecore-config=${PBIN}/ecore-config";;
              ecore)   ARGS="--with-edb=/opt/e17 --with-evas=/opt/e17 --with-ecore=/opt/e17 --with-edje=/opt/e17";;
              *)      ARGS="";;
          esac;
      
       if [ -f Makefile ]; then
      echo "Cleaning..."
      make clean 2>&1>/dev/null
       fi

        echo -e "Running Autogen...\n---------------------------------\n"
   ( CFLAGS=${CFL} sh autogen.sh --prefix=${PREFIX} $ARGS  2>&1 ) | tee ${LOGS}/${name}-autogen.log

   if [ `grep -c -i Error: ${LOGS}/${name}-autogen.log` -eq 0 ]; then
        echo -e "\nMake Part\n----------------------------------------\n";
           ( CFLAGS=${CFL} make 2>&1 ) | tee ${LOGS}/${name}-make.log
   else
       echo "ERROR OCCURED: "
       echo -e "\n\n********************************************\n\n";
       echo "LOG WAS: "
       cat config.log
       exit 100
   fi
   if [ `grep -c -i Error: ${LOGS}/${name}-make.log` -eq 0 ]; then
       echo -e "\nInstall Part\n----------------------------------------\n";
       ( make install 2>&1 ) | tee ${LOGS}/${name}-install.log
   else
       echo "MAKE ERROR OCCURED: "
       tail -20 ${LOGS}/${name}-make.log
#       read junk
       echo "LOG WAS: "
       tail -10 config.log
       exit 100
   fi
   echo -e  "********************************\nDone or Press Ctrl-C now!\n********************************\n" #}| tee  $LOGS/build.log
    ldconfig
    touch .done
done
     echo -e "\n\n\n=========================================="
     echo "Build ended on `date`"
     echo "=========================================="
    } |tee $LOGS/build.log

}


for changed in $RESULT; do
    WHO=`echo $changed|awk -F"/" '{print $3}'`
    WHERE=`echo $changed|awk -F"/" '{print $2}'`
    for CURC in $ESS; do
   case $WHO in
       $CURC) echo "Critical component $WHO in $WHERE changed - need total rebuild ($changed)"; REBUILD=1;;
   esac
    done
done

if [ $REBUILD -ne 0 ]; then
    cvs -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/enlightenment login
    cvs -q -z3 -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/enlightenment co e17
    #cvs -z3 -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/enlightenment co eterm
    #cvs -z3 -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/enlightenment co misc
    clear_all
#    sh $BLD_SCR
    rebuild

fi
Back to top
View user's profile Send private message
Vendicatore
Apprentice
Apprentice


Joined: 05 Apr 2004
Posts: 252
Location: Carate Brianza, Italy

PostPosted: Sat Dec 04, 2004 1:40 pm    Post subject: Reply with quote

E17 stabile 8O
Lo voglio! :D
Back to top
View user's profile Send private message
Raffo
Veteran
Veteran


Joined: 23 Apr 2004
Posts: 1019
Location: Berlin

PostPosted: Sat Dec 04, 2004 1:49 pm    Post subject: Reply with quote

enlightenment l'ho usato per pochissimo, ma nn ho mai capito come settarlo per bene, cosa dovevo modificare...
Back to top
View user's profile Send private message
paperp
Guru
Guru


Joined: 27 Feb 2004
Posts: 544
Location: Toscana , Italy

PostPosted: Sat Dec 04, 2004 2:32 pm    Post subject: Reply with quote

No , non è stabile è compilabile iinserendo in etc/portage/package.keywords tutte le librerie della Enlightenment Foundation Libraries e poi emergendo i pacchetti elencati nell sito e poi scaricare la versione cvs sempre dal sito e compilando con ./autogen.sh, make, make install, ldconfig.dovrebbe andare tutto ok e comparire nella list dei principali login grafici , kdm,entrance,gdm.
Back to top
View user's profile Send private message
maiosyet
Apprentice
Apprentice


Joined: 14 Oct 2003
Posts: 188
Location: /Italy/Milan

PostPosted: Sat Dec 04, 2004 2:39 pm    Post subject: Reply with quote

Mh... non per fare il guastafeste 8) ma spero che in tutti questi anni di sviluppo, costellati da una politica che rasenta l'assurdo, i miglioramenti di Enlightenment non consistano solo in una taskbar (comunque molto carina... ) :?

Ovviamente sarò ben lieto di essere smentito :D
Back to top
View user's profile Send private message
Josuke
Veteran
Veteran


Joined: 07 May 2003
Posts: 1175
Location: Italy - Bolzano

PostPosted: Thu Dec 16, 2004 9:50 pm    Post subject: Reply with quote

qualcuno lo ha provato? girando nel forum ho notato che le opinioni sono ancora del tipo: si bello ma ancora inutilizzabile
_________________
fletto i muscoli...e sono nel vuoto
Back to top
View user's profile Send private message
Josuke
Veteran
Veteran


Joined: 07 May 2003
Posts: 1175
Location: Italy - Bolzano

PostPosted: Thu Dec 16, 2004 11:57 pm    Post subject: Reply with quote

ok l'ho provato...sembra in effetti ancora inutilizzabile..qualcosina va ma ancora lontano dal sostituire un fluxbox una gnome un kde o chi per esso
_________________
fletto i muscoli...e sono nel vuoto
Back to top
View user's profile Send private message
wiky
n00b
n00b


Joined: 06 Nov 2004
Posts: 15

PostPosted: Fri Dec 17, 2004 9:15 am    Post subject: Reply with quote

A proposito di enlightenment.....

io l'ho installato(x11-wm/enlightenment-0.16.6), funziona; cioe' si avvia, ma qualsiasi tipo di scritta non viene visualizzata; quindi le iconcine, pulsanti, finestrelle sì, ma il testo che descriva quelle iconcine, finestre pulsantini no! Veniva visualizzato solo il testo iniziale di presentazione. La cosa "grave" e' che non essendoci delle etichette sui pulsanti, anche configurare il sistema una volta avviato e' impossibile....e il pacchetto software (ebuild) e' stato installato correttamente...
qualcuno ha per caso riscontrato il mio stesso problema, dubbi, soluzioni, perplessita'?

ciao
wiky
Back to top
View user's profile Send private message
Josuke
Veteran
Veteran


Joined: 07 May 2003
Posts: 1175
Location: Italy - Bolzano

PostPosted: Fri Dec 17, 2004 9:21 am    Post subject: Reply with quote

usi utf8? x sotto che errori ti da?
_________________
fletto i muscoli...e sono nel vuoto
Back to top
View user's profile Send private message
wiky
n00b
n00b


Joined: 06 Nov 2004
Posts: 15

PostPosted: Fri Dec 17, 2004 9:41 am    Post subject: Reply with quote

Josuke wrote:
usi utf8? x sotto che errori ti da?


utf8 a quale delle migliaia di acronimi corrisponderebbe? intendi forse il tipo di carattere? in quel caso no. Uso:

Code:
 NLS ISO 8859-1  (Latin 1; Western European Languages)


Per quanto concerne gli errori non ce ne sono. Il che e' abbastanza preoccupante :)

ciao
wiky
Back to top
View user's profile Send private message
theRealMorpheu5
l33t
l33t


Joined: 26 Feb 2004
Posts: 841
Location: Vicenza, IT

PostPosted: Fri Dec 17, 2004 9:50 am    Post subject: Reply with quote

Veramente è una CVS... io aspetterei.
Back to top
View user's profile Send private message
wiky
n00b
n00b


Joined: 06 Nov 2004
Posts: 15

PostPosted: Fri Dec 17, 2004 10:07 am    Post subject: Reply with quote

theRealMorpheu5 wrote:
Veramente è una CVS... io aspetterei.


Allora restero' in trepidante attesa. Grazie ciao
wiky
Back to top
View user's profile Send private message
Josuke
Veteran
Veteran


Joined: 07 May 2003
Posts: 1175
Location: Italy - Bolzano

PostPosted: Fri Dec 17, 2004 10:45 am    Post subject: Reply with quote

No enlightenment 0.16 di cui parli tu non è CVS ed è stable quindi deve andare per forza l'errore è da qualche altra parte...con gli altri user vedi tutto correttamente?
_________________
fletto i muscoli...e sono nel vuoto
Back to top
View user's profile Send private message
tomasino
Apprentice
Apprentice


Joined: 11 Feb 2004
Posts: 154
Location: Italy, Bologna

PostPosted: Fri Dec 17, 2004 10:54 am    Post subject: Reply with quote

cmq gli ebuild per il cvs ci sono già

Code:
for i in { x11-misc/engage x11-libs/ewl x11-libs/evas media-libs/imlib2 dev-libs/eet dev-db/edb x11-libs/ecore media-libs/etox media-libs/edje dev-libs/embryo x11-libs/esmart media-libs/epsilon media-libs/epeg app-misc/examine net-news/erss x11-misc/entrance  media-libs/emotion media-gfx/elicit media-gfx/entice x11-wm/e app-misc/evidence }
do
emerge =$i-9999
done


Nulla di nuovo da aggiungere. Io ho già emerso il cvs, poi controllo l'rss http://cia.navi.cx/stats/project/e/.rss del cvs stesso (ovviamente con Erss :D), quando noterò novità interessanti riemergerò il tutto.
Back to top
View user's profile Send private message
Josuke
Veteran
Veteran


Joined: 07 May 2003
Posts: 1175
Location: Italy - Bolzano

PostPosted: Fri Dec 17, 2004 10:56 am    Post subject: Reply with quote

si infatti ho usato gli ebuild per provarlo....non ho ben capito la parte del tuo post relativa a erss
_________________
fletto i muscoli...e sono nel vuoto
Back to top
View user's profile Send private message
Dhaki
Guru
Guru


Joined: 16 Jun 2004
Posts: 325
Location: Ticino - CH

PostPosted: Fri Dec 17, 2004 10:59 am    Post subject: Reply with quote

:o sembra seriamente interessante!! Gli screen sono a dir poco fighissimi, sono ansioso di provarlo, anche se non penso abbandonerò xfce4 (4.1.99.1 per la precisione :D )
Back to top
View user's profile Send private message
tomasino
Apprentice
Apprentice


Joined: 11 Feb 2004
Posts: 154
Location: Italy, Bologna

PostPosted: Fri Dec 17, 2004 11:00 am    Post subject: Reply with quote

tomasino wrote:

Code:
for i in { x11-misc/engage x11-libs/ewl x11-libs/evas media-libs/imlib2 dev-libs/eet dev-db/edb x11-libs/ecore media-libs/etox media-libs/edje dev-libs/embryo x11-libs/esmart media-libs/epsilon media-libs/epeg app-misc/examine net-news/erss x11-misc/entrance  media-libs/emotion media-gfx/elicit media-gfx/entice x11-wm/e app-misc/evidence }
do
emerge =$i-9999
done



a scanso di equivoci, lo script è solo un modo "esotico" di dire che quei pacchetti in versione cvs hanno versione 9999 ;)

buona giornata
Back to top
View user's profile Send private message
Josuke
Veteran
Veteran


Joined: 07 May 2003
Posts: 1175
Location: Italy - Bolzano

PostPosted: Fri Dec 17, 2004 11:01 am    Post subject: Reply with quote

si si era capito...continua il mio punto di domanda su erss
_________________
fletto i muscoli...e sono nel vuoto
Back to top
View user's profile Send private message
tomasino
Apprentice
Apprentice


Joined: 11 Feb 2004
Posts: 154
Location: Italy, Bologna

PostPosted: Fri Dec 17, 2004 11:08 am    Post subject: Reply with quote

Josuke wrote:
si infatti ho usato gli ebuild per provarlo....non ho ben capito la parte del tuo post relativa a erss


l'rss che ho linkato ti tiene aggiornato su tutte le modifiche che vengono applicate al cvs, ad esempio:
Quote:
Commit by dj2 ::
e17/docs/cookbook/ (4 files in 4 dirs):
quick recipe on creating new ecore events


Così riemergo il cvs solo se vedo che ci sono novità interessanti.
Erss è solo il viewer che uso.
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