diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2003-03-14 07:54:23 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2003-03-14 07:54:23 +0000 |
commit | a6891b4e62d899e3a8a6780669ef15b1a13c489f (patch) | |
tree | ff8970d3f35a08dc5df2df381d15de21e29fa9ab /eclass | |
parent | Removed repoman patch (diff) | |
download | gentoo-2-a6891b4e62d899e3a8a6780669ef15b1a13c489f.tar.gz gentoo-2-a6891b4e62d899e3a8a6780669ef15b1a13c489f.tar.bz2 gentoo-2-a6891b4e62d899e3a8a6780669ef15b1a13c489f.zip |
removed the egui_enable nonsense
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/vim.eclass | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/eclass/vim.eclass b/eclass/vim.eclass index e3e3906a4b5d..411aeb28b7d2 100644 --- a/eclass/vim.eclass +++ b/eclass/vim.eclass @@ -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/eclass/vim.eclass,v 1.8 2003/03/13 22:18:23 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/vim.eclass,v 1.9 2003/03/14 07:54:23 seemant Exp $ # # Author Ryan Phillips <rphillips@gentoo.org> # @@ -133,7 +133,7 @@ src_compile() { done - if [ "${EGUI_ENABLE}" = "yes" ] + if [ "${PN}" = "gvim" ] then myconf="${myconf} --with-vim-name=gvim --with-x" if use gnome; then @@ -165,7 +165,7 @@ src_compile() { src_install() { - if [ "${EGUI_ENABLE}" = "yes" ] + if [ "${PN}" = "gvim" ] then dobin src/gvim dosym gvim /usr/bin/gvimdiff @@ -188,7 +188,7 @@ src_install() { pkg_postinst() { einfo - if [ "${EGUI_ENABLE}" = "yes" ] + if [ "${PN}" = "gvim" ] then einfo "To enable UTF-8 viewing, set guifont and guifontwide: " einfo ":set guifont=-misc-fixed-medium-r-normal-*-18-120-100-100-c-90-iso10646-1" |