View previous topic :: View next topic |
Author |
Message |
paperp Guru


Joined: 27 Feb 2004 Posts: 544 Location: Toscana , Italy
|
Posted: Sat Dec 04, 2004 11:11 am Post subject: [INFO]Nuova release di Enlightenment 0.17!! |
|
|
...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.
Purtroppo per ora niente ebuild a quello che so io. |
|
Back to top |
|
 |
molesto Tux's lil' helper


Joined: 30 Oct 2004 Posts: 145 Location: Rome, Italy
|
Posted: Sat Dec 04, 2004 11:13 am Post subject: |
|
|
grrrrrr..... voglio l'ebuild.......... _________________ http://www.immeritus.org
The Sirius Black fan club |
|
Back to top |
|
 |
paperp Guru


Joined: 27 Feb 2004 Posts: 544 Location: Toscana , Italy
|
Posted: Sat Dec 04, 2004 11:20 am Post subject: |
|
|
...siamo in due!!  |
|
Back to top |
|
 |
n3m0 l33t


Joined: 08 Feb 2004 Posts: 798 Location: Richville, Naples, Italy, Europe
|
Posted: Sat Dec 04, 2004 11:40 am Post subject: |
|
|
molesto wrote: | grrrrrr..... voglio l'ebuild.......... |
anche io  _________________ Lenergia è la civiltà. Lasciarla in mano ai piromani/petrolieri è criminale. Perché aspettare che finisca il petrolio?
Letà della pietra non è mica finita per mancanza di pietre. - B.G.
Site/Blog: http://www.neminis.org |
|
Back to top |
|
 |
redview Guru


Joined: 18 Feb 2004 Posts: 365 Location: Goteborg - Sweden
|
Posted: Sat Dec 04, 2004 12:30 pm Post subject: |
|
|
sembra decisamente bellissimo!
spero che arrivi in fretta l'ebuild così in questi giorni di svaccanza me lo posso provare per bene!  _________________ 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 |
|
 |
Josuke Veteran


Joined: 07 May 2003 Posts: 1175 Location: Italy - Bolzano
|
Posted: Sat Dec 04, 2004 12:33 pm Post subject: |
|
|
Hehehe era ora..aspettavo questa versione da anni ormai _________________ fletto i muscoli...e sono nel vuoto |
|
Back to top |
|
 |
paperp Guru


Joined: 27 Feb 2004 Posts: 544 Location: Toscana , Italy
|
Posted: Sat Dec 04, 2004 12:42 pm Post subject: |
|
|
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 |
|
 |
Vendicatore Apprentice

Joined: 05 Apr 2004 Posts: 252 Location: Carate Brianza, Italy
|
Posted: Sat Dec 04, 2004 1:40 pm Post subject: |
|
|
E17 stabile
Lo voglio!  |
|
Back to top |
|
 |
Raffo Veteran


Joined: 23 Apr 2004 Posts: 1019 Location: Berlin
|
Posted: Sat Dec 04, 2004 1:49 pm Post subject: |
|
|
enlightenment l'ho usato per pochissimo, ma nn ho mai capito come settarlo per bene, cosa dovevo modificare... |
|
Back to top |
|
 |
paperp Guru


Joined: 27 Feb 2004 Posts: 544 Location: Toscana , Italy
|
Posted: Sat Dec 04, 2004 2:32 pm Post subject: |
|
|
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 |
|
 |
maiosyet Apprentice


Joined: 14 Oct 2003 Posts: 188 Location: /Italy/Milan
|
Posted: Sat Dec 04, 2004 2:39 pm Post subject: |
|
|
Mh... non per fare il guastafeste 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  |
|
Back to top |
|
 |
Josuke Veteran


Joined: 07 May 2003 Posts: 1175 Location: Italy - Bolzano
|
Posted: Thu Dec 16, 2004 9:50 pm Post subject: |
|
|
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 |
|
 |
Josuke Veteran


Joined: 07 May 2003 Posts: 1175 Location: Italy - Bolzano
|
Posted: Thu Dec 16, 2004 11:57 pm Post subject: |
|
|
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 |
|
 |
wiky n00b

Joined: 06 Nov 2004 Posts: 15
|
Posted: Fri Dec 17, 2004 9:15 am Post subject: |
|
|
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 |
|
 |
Josuke Veteran


Joined: 07 May 2003 Posts: 1175 Location: Italy - Bolzano
|
Posted: Fri Dec 17, 2004 9:21 am Post subject: |
|
|
usi utf8? x sotto che errori ti da? _________________ fletto i muscoli...e sono nel vuoto |
|
Back to top |
|
 |
wiky n00b

Joined: 06 Nov 2004 Posts: 15
|
Posted: Fri Dec 17, 2004 9:41 am Post subject: |
|
|
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 |
|
 |
theRealMorpheu5 l33t


Joined: 26 Feb 2004 Posts: 841 Location: Vicenza, IT
|
Posted: Fri Dec 17, 2004 9:50 am Post subject: |
|
|
Veramente è una CVS... io aspetterei. |
|
Back to top |
|
 |
wiky n00b

Joined: 06 Nov 2004 Posts: 15
|
Posted: Fri Dec 17, 2004 10:07 am Post subject: |
|
|
theRealMorpheu5 wrote: | Veramente è una CVS... io aspetterei. |
Allora restero' in trepidante attesa. Grazie ciao
wiky |
|
Back to top |
|
 |
Josuke Veteran


Joined: 07 May 2003 Posts: 1175 Location: Italy - Bolzano
|
Posted: Fri Dec 17, 2004 10:45 am Post subject: |
|
|
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 |
|
 |
tomasino Apprentice


Joined: 11 Feb 2004 Posts: 154 Location: Italy, Bologna
|
Posted: Fri Dec 17, 2004 10:54 am Post subject: |
|
|
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 ), quando noterò novità interessanti riemergerò il tutto. |
|
Back to top |
|
 |
Josuke Veteran


Joined: 07 May 2003 Posts: 1175 Location: Italy - Bolzano
|
Posted: Fri Dec 17, 2004 10:56 am Post subject: |
|
|
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 |
|
 |
Dhaki Guru


Joined: 16 Jun 2004 Posts: 325 Location: Ticino - CH
|
Posted: Fri Dec 17, 2004 10:59 am Post subject: |
|
|
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 ) |
|
Back to top |
|
 |
tomasino Apprentice


Joined: 11 Feb 2004 Posts: 154 Location: Italy, Bologna
|
Posted: Fri Dec 17, 2004 11:00 am Post subject: |
|
|
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 |
|
 |
Josuke Veteran


Joined: 07 May 2003 Posts: 1175 Location: Italy - Bolzano
|
Posted: Fri Dec 17, 2004 11:01 am Post subject: |
|
|
si si era capito...continua il mio punto di domanda su erss _________________ fletto i muscoli...e sono nel vuoto |
|
Back to top |
|
 |
tomasino Apprentice


Joined: 11 Feb 2004 Posts: 154 Location: Italy, Bologna
|
Posted: Fri Dec 17, 2004 11:08 am Post subject: |
|
|
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 |
|
 |
|