diff options
author | Achim Gottinger <achim@gentoo.org> | 2001-05-15 22:21:40 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2001-05-15 22:21:40 +0000 |
commit | 7d30e72bbce40763bd164a7a46e3674eb911651b (patch) | |
tree | 761e2f1cb6d29ec38b402b6d27e00bf63b3e83a0 /x11-wm/fvwm | |
parent | Fixed install bug (diff) | |
download | gentoo-2-7d30e72bbce40763bd164a7a46e3674eb911651b.tar.gz gentoo-2-7d30e72bbce40763bd164a7a46e3674eb911651b.tar.bz2 gentoo-2-7d30e72bbce40763bd164a7a46e3674eb911651b.zip |
FHS2.1 fix
Diffstat (limited to 'x11-wm/fvwm')
-rw-r--r-- | x11-wm/fvwm/fvwm-2.3.28.ebuild | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/x11-wm/fvwm/fvwm-2.3.28.ebuild b/x11-wm/fvwm/fvwm-2.3.28.ebuild index 89fb7e2bddaa..05269f2bb495 100644 --- a/x11-wm/fvwm/fvwm-2.3.28.ebuild +++ b/x11-wm/fvwm/fvwm-2.3.28.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Peter Gavin <pete@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/x11-wm/fvwm/fvwm-2.3.28.ebuild,v 1.2 2001/05/07 15:45:41 achim Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/fvwm/fvwm-2.3.28.ebuild,v 1.3 2001/05/15 22:21:40 achim Exp $ #P= A=${P}.tar.bz2 @@ -17,12 +17,15 @@ DEPEND=">=x11-base/xfree-4.0 gnome? ( >=gnome-base/gnome-libs-1.2.8 )" src_compile() { + local myconf if [ -n "$( use gnome )" ] then - try ./configure --prefix=/usr/X11R6 --host=${CHOST} --with-gnome + myconf="--with-gnome" else - try ./configure --prefix=/usr/X11R6 --host=${CHOST} --without-gnome + myconf="--without-gnome" fi + try ./configure --prefix=/usr/X11R6 --libexecdir=/usr/X11R6/lib \ + --host=${CHOST} ${myconf} try make } |