diff options
author | 2001-10-12 01:17:07 +0000 | |
---|---|---|
committer | 2001-10-12 01:17:07 +0000 | |
commit | 23643b264cec6581a934495ecdb81447cc01ee1f (patch) | |
tree | af6ee859aee20270282428b90e0c2bc0399c8a79 /x11-wm/xfce | |
parent | removed broken fvwm-script (diff) | |
download | historical-23643b264cec6581a934495ecdb81447cc01ee1f.tar.gz historical-23643b264cec6581a934495ecdb81447cc01ee1f.tar.bz2 historical-23643b264cec6581a934495ecdb81447cc01ee1f.zip |
updated and removed broken script
Diffstat (limited to 'x11-wm/xfce')
-rwxr-xr-x | x11-wm/xfce/files/xfce | 5 | ||||
-rw-r--r-- | x11-wm/xfce/xfce-3.8.7-r1.ebuild | 18 |
2 files changed, 10 insertions, 13 deletions
diff --git a/x11-wm/xfce/files/xfce b/x11-wm/xfce/files/xfce deleted file mode 100755 index fccb20f1e93a..000000000000 --- a/x11-wm/xfce/files/xfce +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/sh -if [ ! -d ~/.xfce ] ; then - mkdir ~/.xfce -fi -/usr/X11R6/bin/xfwm diff --git a/x11-wm/xfce/xfce-3.8.7-r1.ebuild b/x11-wm/xfce/xfce-3.8.7-r1.ebuild index 7e6f5b4574be..47f006cd9666 100644 --- a/x11-wm/xfce/xfce-3.8.7-r1.ebuild +++ b/x11-wm/xfce/xfce-3.8.7-r1.ebuild @@ -1,12 +1,11 @@ # Copyright 1999-2001 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Ben Lutgens <ben@sistina.com> -# $Header: /var/cvsroot/gentoo-x86/x11-wm/xfce/xfce-3.8.7-r1.ebuild,v 1.1 2001/10/06 10:08:20 azarah Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/xfce/xfce-3.8.7-r1.ebuild,v 1.2 2001/10/12 01:17:07 hallski Exp $ -A=${P}.tar.gz S=${WORKDIR}/${P} DESCRIPTION="XFce is a lightweight desktop environment for various UNIX systems." -SRC_URI="http://prdownloads.sourceforge.net/xfce/${A}" +SRC_URI="http://prdownloads.sourceforge.net/xfce/${P}.tar.gz" HOMEPAGE="http://www.xfce.org/" DEPEND="virtual/x11 @@ -20,20 +19,23 @@ fi src_compile() { local myconf + if [ "`use gnome`" ] then myconf="--enable-imlib=no --enable-gdk-pixbuf=/usr" fi - try ./configure --prefix=/usr --mandir=/usr/share/man --host=${CHOST} \ - --with-data-dir=/usr/share/xfce --with-conf-dir=/etc/X11/xfce \ - --with-locale-dir=/usr/share/locale ${myconf} + + ./configure --host=${CHOST} \ + --prefix=/usr \ + --mandir=/usr/share/man \ + --with-data-dir=/usr/share/xfce \ + --with-conf-dir=/etc/X11/xfce \ + --with-locale-dir=/usr/share/locale ${myconf} try make } src_install () { try make DESTDIR=${D} install dodoc ChangeLog* AUTHORS LICENSE README* TODO* - exeinto /usr/bin/wm - doexe ${FILESDIR}/xfce dodir /etc/skel/.xfce } |