diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-04-14 08:44:57 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-04-14 08:44:57 +0000 |
commit | 607c6f779bd709fa7f0b1845fafc05b5de9a24ff (patch) | |
tree | 51c1a64dc2ea9f0a2f8ab8da18aa558fe414d048 /x11-wm | |
parent | clean up (diff) | |
download | gentoo-2-607c6f779bd709fa7f0b1845fafc05b5de9a24ff.tar.gz gentoo-2-607c6f779bd709fa7f0b1845fafc05b5de9a24ff.tar.bz2 gentoo-2-607c6f779bd709fa7f0b1845fafc05b5de9a24ff.zip |
cleaned up ebuild a little
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/fvwm/ChangeLog | 8 | ||||
-rw-r--r-- | x11-wm/fvwm/fvwm-2.4.3-r1.ebuild | 29 |
2 files changed, 22 insertions, 15 deletions
diff --git a/x11-wm/fvwm/ChangeLog b/x11-wm/fvwm/ChangeLog index d98de6e92b04..8f4d31a99fb3 100644 --- a/x11-wm/fvwm/ChangeLog +++ b/x11-wm/fvwm/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-wm/fvwm # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/x11-wm/fvwm/ChangeLog,v 1.2 2002/02/14 22:07:18 danarmak Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/fvwm/ChangeLog,v 1.3 2002/04/14 08:44:57 seemant Exp $ + +*fvwm-2.4.3-r1 (14 Apr 2002) + + 14 Apr 2002; Seemant Kulleen <seemant@gentoo.org> fvwm-2.4.3-r1.ebuild : + + Cleaned up a little. *fvwm-2.4.3-r1 (14 Feb 2002) diff --git a/x11-wm/fvwm/fvwm-2.4.3-r1.ebuild b/x11-wm/fvwm/fvwm-2.4.3-r1.ebuild index 377621d688fb..ac8c8b2f90e3 100644 --- a/x11-wm/fvwm/fvwm-2.4.3-r1.ebuild +++ b/x11-wm/fvwm/fvwm-2.4.3-r1.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. +# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Prakash Shetty <crux@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/x11-wm/fvwm/fvwm-2.4.3-r1.ebuild,v 1.1 2002/02/14 22:07:18 danarmak Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/fvwm/fvwm-2.4.3-r1.ebuild,v 1.2 2002/04/14 08:44:57 seemant Exp $ S=${WORKDIR}/${P} @@ -9,25 +9,26 @@ DESCRIPTION="an extremely powerful ICCCM-compliant multiple virtual desktop wind SRC_URI="ftp://ftp.fvwm.org/pub/fvwm/version-2/${P}.tar.bz2" HOMEPAGE="http://www.fvwm.org/" -DEPEND="virtual/glibc - >=sys-libs/readline-4.1 - >=x11-libs/gtk+-1.2.10-r4 - >=dev-libs/libstroke-0.4 - gnome? ( >=gnome-base/gnome-libs-1.4.1.2-r1 )" +DEPEND=">=dev-libs/libstroke-0.4 + gtk? ( >=x11-libs/gtk+-1.2.10-r4 ) + gnome? ( >=gnome-base/gnome-libs-1.4.1.2-r1 ) + ncurses? ( >=sys-libs/readline-4.1 )" src_compile() { local myconf - if [ -n "$( use gnome )" ]; then - myconf="--with-gnome" - else - myconf="--without-gnome" - fi - ./configure --prefix=/usr --host=${CHOST} \ + use gnome \ + && myconf="--with-gnome" \ + || myconf="--without-gnome" \ + + ./configure \ + --prefix=/usr \ + --host=${CHOST} \ --libexecdir=/usr/lib \ --mandir=/usr/share/man \ - --infodir=/usr/share/info ${myconf} + --infodir=/usr/share/info \ + ${myconf} || die emake || die } |