diff options
author | Mike Frysinger <vapier@gentoo.org> | 2002-10-16 23:28:06 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2002-10-16 23:28:06 +0000 |
commit | 17468659f6c6977764b63b43861a9adb7cb9a829 (patch) | |
tree | 429fa8bf001e1ab1eac1d76a3c7f18a0166a151e /app-editors | |
parent | space fix [lintool] for #9212 (diff) | |
download | gentoo-2-17468659f6c6977764b63b43861a9adb7cb9a829.tar.gz gentoo-2-17468659f6c6977764b63b43861a9adb7cb9a829.tar.bz2 gentoo-2-17468659f6c6977764b63b43861a9adb7cb9a829.zip |
space fix [lintool] for #9212
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/xemacs-gamma/xemacs-gamma-21.4.6.ebuild | 3 | ||||
-rw-r--r-- | app-editors/xemacs-gamma/xemacs-gamma-21.4.8.ebuild | 3 | ||||
-rw-r--r-- | app-editors/xemacs/xemacs-21.4.6-r4.ebuild | 32 |
3 files changed, 20 insertions, 18 deletions
diff --git a/app-editors/xemacs-gamma/xemacs-gamma-21.4.6.ebuild b/app-editors/xemacs-gamma/xemacs-gamma-21.4.6.ebuild index 050912decc1f..aeb15b761185 100644 --- a/app-editors/xemacs-gamma/xemacs-gamma-21.4.6.ebuild +++ b/app-editors/xemacs-gamma/xemacs-gamma-21.4.6.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/xemacs-gamma/xemacs-gamma-21.4.6.ebuild,v 1.9 2002/10/05 05:39:07 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/xemacs-gamma/xemacs-gamma-21.4.6.ebuild,v 1.10 2002/10/16 23:28:06 vapier Exp $ IUSE="gpm motif postgres xface tiff gtk jpeg mule nas esd X png gnome" @@ -44,6 +44,7 @@ DEPEND=">=sys-libs/gdbm-1.8.0 jpeg? ( media-libs/jpeg ) X? ( virtual/x11 )" +RDEPEND="${DEPEND}" src_unpack() { cd ${WORKDIR} diff --git a/app-editors/xemacs-gamma/xemacs-gamma-21.4.8.ebuild b/app-editors/xemacs-gamma/xemacs-gamma-21.4.8.ebuild index c50b5fdc1fae..dff0ab287433 100644 --- a/app-editors/xemacs-gamma/xemacs-gamma-21.4.8.ebuild +++ b/app-editors/xemacs-gamma/xemacs-gamma-21.4.8.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/xemacs-gamma/xemacs-gamma-21.4.8.ebuild,v 1.9 2002/10/05 05:39:07 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/xemacs-gamma/xemacs-gamma-21.4.8.ebuild,v 1.10 2002/10/16 23:28:06 vapier Exp $ IUSE="gpm motif postgres xface tiff gtk jpeg mule nas esd X png gnome" @@ -44,6 +44,7 @@ DEPEND=">=sys-libs/gdbm-1.8.0 jpeg? ( media-libs/jpeg ) X? ( virtual/x11 )" +RDEPEND="${DEPEND}" src_unpack() { cd ${WORKDIR} diff --git a/app-editors/xemacs/xemacs-21.4.6-r4.ebuild b/app-editors/xemacs/xemacs-21.4.6-r4.ebuild index e6ebbb82c875..ca6cffd2d138 100644 --- a/app-editors/xemacs/xemacs-21.4.6-r4.ebuild +++ b/app-editors/xemacs/xemacs-21.4.6-r4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/xemacs/xemacs-21.4.6-r4.ebuild,v 1.7 2002/10/05 05:39:07 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/xemacs/xemacs-21.4.6-r4.ebuild,v 1.8 2002/10/16 23:26:30 vapier Exp $ IUSE="nas esd motif gpm X" @@ -41,35 +41,35 @@ src_unpack() { } src_compile() { -local myopts -local soundopts - + local myopts + local soundopts + if [ "`use X`" ] then - myopts="--with-x \ - --with-jpeg \ - --with-png \ - --with-tiff \ - --with-xface \ - --with-menubars=lucid \ + myopts="--with-x \ + --with-jpeg \ + --with-png \ + --with-tiff \ + --with-xface \ + --with-menubars=lucid \ --with-scrollbars=lucid" - use motif \ - && myopts="${myopts} --with-dialogs=motif --with-widgets=motif" \ + use motif \ + && myopts="${myopts} --with-dialogs=motif --with-widgets=motif" \ || myopts="${myopts} --with-dialogs=lucid --with-widgets=lucid" else myopts="--without-x" fi - use gpm \ - && myopts="${myopts} --with-gpm" \ + use gpm \ + && myopts="${myopts} --with-gpm" \ || myopts="${myopts} --without-gpm" soundopts="native" - use nas \ + use nas \ && soundopts="$soundopts,nas" - use esd \ + use esd \ && soundopts="$soundopts,esd" myopts="${myopts} --with-sound=$soundopts" |