Xfce4 SVN

Yes I know there's a Xfce4 CVS PKGBUILD but since it's so outdated I desided to update it so it's again usable. I'm not entirely sure about the deps so if you find any missing ones please post it here.
Please note that this package is not designed to be installed with other versions of Xfce. It may work and may not, most likely it won't so please remove any previous installations of Xfce.
# $Id$
# Contributor: Christian Lundgren <[email protected]>
# Heavily based on Aurelien Foret's <[email protected]> PKGBUILD for XFCE4 CVS
pkgname=xfce4-svn
pkgver=20050628
pkgrel=2
pkgdesc="XFce4 SVN"
url="http://www.xfce.org/"
conflicts=('gtk-xfce-engine' 'libxfce4mcs' 'libxfce4util' 'libxfcegui4' 'xfcalendar'
'xfce-mcs-manager' 'xfce-mcs-plugins' 'xfce-utils' 'xfce4-appfinder'
'xfce4-icon-theme' 'xfce4-iconbox' 'xfce4-mixer' 'xfce4-panel' 'xfce4-session'
'xfce4-systray' 'xfce4-toys' 'xfce4-trigger-launcher' 'xfdesktop' 'xfprint'
'xfwm4' 'xfwm4-themes')
depends=('gtk2' 'startup-notification' 'libxml2' 'dbh' 'bash' 'gtk-doc' 'intltool' 'a2ps')
makedepends=('subversion')
build() {
if [ ! -d $startdir/src/trunk ]; then
echo "Fetching sources..."
svn checkout http://svn.xfce.org/svn/xfce/modules/trunk
else
echo "Updating sources..."
svn up $startdir/src/trunk
fi
PKG_CONFIG_PATH=$startdir/pkg/opt/xfce4-svn/lib/pkgconfig:$PKG_CONFIG_PATH
PATH=$startdir/pkg/opt/xfce4-svn/bin:$PATH
XDG_DATA_DIRS=$startdir/pkg/opt/xfce4-svn/share:$XDG_DATA_DIRS
CFLAGS="-I$startdir/pkg/opt/xfce4-svn/include/xfce4
-L$startdir/pkg/opt/xfce4-svn/lib
$CFLAGS"
export PKG_CONFIG_PATH CFLAGS
export PATH
export XDG_DATA_DIRS
cd $startdir/src/trunk
for i in xfce4-dev-tools libxfce4util libxfcegui4 libxfce4mcs; do
(cd $i
./autogen.sh --prefix=/opt/xfce4-svn
make || return 1
make DESTDIR=$startdir/pkg install) || return 1
done
sed -i "s|(/opt/xfce4-svn/lib/libxfce4util.la)|$startdir/pkg1|"
$startdir/pkg/opt/xfce4-svn/lib/*.la
modules="xfce-mcs-manager
xfce-mcs-plugins
xfce-utils
xfce4-panel
xfdesktop
xfcalendar
xfce4-mixer
xfce4-appfinder
xfce4-session
xfce4-toys
xfce4-trigger-launcher
xfce4-icon-theme
xfprint
xffm
xfwm4
xfwm4-themes"
for i in $modules; do
(cd $i
./autogen.sh --prefix=/opt/xfce4-svn
make || return 1
make DESTDIR=$startdir/pkg install) || return 1
done
(cd gtk-xfce-engine-2
./autogen.sh --prefix=/usr
make || return 1
make DESTDIR=$startdir/pkg install) || return 1
sed -i "s|$startdir/pkg||g" $startdir/pkg/opt/xfce4-svn/lib/*.la
rm -rf $startdir/pkg/opt/xfce4-svn/share/gtk-doc
rm -rf $startdir/pkg/opt/xfce4-svn/share/xfce4/{AUTHORS,COPYING,BSD,GPL,LGPL,INFO}*
You will also need this
# /etc/profile.d/xfce4.sh
XFCE4DIR=/opt/xfce4-svn
PATH=$PATH:$XFCE4DIR/bin
MANPATH=$MANPATH:$XFCE4DIR/man
export PATH MANPATH
if [ -z $PKG_CONFIG_PATH ]; then
PKG_CONFIG_PATH=$XFCE4DIR/lib/pkgconfig
else
PKG_CONFIG_PATH=$PKG_CONFIG_PATH:$XFCE4DIR/lib/pkgconfig
fi
export PKG_CONFIG_PATH
[ -z $XDG_DATA_DIRS ] && XDG_DATA_DIRS=/usr/share
XDG_DATA_DIRS=$XDG_DATA_DIRS:$XFCE4DIR/share
[ -z $XDG_CONFIG_DIRS ] && XDG_CONFIG_DIRS=/etc/xdg
XDG_CONFIG_DIRS=$XDG_CONFIG_DIRS:$XFCE4DIR/etc/xdg
export XDG_DATA_DIRS XDG_CONFIG_DIRS
And perhaps you want this file (/etc/X11/sessions/xfce4.desktop)
[Desktop Entry]
Encoding=UTF-8
Name=Xfce4
Comment=Xfce4 SVN
Exec=/opt/xfce4-svn/bin/xfce4-session
Type=Application
EDIT: Fixed svn up on TomE's request
EDIT2: Added a2ps as dependecy, thanks to CyberTron
EDIT3: Changed svn adress

lunke you shoude change svn update http://svn.foo-projects.org/svn/xfce/modules/trunk to svn up $startdir/src/trunk
hers a PKGBULID for thunar
pkgname=thunar
pkgver=0.0.2.r17470
pkgdesc="Thunar is a file manager designed for Xfce. It is currently under development."
url="http://thunar.xfce.org/wiki/"
depends=('exo-svn')
makedepends=('subversion')
source=()
md5sums=()
build() {
if [ ! -d $startdir/src/thunar ]; then
echo "Fetching sources..."
svn checkout http://svn.foo-projects.org/svn/xfce/thunar/trunk/ /thunar
else
echo "Updating sources..."
svn up $startdir/src/thunar/
fi
cd $startdir/src/thunar
./autogen.sh --prefix=/opt/xfce4-svn
make || return 1
make DESTDIR=$startdir/pkg install
find $startdir/pkg -name '*.la' -exec rm {} ;
you will need exo from svn as well
pkgname=exo-svn
pkgver=r17470
pkgdesc="Extensions to Xfce by os-cillation"
url="http://libexo.os-cillation.com/"
conflicts=(exo)
provides=(exo)
depends=('xfce4-svn')
makedepends=('subversion')
source=()
md5sums=()
build() {
if [ ! -d $startdir/src/trunk ]; then
echo "Fetching sources..."
svn checkout http://svn.foo-projects.org/svn/xfce/libexo/trunk/
else
echo "Updating sources..."
svn up $startdir/src/trunk
fi
cd $startdir/src/trunk
./autogen.sh --prefix=/opt/xfce4-svn
make || return 1
make DESTDIR=$startdir/pkg install
find $startdir/pkg -name '*.la' -exec rm {} ;
"Operation libtool-slay" compliant

Similar Messages

  • Xfce4 packages to be replaced by xfce4-svn packages??

    Dear Arch fellow users,
    since a few days it seems impossible to to an pacman -Suy upgrade on my Arch i686 box with xfce4. It gives me the following result:
    pacman -Suy
    :: Synchronizing package databases...
    core is up to date
    extra is up to date
    community is up to date
    :: Starting full system upgrade...
    resolving dependencies... done.
    looking for inter-conflicts...
    :: libxfce4util-svn conflicts with libxfce4util. Remove libxfce4util? [Y/n] y
    :: libxfcegui4-svn conflicts with libxfcegui4. Remove libxfcegui4? [Y/n] y
    :: libxfce4mcs-svn conflicts with libxfce4mcs. Remove libxfce4mcs? [Y/n] y
    :: exo-svn conflicts with exo. Remove exo? [Y/n] y
    :: xfce4-panel-svn conflicts with xfce4-panel. Remove xfce4-panel? [Y/n] y
    :: thunar-svn conflicts with thunar. Remove thunar? [Y/n] y
    done.
    error: failed to prepare transaction (could not satisfy dependencies)
    :: libxfcegui4 requires mousepad
    :: libxfcegui4 requires xfce-mcs-manager
    :: libxfcegui4 requires xfce-mcs-plugins
    :: libxfcegui4 requires xfce-utils
    :: libxfcegui4 requires xfce4-appfinder
    :: libxfce4mcs requires xfce-mcs-manager
    :: libxfce4mcs requires xfce-mcs-plugins
    :: libxfce4mcs requires xfce-utils
    :: xfce4-panel requires xfce4-mixer
    :: xfce4-panel requires verve-plugin
    :: xfce4-panel requires xfce4-battery-plugin
    :: xfce4-panel requires xfce4-clipman-plugin
    :: xfce4-panel requires xfce4-cpufreq-plugin
    :: xfce4-panel requires xfce4-cpugraph-plugin
    :: xfce4-panel requires xfce4-datetime-plugin
    :: xfce4-panel requires xfce4-dict-plugin
    :: xfce4-panel requires xfce4-diskperf-plugin
    :: xfce4-panel requires xfce4-eyes-plugin
    :: xfce4-panel requires xfce4-fsguard-plugin
    :: xfce4-panel requires xfce4-genmon-plugin
    :: xfce4-panel requires xfce4-mailwatch-plugin
    :: xfce4-panel requires xfce4-messenger-plugin
    :: xfce4-panel requires xfce4-mount-plugin
    :: xfce4-panel requires xfce4-mpc-plugin
    :: xfce4-panel requires xfce4-netload-plugin
    :: xfce4-panel requires xfce4-notes-plugin
    :: xfce4-panel requires xfce4-quicklauncher-plugin
    :: xfce4-panel requires xfce4-screenshooter-plugin
    :: xfce4-panel requires xfce4-sensors-plugin
    :: xfce4-panel requires xfce4-smartbookmark-plugin
    :: xfce4-panel requires xfce4-systemload-plugin
    :: xfce4-panel requires xfce4-timer-plugin
    :: xfce4-panel requires xfce4-wavelan-plugin
    :: xfce4-panel requires xfce4-weather-plugin
    :: xfce4-panel requires xfce4-xfapplet-plugin
    :: xfce4-panel requires xfce4-xkb-plugin
    :: xfce4-panel requires xfce4-xmms-plugin
    :: thunar requires squeeze
    :: thunar requires xfdesktop
    :: thunar requires thunar-archive-plugin
    :: thunar requires thunar-media-tags-plugin
    :: thunar requires thunar-volman
    Is this a temporary phenomenon, or are we supposed to switch to xfce4-svn? If yes, is xfce4-svn stable enough for a reliable workhorse?
    And additionally how could one upgrade to xfce4-svn since I get an error message error: failed to prepare transaction (could not satisfy dependencies)
    I hope someone will help me out. Just a week a ago I gathered sufficient courage to turn my bloated and slowly running Ubuntu laptop (for professional use) into revitalized Arch box

    Thanks for your quick replies guys!
    I think you could successfully participate in the contest "the members who are responding faster than their shadows.....":D
    Cerebral you might be right. Also I few days ago I followed the advice of Tardo in the following thread http://bbs.archlinux.org/viewtopic.php?id=34566 and I installed the xfburn-svn-25797-1-i686.pkg.tar.gz in my quest for a  to get a lightweight burner with pacman -U. How do I get rid of it? Just pacman -R xfburn-svn-25797-1-i686.pkg.tar.gz ?? I installed that package since neither graveman (hangs) nor hacburn (can not detect my device) are working. I like k3b but not the bunch and MBs of dependencies.
    I will review the AUR and ABS wiki page on how to get rid of the xfburn-svn package....:P
    Thanks again for your quick responses!;)

  • Xfce4-svn menu

    How do I edit my menu in xfce4-svn?
    xfce4-menueditor is deprecated
    Xfce's menu system has been replaced, and xfce4-menueditor is not able to edit the new menu file format. You may continue and edit an old-style menu file, or quit.

    BUMP... how DO you edit the menu ??  Since the xorg update xfce is the only thing i can get to honour my chosen resolution.. and now my menus are all ugly gross and now how i like them..
    Last edited by thewayofzen (2007-11-12 14:56:39)

  • Xfce4-svn default theme - What's that window decoration?!

    I installed xfce4-svn (and xfce4-svn-extra) the other day, and i would just fell in love with the default gray window decorations!  They are so clean and beautiful. I want to dress my new shiny gnome 2.16 desktop with it...
    So... can anyone tell me what the decorations is called, and is there a gnome eqvivalent?

    you can open browsers new window using jdic...
    unfortunately Desktop.browse() doesnt allow to do that, but we can do that another way:
            String urlToOpen = "http://forum.java.sun.com/thread.jspa?threadID=5236723";
            BrowserService browserService = (BrowserService) ServiceManager.getService(ServiceManager.BROWSER_SERVICE);
            try {
                // exactly "_blank" allow to open necessary url in a new window :)
                browserService.show(new URL(urlToOpen), "_blank");
            } catch (LaunchFailedException e) {
                e.printStackTrace();
            } catch (MalformedURLException e) {
                e.printStackTrace();
            }

  • Change icon set - xfce4-svn

    I just installed xfce4-svn from shadowhand's repo, together with some icon-themes. I can't seem to find out how to switch icon sets - i'm probably blind, but i've looked "everywhere".
    I've got the following xfce-stuff installed
    libxfce4mcs-svn 20049-1
    libxfce4util-svn 20044-1
    libxfcegui4-svn 20473-1
    xfce-mcs-manager-svn 20498-1
    xfce-utils-svn 20506-1
    xfce4-icon-theme-svn 20479-1
    xfce4-panel-svn 20516-1
    xfce4-session-svn 20506-1
    xfdesktop-svn 20498-1
    xfwm4-svn 20501-1
    xfwm4-themes-svn 20300-1

    This is strange. Now i installed the xfce-mcs-plugins-svn and i find the 'User interface settings' entry in the Settings menu, but when i click it i get the message:
    Xfce Settings Manager error:
    No such plugin "ui"
    When i use the 'Settings Manager', there's no such thing as 'User interface settings'.

  • Xfce4-svn: desktop icons not removed [solved]

    How to reproduce:
    1. create file on desktop (e.g., drag it from Thunar window, or save file directly on desktop)
    2. Delete this file via context menu
    3. The icon of this file stay on the desktop anyway. If you open ~/Desktop, you'll see that file really deleted, but the icon present.
    Any ideas?

    Thanks to pushing me in proper direction. Really, fam not running
    I start fam and restart xfce. Now icons disappear after deleting. Thnx

  • [SOLVED] xfce4-powermanager-svn/kdemod-powermanager!

    Hello dear Archers! - Sorry for my bad English!
    I have some problem with Arch x86_64 - 2.6.28-ARCH + xfce4-svn on a Toshiba laptop (dual core/4 gb ram/video intel GMA):
    1. Xfce4-powermanager-svn wich don't change display brightness/change cpufreq policy when I plug/unplug AC cable.
    Same problem with kdemod4+powerdevil and gnome-powermanager.
    I have installed acpid; cpufrequtils; laptop-mode-tools; pm-utils -
    In rc.conf i have: MODULES=(acpi-cpufreq cpufreq_ondemand cpufreq_powersave cpufreq_userspace etc) DAEMONS=(syslog-ng hal laptop-mode wicd gdm)
    I can.t modprobe toshiba_acpi modules
    FATAL: Error inserting toshiba_acpi (/lib/modules/2.6.28-ARCH/kernel/drivers/acpi/toshiba_acpi.ko): No such device
    -Xfce4-powermanager-svn is notify me about power state/change: charging/discharging/fully charged etc., kdemod-powermanager doesn't.
    2. When I "suspend", I got a black screen, but I don't know how to wake up again my laptop.
    my pm-suspend.log
    Initial commandline parameters: --quirk-s3-bios
    --quirk-s3-mode
    Wed Jan 28 23:23:16 EET 2009: Running hooks for hibernate.
    /usr/lib/pm-utils/sleep.d/00auto-quirk hibernate hibernate: success.
    /usr/lib/pm-utils/sleep.d/00logging hibernate hibernate: Linux toshiba 2.6.28-ARCH #1 SMP PREEMPT Sun Jan 25 09:43:53 UTC 2009 x86_64 Intel(R) Pentium(R) Dual CPU T3200 @ 2.00GHz GenuineIntel GNU/Linux
    Module Size Used by
    i915 67208 2
    drm 108768 3 i915
    arc4 4096 2
    ecb 5248 2
    joydev 14208 0
    rtl8187 47232 0
    mac80211 183088 1 rtl8187
    eeprom_93cx6 4352 1 rtl8187
    cfg80211 36896 2 rtl8187,mac80211
    uvcvideo 62344 0
    compat_ioctl32 11520 1 uvcvideo
    videodev 37888 2 uvcvideo,compat_ioctl32
    v4l1_compat 17284 2 uvcvideo,videodev
    uhci_hcd 27552 0
    ehci_hcd 41356 0
    i2c_i801 12444 0
    psmouse 57116 0
    sg 31840 0
    rfkill 13904 0
    snd_pcsp 13052 1
    iTCO_wdt 15184 0
    video 22164 0
    output 5248 1 video
    i2c_core 26144 1 i2c_i801
    serio_raw 8196 0
    iTCO_vendor_support 5636 1 iTCO_wdt
    intel_agp 32880 1
    usbcore 160560 5 rtl8187,uvcvideo,uhci_hcd,ehci_hcd
    input_polldev 6032 0
    evdev 13984 10
    thermal 20896 0
    fan 7304 0
    button 9504 0
    battery 14600 0
    ac 7176 0
    snd_seq_oss 35584 0
    snd_seq_midi_event 9344 1 snd_seq_oss
    snd_seq 58336 4 snd_seq_oss,snd_seq_midi_event
    snd_seq_device 9364 2 snd_seq_oss,snd_seq
    snd_hda_intel 531124 4
    snd_hwdep 10632 1 snd_hda_intel
    snd_pcm_oss 45440 0
    snd_pcm 82952 4 snd_pcsp,snd_hda_intel,snd_pcm_oss
    snd_timer 24720 3 snd_seq,snd_pcm
    snd_page_alloc 11792 2 snd_hda_intel,snd_pcm
    snd_mixer_oss 18944 1 snd_pcm_oss
    snd 65096 18 snd_pcsp,snd_seq_oss,snd_seq,snd_seq_device,snd_hda_intel,snd_hwdep,snd_pcm_oss,snd_pcm,snd_timer,snd_mixer_oss
    soundcore 9632 1 snd
    r8169 39428 0
    mii 7296 1 r8169
    cpufreq_userspace 5892 0
    cpufreq_powersave 3840 0
    cpufreq_ondemand 10512 1
    acpi_cpufreq 10896 1
    freq_table 6272 2 cpufreq_ondemand,acpi_cpufreq
    processor 46776 4 thermal,acpi_cpufreq
    rtc_cmos 14040 0
    rtc_core 21060 1 rtc_cmos
    rtc_lib 4992 1 rtc_core
    jfs 182096 2
    sr_mod 18884 0
    cdrom 39080 1 sr_mod
    sd_mod 29096 3
    ahci 36876 2
    libata 176352 1 ahci
    scsi_mod 119256 4 sg,sr_mod,sd_mod,libata
    total used free shared buffers cached
    Mem: 3909868 389220 3520648 0 700 149400
    -/+ buffers/cache: 239120 3670748
    Swap: 0 0 0
    success.
    /usr/lib/pm-utils/sleep.d/00powersave hibernate hibernate: success.
    /usr/lib/pm-utils/sleep.d/01grub hibernate hibernate: not applicable.
    /usr/lib/pm-utils/sleep.d/11netcfg hibernate hibernate: success.
    /usr/lib/pm-utils/sleep.d/49bluetooth hibernate hibernate: not applicable.
    /etc/pm/sleep.d/50-hdparm_pm hibernate hibernate: not executable.
    /usr/lib/pm-utils/sleep.d/55NetworkManager hibernate hibernate: success.
    /usr/lib/pm-utils/sleep.d/55wicd hibernate hibernate: success.
    /usr/lib/pm-utils/sleep.d/75modules hibernate hibernate: not applicable.
    /usr/lib/pm-utils/sleep.d/90chvt hibernate hibernate: success.
    /usr/lib/pm-utils/sleep.d/90clock hibernate hibernate: not applicable.
    /usr/lib/pm-utils/sleep.d/94cpufreq hibernate hibernate: success.
    /usr/lib/pm-utils/sleep.d/95led hibernate hibernate: not applicable.
    /usr/lib/pm-utils/sleep.d/98smart-kernel-video hibernate hibernate: success.
    /usr/lib/pm-utils/sleep.d/99video hibernate hibernate: success.
    Wed Jan 28 23:23:49 EET 2009: performing hibernate
    Thanks!
    Last edited by mits (2009-06-11 17:43:01)

    I taught if I go in suspend to ram mode, my laptop will wake up in same mode without turning of/restart.
    Correct
    Actualy I don't know how suspend to ram act.
    The current state is saved to your RAM, when you wake up your system that state will come up again. What is Suspend to Ram
    When I suspend my system screen goes black (as if it is powered of) and the powerbutton blinks. When I push the powerbutton again, my system wakes up and returns to the state before the suspend. I don't know this for sure, but in my opinion this is general for all systems.
    Last edited by NeoXP (2009-01-29 15:55:12)

  • Xfce4 no longer starts from kdm [SOLVED]

    I have somehow borked my Xfce4 setup. I've switched back and forth a few times between Xfce4 in /extra and Xfce4-svn. Somewhere I've done something so that I can no longer start Xfce4 from kdm. Instead, I have to open a terminal and manually do "startxfce4".
    When I try to launch xfce4 from kdm, I get this segfault message:
    xfce4-session[8818]: segfault at 0 ip 00007f92e95008a2
    sp 00007ffff51bcc80 error 4 in libc-2.9.so[7f92e9461000+14a000]
    I've done all kinds of manipulations of my ~/.config/xfce4 and ~/.config/xfce4-session files, including toying with permissions and even zapping them altogether.
    I've also uninstalled xfce4 entirely, then reinstalled.
    And I've uninstalled xfce4-svn entirely, then reinstalled.
    I've reinstalled glibc, thinking that there might be a conflict, and I rebuilt xfce4-session from abs. No go.
    My other DE (KDE4) and wm (fluxbox) start fine from kdm.
    FWIW, this is all that's in my ~/.xinitrc:
    #!/bin/sh
    #~/.xinitrc
    exec startxfce4
    Here's my ~/.xsession:
    #!/bin/sh
    # ~/.xsession
    # Executed by xdm/gdm/kdm at login
    /bin/bash --login -i ~/.xinitrc
    What am I missing?
    Last edited by dhave (2009-01-01 15:25:18)

    Solved, finally.
    Following suggestions from Allan (mod), I deleted these files, then restarted:
    ~/.config/xfce4
    ~/.config/xfce4-session
    ~/.cache/xfce4
    Thanks!
    right again. When I followed Allan's suggestion, I didn't simultaneously delete . I had deleted them before, but to get a really fresh start, I needed to delete all of them at once before restarting.

  • [svn] 3571: Update SWFLoader ASDoc comment to remove &emdash and data type declaration .

    Revision: 3571
    Author: [email protected]
    Date: 2008-10-10 11:07:09 -0700 (Fri, 10 Oct 2008)
    Log Message:
    Update SWFLoader ASDoc comment to remove &emdash and data type declaration. ASDoc adds that automatically.
    Doc the new types in IndexChangedEvent.as
    Checkin Test Passed: Yes
    QA: No
    Bug:
    Doc: No
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/SWFLoader.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/events/IndexChangedEvent.as

    lunke you shoude change svn update http://svn.foo-projects.org/svn/xfce/modules/trunk to svn up $startdir/src/trunk
    hers a PKGBULID for thunar
    pkgname=thunar
    pkgver=0.0.2.r17470
    pkgdesc="Thunar is a file manager designed for Xfce. It is currently under development."
    url="http://thunar.xfce.org/wiki/"
    depends=('exo-svn')
    makedepends=('subversion')
    source=()
    md5sums=()
    build() {
    if [ ! -d $startdir/src/thunar ]; then
    echo "Fetching sources..."
    svn checkout http://svn.foo-projects.org/svn/xfce/thunar/trunk/ /thunar
    else
    echo "Updating sources..."
    svn up $startdir/src/thunar/
    fi
    cd $startdir/src/thunar
    ./autogen.sh --prefix=/opt/xfce4-svn
    make || return 1
    make DESTDIR=$startdir/pkg install
    find $startdir/pkg -name '*.la' -exec rm {} ;
    you will need exo from svn as well
    pkgname=exo-svn
    pkgver=r17470
    pkgdesc="Extensions to Xfce by os-cillation"
    url="http://libexo.os-cillation.com/"
    conflicts=(exo)
    provides=(exo)
    depends=('xfce4-svn')
    makedepends=('subversion')
    source=()
    md5sums=()
    build() {
    if [ ! -d $startdir/src/trunk ]; then
    echo "Fetching sources..."
    svn checkout http://svn.foo-projects.org/svn/xfce/libexo/trunk/
    else
    echo "Updating sources..."
    svn up $startdir/src/trunk
    fi
    cd $startdir/src/trunk
    ./autogen.sh --prefix=/opt/xfce4-svn
    make || return 1
    make DESTDIR=$startdir/pkg install
    find $startdir/pkg -name '*.la' -exec rm {} ;
    "Operation libtool-slay" compliant

  • [Solved] Xfce4 crashing at start

    Hi, I did recently install Xfce4-svn from the unstable repos, and it worked, initially. The second time i tried to log in to the Xfce-session, it instantly kicked me out to the GDM, and it has done this ever since. I've tried uninstalling/reinstalling Xfce, and searching the forum, but haven't succeded on getting rid of this.
    Any tips on how i might solve this?
    EDIT: If someone knows the locations of any logfiles that might connected to this, that might help as well.
    Thanks

    I had a similar problem a few weeks back.  Since I installed my own cursor theme, I altered the default index.theme file and stopped it from being upgraded in <code>/etc/pacman.conf</code>:
    NoUpgrade = usr/X11R6/lib/X11/icons/default/index.theme
    I ran across the problem of Xfce instantly kicking me out when I tried to change the icon theme to default and it obviously didn't find what it was expecting.  From then on, I couldn't log into X at all...it would kick me out as soon as Xfce had loaded.  To solve the problem, I had to edit <code>~/.config/xfce4/mcs_settings/gtk.xml</code> and change the <code>Net/IconThemeName</code> back to a different icon theme.  Hopefully that helps if someone else runs across the same thing. :oops:

  • XFCE4 Doesn't start

    Hi, I've installed  xfce4-svn from Shadowhand repo but I can't get it to start.
    The xfce4 from arch repos works just fine, but svn version from shadowhand repo starts, show boot logo, change to a green background with the little mouse in center and stucks there. I can move mouse pointer and switch VCs (CTRL+ALT+Fx), but never appears any panel or somehing more, then the only thing I can do is restart X and get back to KDE.
    Any ideas?
    Thanks.

    I tried to reinstall, and even deleted all packages from pacman cache and reinstalled, same problem. But noticed that from root account it already starts, the problem is from my user account.
    Is there any special permission for any file?
    Thanks.

  • Xfce4-menu disappeared.

    Hi !
    Last evening i went on updating my system like everyday - but then something weir happened.
    After pulling the latest updates (via pacman -Syu , of course) my xfce4-menu didn't respond anymore (which means the button was dead).
    A right click on the desktop didn't bring up the menu either.
    First i was wondering whether this was related to any updates (i'm using testing) ,any stupid mistakes i made, or if it was just a "once"-error which would disappear after rebooting - So i rebooted , and afterwards, my menu-button was completely disappeared - well, shit!
    Thanks to the shortcut alt+f2, i am still able to use my system but its not very comfortable.
    Since i'm running testing AND i'm playing a lot with my system i first looked what i might have done wrong - but i found nothing.
    Now here comes the point: After trying a bit i stopped my work on my machine and turned towards my girlfriends notebook. I also ran pacman -Syu (but ! this machine doesn't use the testing repo!) and then exactly the same error occured - no xfce4-menu !
    After reading the Thread "start menu icons..." in this forum i tried downgrading my libx11 - but without success.
    since there were LOTS of updates its quite difficult for me to find the related package, so i'm helpless at the moment.
    The only thing that i could imagine is that i should have tried to add a new xfce4-menu to the panel after downgrading libx11 . But i didn't have this idea yesterday and so i didn't try it (i'm at work atm, so i can't try anything by now) - Anyway, whith the current libx11 there is no menu-entry in the "add objects to panel"-dialogue.
    I hope you understand what i mean (my english is poor, i know) and can supply me with hints how i could solve or at least locate my problem.
    Additional-Information: I'm using xfce4-svn (from community, i think) - my pacman uses the default sources+testing , my girlfriend's one uses the default sources without testing (so i don't think this is related to testing). If this is the wrong forum i'm sorry - admins are free to move it to the right section.
    regards,
    stylopath

    the problem is xfdesktop-svn-26127-2
    i downgraded it to version xfdesktop-svn-26070-2 and now it works again.
    here is a server which has this file:
    i686 package
    x86_64 package
    you have to install it with:
    pacman -U xfdesktop-svn-26070-2.pkg.tar.gz
    (first download it of course
    Last edited by xsdnyd (2007-10-17 08:55:53)

  • Xfce4 overlaping text

    Im using xfce4-svn from shadowhand's repo and when the names of a window are too long i get the fun little error you see above.

    That was a known bug for an earlier version of Xfce (<4.2.3.1) with recent versions of GTK2. It was fixed for Xfce 4.2.3.1 so I don't see how it could be showing up in your svn version..
    http://www.xfce.org/release_notes/4.2.3 … gelog.html
    Ellipsize text in taskbar buttons with gtk+ 2.6 and later (required for gtk+ 2.8, fixes bug #1099, #1124, #1131, #1210).

  • Xfce4 annoyances

    Hello,
    Xfce4 is still my favourite DE, but two absolutely annoying things are happening to me that I can't resolve:
    1. "Unsuccessful" drag'n'drop freezes the whole computer
    When I accidentally drag something and consequently drop it somewhere it has no significance -- like draging a link in Firefox instead of just clicking on it -- the whole machine freezes for tens of seconds, before the icon of a dragged document "flies" back to its origin...
    2. Save File dialog frozen
    When the Save File dialog pops up, for example when choosing a file name and location for saving a download, it is sometimes "frozen" and it takes another ones or tens of seconds for it to unfreeze so I can write or click anywhere in it. I originally thought dead network mounts cause this, but it happens when nothing remote is mounted as well...
    Does anyone have any idea how to cope with these things?
    Other than switching DE, of course. I'm currently trying KDE but I think I already had enough of it...

    Gullible Jones wrote:Are you using Shadowhand's xfce4-svn packages?
    No, I wasn't even aware of the fact that there are some. Going to try them immediately, thanks for the tip!
    Gullible Jones wrote:BTW, if you have problems with X freezing up on you, try enabling magic sysrq (in /etc/sysctl.conf) - that will allow you to terminate misbehaving apps.
    I didn't know about this one as well. Thanks again!

  • Xfce4-panel dissapears (segfault)

    I'm using xfce4-svn. The latest xfce4-panel-svn, 4.5.0.3svn-r26171, segfaults, leaving me without panels. GDB shows this:
    Program received signal SIGSEGV, Segmentation fault.
    0xb7ec679d in xfce_arrow_button_set_arrow_type ()
       from /usr/lib/libxfce4panel.so.1
    Sorry if it was already reported, I searched bugs at xfce bugzilla and arch flyspray and found nothing. Just wanted to confirm if it happens to someone else. Already tried deleting ~/.config and starting xfce using another user, without luck.
    Plus, before my panel started sefgaulting, I had the same problem of my xfce menu dissapearing.
    I'm the only one?

    I had the same problem and after googling for awhile I found a workaround that seems to work to only have one panel on your xfce4 desktop.  It seems that you have to go ahead and delete either panel in the desktop manager.  It doesn't matter which as both panels (top and bottom) will disappear.  Then edit your ~/.config/xfce4/panel/panels.xml file to remove one panel's info from <panel> to <panel>.  This is what you're left with:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE config SYSTEM "config.dtd">
    <panels>
    <panel>
    <properties>
    <property name="size" value="27"/>
    <property name="monitor" value="0"/>
    <property name="screen-position" value="10"/>
    <property name="fullwidth" value="1"/>
    <property name="xoffset" value="0"/>
    <property name="yoffset" value="996"/>
    <property name="handlestyle" value="0"/>
    <property name="autohide" value="0"/>
    <property name="transparency" value="25"/>
    <property name="activetrans" value="0"/>
    </properties>
    <items>
    <item name="xfce4-menu" id="5"/>
    <item name="separator" id="6"/>
    <item name="launcher" id="10"/>
    <item name="launcher" id="11934103341"/>
    <item name="launcher" id="11934284041"/>
    <item name="actions" id="12"/>
    <item name="separator" id="11934162861"/>
    <item name="tasklist" id="11934220980"/>
    <item name="datetime" id="11934096510"/>
    </items>
    </panel>
    </panels>
    Save the file and logout of xfce4. NOTE: Make sure you don't have the "save session" box checked off when you log out or all is for not.  When you log back in, voila, only one panel.

Maybe you are looking for

  • Adding a new field to field catalog

    Hi, I need to add the field bwart to the catalogue field, I have no idea how to do it. I have read it is done in t. code NACE, but when I get there I don't know what to do. Thanks, Alejandro

  • When I take a picture in the dark and use the flash, the photo turns out pink.

    Recently, when taking pictures using the flash, they turn out pink  This happens whether there is light or not. Why? 

  • My iphoto program crashes when I place my order!!

    This is so frustrating.  I am using iPhoto 11 9.1.1 and I can't seem to submit my iphoto book without my program crashing!! Please someone help!?! I spent all this time and now perhaps for nothing??

  • EnityBean or Database Control

    Hi, there I would like to gather some options about in which case that we should use database control in workshop to do DB access and in which case we should use EntityBean. It seems that database control is called within a transaction context --- if

  • How to forward the workitem to next level on Missed Deadline?

    I have enabled Latest End Deadline on a particular task. The requirement is to forward the workitem to the next level approver once the dead line is missed. I have tried to use Workflow Wizard Modeled deadline monitoring. It creates few additional st