xfce-utils: fix to avoid conflicts with xfce4-appfinder >= 4.9.3

This commit is contained in:
Jose V Beneyto 2012-01-09 09:33:12 +01:00
parent 4852737391
commit ee8e8fadda
2 changed files with 7 additions and 4 deletions

@ -6,7 +6,6 @@ drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/xfhelp4
-rwxr-xr-x root/root usr/bin/xflock4
-rwxr-xr-x root/root usr/bin/xfmountdev4
-rwxr-xr-x root/root usr/bin/xfrun4
-rwxr-xr-x root/root usr/bin/xfterm4
drwxr-xr-x root/root usr/etc/
drwxr-xr-x root/root usr/etc/xdg/
@ -23,7 +22,6 @@ drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/applications/
-rw-r--r-- root/root usr/share/applications/xfce4-about.desktop
-rw-r--r-- root/root usr/share/applications/xfhelp4.desktop
-rw-r--r-- root/root usr/share/applications/xfrun4.desktop
drwxr-xr-x root/root usr/share/dbus-1/
drwxr-xr-x root/root usr/share/dbus-1/services/
-rw-r--r-- root/root usr/share/dbus-1/services/org.xfce.RunDialog.service

@ -7,7 +7,7 @@
name=xfce-utils
version=4.8.3
release=1
release=2
source=(http://archive.xfce.org/src/xfce/$name/${version%.*}/$name-$version.tar.bz2)
build () {
@ -27,7 +27,12 @@ build () {
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/doc
rm -r $PKG/usr/share/doc
find $PKG/usr -type f -name '*.desktop' \
-exec sed -r '/\[.+\]=/d' -i {} \;
# fix to avoid conflicts with xfce4-appfinder >= 4.9.3
# xfce4-run will dissapear from xfce-utils on next XFCE 4.10
rm $PKG/usr/bin/xfrun4
rm $PKG/usr/share/applications/xfrun4.desktop
}