<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="http://forum.xfce.org/extern.php?action=feed&amp;tid=5570&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Xfce Forums / Please help a beginner install 4.8pre over existing 4.6.2 Xubuntu]]></title>
		<link>http://forum.xfce.org/viewtopic.php?id=5570</link>
		<description><![CDATA[The most recent posts in Please help a beginner install 4.8pre over existing 4.6.2 Xubuntu.]]></description>
		<lastBuildDate>Fri, 25 Feb 2011 16:35:43 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: Please help a beginner install 4.8pre over existing 4.6.2 Xubuntu]]></title>
			<link>http://forum.xfce.org/viewtopic.php?pid=20895#p20895</link>
			<description><![CDATA[<p>Install on Debian Squeeze</p><div class="codebox"><pre class="vscroll"><code>#sudo aptitude install build-essential intltool libglib2.0-dev libdbus-glib-1-dev xserver-xorg-dev libgtk2.0-dev libstartup-notification0-dev libgladeui-1-dev libglade2-dev python-gtk2-dev libwnck-dev libexif-dev libfreetype6-dev libjpeg62-dev libpng12-dev libgudev-1.0-dev libnotify-dev libxklavier-dev libcanberra-dev libgconf2-dev libgnome-keyring1.0-cil-dev libgnome-keyring-dev libgamin-dev libhal-storage-dev

#!/bin/bash
# Script - installazione automatizzata XFCE4.8.0 per ubuntu
# Script - Automatic Installation XFCE4.8.0 for ubuntu

#Testato su Ubuntu 10.04.1 (32bit) e Ubuntu 10.10 (64bit)
#Tested su Ubuntu 10.04.1 (32bit) and Ubuntu 10.10 (64bit)

#Utilizzo: copiare questo script nel punto dove si vogliono scaricare/compilare i sorgenti ed eseguirlo
#Usage: copy this script to the point where you want to download / compile source and run it

sudo apt-get install build-essential intltool libglib2.0-dev libdbus-glib-1-dev xserver-xorg-dev libgtk2.0-dev libstartup-notification0-dev libgladeui-1-dev libglade2-dev python-gtk2-dev libwnck-dev libexif-dev libfreetype6-dev libjpeg62-dev libpng12-dev libgudev-1.0-dev libnotify-dev libxklavier-dev libcanberra-dev libgconf2-dev libgnome-keyring1.0-cil-dev libgnome-keyring-dev libgamin-dev libhal-storage-dev

wget -c http://archive.xfce.org/xfce/4.8/fat_tarballs/xfce-4.8.tar.bz2
tar xfvj xfce-4.8.tar.bz2
cd src

tar xfvj libxfce4util-4.8.1.tar.bz2
cd libxfce4util-4.8.1/
./configure --prefix=/usr
make
sudo make install
cd ..

tar xfvj xfconf-4.8.0.tar.bz2
cd xfconf-4.8.0/
./configure --prefix=/usr
make
sudo make install
cd ..

tar xfvj libxfce4ui-4.8.0.tar.bz2
cd libxfce4ui-4.8.0/
./configure --prefix=/usr
make
sudo make install
cd ..

tar xfvj libxfcegui4-4.8.0.tar.bz2
cd libxfcegui4-4.8.0/
./configure --prefix=/usr
make
sudo make install
cd ..

tar xfvj exo-0.6.0.tar.bz2
cd exo-0.6.0/
./configure --prefix=/usr
make
sudo make install
cd ..

#Scarico garcon
wget -c http://archive.xfce.org/src/libs/garcon/0.1/garcon-0.1.5.tar.bz2
tar xfvj garcon-0.1.5.tar.bz2
cd garcon-0.1.5/
./configure --prefix=/usr
make
sudo make install
sudo cp data/xfce/xfce-applications.menu /etc/xdg/menus/
cd ..

tar xfvj xfce4-panel-4.8.0.tar.bz2
cd xfce4-panel-4.8.0/
./configure --prefix=/usr
make
sudo make install
cd ..

tar xfvj Thunar-1.2.0.tar.bz2
cd Thunar-1.2.0/
./configure --prefix=/usr
make
sudo make install
cd ..

tar xfvj xfce4-settings-4.8.0.tar.bz2
cd xfce4-settings-4.8.0/
./configure --enable-sound-settings --enable-pluggable-dialogs --prefix=/usr
make
sudo make install
cd ..

tar xfvj xfce4-session-4.8.0.tar.bz2
cd xfce4-session-4.8.0/
./configure --prefix=/usr --enable-libgnome-keyring
make
sudo make install
cd ..

tar xfvj xfdesktop-4.8.0.tar.bz2
cd xfdesktop-4.8.0/
./configure --prefix=/usr
make
sudo make install
cd ..

tar xfvj xfwm4-4.8.0.tar.bz2
cd xfwm4-4.8.0/
./configure --prefix=/usr
make
sudo make install
cd ..

tar xfvj xfce-utils-4.8.0.tar.bz2
cd xfce-utils-4.8.0/
./configure --prefix=/usr
make
sudo make install
cd ..

tar xfvj xfce4-appfinder-4.8.0.tar.bz2
cd xfce4-appfinder-4.8.0/
./configure --prefix=/usr
make
sudo make install
cd ..

tar xfvj gtk-xfce-engine-2.8.0.tar.bz2
cd gtk-xfce-engine-2.8.0/
./configure --prefix=/usr
make
sudo make install
cd ..

tar xfvj thunar-vfs-1.2.0.tar.bz2
cd thunar-vfs-1.2.0/
./configure --prefix=/usr
make
sudo make install
cd ..

http://archive.be2.xfce.org/src/xfce/libxfce4menu/4.6/libxfce4menu-4.6.2.tar.bz2
tar xfvj libxfce4menu-4.6.2.tar.bz2
cd libxfce4menu-4.6.2/
./configure --prefix=/usr
make
sudo make install</code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (xfcelav)]]></author>
			<pubDate>Fri, 25 Feb 2011 16:35:43 +0000</pubDate>
			<guid>http://forum.xfce.org/viewtopic.php?pid=20895#p20895</guid>
		</item>
		<item>
			<title><![CDATA[Re: Please help a beginner install 4.8pre over existing 4.6.2 Xubuntu]]></title>
			<link>http://forum.xfce.org/viewtopic.php?pid=20882#p20882</link>
			<description><![CDATA[<p>are there any playns to update this PPA soon ? <br />tnx.</p>]]></description>
			<author><![CDATA[dummy@example.com (gregg128)]]></author>
			<pubDate>Thu, 24 Feb 2011 15:33:25 +0000</pubDate>
			<guid>http://forum.xfce.org/viewtopic.php?pid=20882#p20882</guid>
		</item>
		<item>
			<title><![CDATA[Re: Please help a beginner install 4.8pre over existing 4.6.2 Xubuntu]]></title>
			<link>http://forum.xfce.org/viewtopic.php?pid=20188#p20188</link>
			<description><![CDATA[<p>If you are a beginner, it is not advised to:<br />- install stuff which is not packaged by your distribution.<br />- run versions which are not labelled as stable.</p><p>If you really want to test 4.8pre1, I advise you to wait until it is available in the Xubuntu Team Dev PPA: <a href="https://launchpad.net/~xubuntu-dev/+archive/ppa" rel="nofollow">https://launchpad.net/~xubuntu-dev/+archive/ppa</a> That way you won&#039;t mess with your system.</p>]]></description>
			<author><![CDATA[dummy@example.com (jeromeg)]]></author>
			<pubDate>Thu, 11 Nov 2010 19:10:20 +0000</pubDate>
			<guid>http://forum.xfce.org/viewtopic.php?pid=20188#p20188</guid>
		</item>
		<item>
			<title><![CDATA[Please help a beginner install 4.8pre over existing 4.6.2 Xubuntu]]></title>
			<link>http://forum.xfce.org/viewtopic.php?pid=20181#p20181</link>
			<description><![CDATA[<p>Hello, can you please help me with the following questions? </p><p>Please answer in beginner terminology, even though I have installed Xfce in the past.</p><p>1) Can I install the 4.8 components over top of the 4.6.2 components on an Xubuntu 10.10 installation?</p><p>2) If so, do you just unzip the files and do a configure/make/make install for each one?</p><p>3) Is there a list of dependencies I need first, and are they all in the Ubuntu repository?</p><p>4) What order do you install the files in?</p><p>5) Is there anything else that I need to know?</p><p>Thank you!</p>]]></description>
			<author><![CDATA[dummy@example.com (videodrome)]]></author>
			<pubDate>Thu, 11 Nov 2010 13:41:15 +0000</pubDate>
			<guid>http://forum.xfce.org/viewtopic.php?pid=20181#p20181</guid>
		</item>
	</channel>
</rss>
