diff options
author | Ryan Phillips <rphillips@gentoo.org> | 2003-01-21 17:50:39 +0000 |
---|---|---|
committer | Ryan Phillips <rphillips@gentoo.org> | 2003-01-21 17:50:39 +0000 |
commit | 29f4668f58e9cf3631da199b9594697ada739437 (patch) | |
tree | 8bedc29a098e59eb6ac02eaa526ec0ab8cca3666 /app-editors/vim-core | |
parent | new version (diff) | |
download | historical-29f4668f58e9cf3631da199b9594697ada739437.tar.gz historical-29f4668f58e9cf3631da199b9594697ada739437.tar.bz2 historical-29f4668f58e9cf3631da199b9594697ada739437.zip |
Patches 1-300
Diffstat (limited to 'app-editors/vim-core')
-rw-r--r-- | app-editors/vim-core/ChangeLog | 7 | ||||
-rw-r--r-- | app-editors/vim-core/files/digest-vim-core-6.1-r4 | 2 | ||||
-rw-r--r-- | app-editors/vim-core/vim-core-6.1-r4.ebuild | 57 |
3 files changed, 65 insertions, 1 deletions
diff --git a/app-editors/vim-core/ChangeLog b/app-editors/vim-core/ChangeLog index 6d34d5e4444c..5ce68213cc78 100644 --- a/app-editors/vim-core/ChangeLog +++ b/app-editors/vim-core/ChangeLog @@ -1,6 +1,6 @@ # ChangeLog for app-editors/vim-core # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/vim-core/ChangeLog,v 1.9 2002/12/13 10:56:06 blizzy Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/vim-core/ChangeLog,v 1.10 2003/01/21 17:50:39 rphillips Exp $ 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords @@ -8,6 +8,11 @@ set all builds except 6.1-r3 to -ppc, the -r3 build is now ppc (its only one that works on ppc) +*vim-core-6.1-r4 (21 Jan 2003) + + 21 Jan 2003; Ryan Phillips <rphillips@gentoo.org> vim-core-6.1-r4.ebuild : + Patches 1-300 + *vim-core-6.1-r3 (27 Oct 2002) 12 Nov 2002; Ryan Phillips <rphillips@gentoo.org> vim-core-6.1-r3.ebuild : diff --git a/app-editors/vim-core/files/digest-vim-core-6.1-r4 b/app-editors/vim-core/files/digest-vim-core-6.1-r4 new file mode 100644 index 000000000000..374f8fa02618 --- /dev/null +++ b/app-editors/vim-core/files/digest-vim-core-6.1-r4 @@ -0,0 +1,2 @@ +MD5 7fd0f915adc7c0dab89772884268b030 vim-6.1.tar.bz2 2890049 +MD5 9ead3eaf912e0b63aae3ee5b55b70f25 vimpatch-1-300.tar.bz2 220361 diff --git a/app-editors/vim-core/vim-core-6.1-r4.ebuild b/app-editors/vim-core/vim-core-6.1-r4.ebuild new file mode 100644 index 000000000000..d5c5b42d124f --- /dev/null +++ b/app-editors/vim-core/vim-core-6.1-r4.ebuild @@ -0,0 +1,57 @@ +# Copyright 2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/app-editors/vim-core/vim-core-6.1-r4.ebuild,v 1.1 2003/01/21 17:50:39 rphillips Exp $ + +VIMPATCH="vimpatch-1-300.tar.bz2" +inherit vim + +DESCRIPTION="vim, gvim and kvim shared files" +KEYWORDS="~x86 ~ppc ~sparc ~alpha" +DEPEND="dev-util/cscope + sys-libs/libtermcap-compat + >=sys-libs/ncurses-5.2-r2 + gpm? ( >=sys-libs/gpm-1.19.3 ) + perl? ( sys-devel/perl ) + python? ( dev-lang/python ) + ruby? ( >=dev-lang/ruby-1.6.4 )" + +src_compile() { + + local myconf + use nls && myconf="--enable-multibyte" || myconf="--disable-nls" + myconf="$myconf --disable-perlinterp --disable-pythoninterp --disable-rubyinterp" + myconf="$myconf --disable-gpm" + + # This should fix a sandbox violation. + addwrite "${SSH_TTY}" + + # + # Build a nogui version, this will install as /usr/bin/vim + # + ./configure \ + --prefix=/usr --mandir=/usr/share/man --host=$CHOST \ + --with-features=tiny $myconf \ + --enable-gui=no --without-x \ + || die "vim configure failed" + # Parallel make does not work + make tools || die "vim make failed" + cd ${S} + rm src/vim +} + +src_install() { + mkdir -p $D/usr/{bin,share/man/man1,share/vim} + cd src + make installruntime installhelplinks installmacros installtutor installtools install-languages install-icons DESTDIR=$D \ + BINDIR=/usr/bin MANDIR=/usr/share/man DATADIR=/usr/share || die "make install failed" + # Docs + dodoc README* + cd $D/usr/share/doc/$PF + ln -s ../../vim/*/doc $P + + #fix problems with vim not finding its data files. + dodir /etc/env.d + echo "VIMRUNTIME=/usr/share/vim/vim${vim_version/.}" \ + >${D}/etc/env.d/40vim +} + |