summaryrefslogtreecommitdiff
blob: ce0d244a7172e503c735a5bb53c2d022e6754d11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Daniel Robbins <drobbins@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/app-editors/vim-gtk/vim-gtk-5.7-r1.ebuild,v 1.3 2000/09/15 20:08:45 drobbins Exp $

P=vim-gtk-5.7
A="vim-5.7-src.tar.gz vim-5.7-rt.tar.gz"
S=${WORKDIR}/vim-5.7
DESCRIPTION="Handy vi-compatible editor"
SRC_URI="ftp://ftp.home.vim.org/pub/vim/unix/vim-5.7-src.tar.gz
	 ftp://ftp.home.vim.org/pub/vim/unix/vim-5.7-rt.tar.gz"
HOMEPAGE="http://www.vim.org"

src_compile() {                           
    try ./configure --prefix=/usr --host=${CHOST} \
	 --enable-gui=gtk --enable-max-features --enable-pythoninterp --enable-tclinterp \
	--enable-xim --enable-fontset --with-x
    try make
}

src_install() {                              
   into /usr
   cd ${S}/src
   cp vim gvim
   dobin gvim
 
}