diff options
author | Ryan Phillips <rphillips@gentoo.org> | 2003-02-13 18:57:31 +0000 |
---|---|---|
committer | Ryan Phillips <rphillips@gentoo.org> | 2003-02-13 18:57:31 +0000 |
commit | 51282649356ebb7ea7c20cbbed53f420ce562b02 (patch) | |
tree | 7e73e5fc1835fc80f7477fc9d0e3f1155e5f4659 /app-editors | |
parent | remove temp fix of 15593 and add instructions for fixing it. see post on m/ls. (diff) | |
download | gentoo-2-51282649356ebb7ea7c20cbbed53f420ce562b02.tar.gz gentoo-2-51282649356ebb7ea7c20cbbed53f420ce562b02.tar.bz2 gentoo-2-51282649356ebb7ea7c20cbbed53f420ce562b02.zip |
added support to disable X if -X is used in USE vars
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/vim/ChangeLog | 5 | ||||
-rw-r--r-- | app-editors/vim/vim-6.1-r19.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/app-editors/vim/ChangeLog b/app-editors/vim/ChangeLog index 3f5fc2403213..2cad60c0e192 100644 --- a/app-editors/vim/ChangeLog +++ b/app-editors/vim/ChangeLog @@ -1,6 +1,6 @@ # ChangeLog for app-editors/vim # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/vim/ChangeLog,v 1.43 2003/02/12 03:49:27 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/vim/ChangeLog,v 1.44 2003/02/13 18:57:31 rphillips Exp $ 08 Feb 2003; Guy Martin <gmsoft@gentoo.org> vim-6.1-r19.ebuild : Added hppa to keywords. @@ -10,6 +10,9 @@ *vim-6.1-r19.ebuild (21 Jan 2003) + 13 Feb 2003; Ryan Phillips <rphillips@gentoo.org> vim-6.1-r19.ebuild : + disable X if -X is used in USE vars + 21 Jan 2003; Ryan Phillips <rphillips@gentoo.org> files/vimrc : Added modelines=0 to default to high security. Fixes #14088 diff --git a/app-editors/vim/vim-6.1-r19.ebuild b/app-editors/vim/vim-6.1-r19.ebuild index 57aa94470b54..af5c73b89584 100644 --- a/app-editors/vim/vim-6.1-r19.ebuild +++ b/app-editors/vim/vim-6.1-r19.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/vim/vim-6.1-r19.ebuild,v 1.4 2003/02/13 07:00:42 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/vim/vim-6.1-r19.ebuild,v 1.5 2003/02/13 18:57:31 rphillips Exp $ IUSE="nls perl python ruby tcltk gpm X" @@ -41,7 +41,7 @@ src_compile() { # the configure script should autodetect X being installed, so # we'll specifically turn it off if X is not in the USE vars. # -rphillips - use X && myconf="$myconf --with-x" + use X && myconf="$myconf --with-x" || myconf="$myconf --without-x" # This should fix a sandbox violation. for file in /dev/pty/s* |