blob: 680dd65091c3a62075ba7aebebf7d2cd2d530079 (
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
31
32
33
34
35
36
|
# 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/sys-apps/vim-nogui/vim-nogui-5.7-r1.ebuild,v 1.4 2000/09/15 20:09:24 drobbins Exp $
P=vim-nogui-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=no --without-x
try make
}
src_install() {
try make prefix=${D}/usr install
prepman
dodoc README*
cd ${D}/usr/doc/${P}
ln -s ../../share/vim/vim57/doc ${P}
gzip -9 ${D}/usr/share/vim/vim57/doc/*.txt
cd ${D}/usr/bin
ln -s vim vi
}
|