diff options
author | Chris Larson <clarson@kergoth.com> | 2004-03-13 05:42:36 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-03-13 05:42:36 +0000 |
commit | 06f7d17e81de21a95e35b03453242bc62b05a6aa (patch) | |
tree | bc9c53bce2c6a2fdce3caf5bb45bc3f8634b56be /vim | |
parent | 4b022a36ced4930af6bcdeb7d75a5ed10c4ac9cd (diff) |
First pass of .oe cleanups.
BKrev: 40529f4crFtRY5_1DubNmWhDeHSmPw
Diffstat (limited to 'vim')
-rw-r--r-- | vim/vim-tiny_6.2.oe | 10 | ||||
-rw-r--r-- | vim/vim_6.2.oe | 6 |
2 files changed, 13 insertions, 3 deletions
diff --git a/vim/vim-tiny_6.2.oe b/vim/vim-tiny_6.2.oe index e69de29bb2..56cc500b38 100644 --- a/vim/vim-tiny_6.2.oe +++ b/vim/vim-tiny_6.2.oe @@ -0,0 +1,10 @@ +include vim_${PV}.oe +EXTRA_OECONF = '--enable-gui=none --disable-gtktest \ + --disable-xim --with-features=tiny \ + --disable-gpm --without-x --disable-netbeans \ + --with-tlib=ncurses' +FILESDIR = "${@os.path.dirname(oe.data.getVar('FILE',d,1))}/vim-${PV}" + +FILES_${PN}=${bindir} ${sbindir} ${libexecdir} ${libdir}/lib*.so.* \ + ${libdir}/*/ ${sysconfdir} ${sharedstatedir} ${localstatedir} \ + /bin /sbin /lib/*/ /lib/*.so* ${datadir}/vim diff --git a/vim/vim_6.2.oe b/vim/vim_6.2.oe index b46efd2f5c..2d78c9c92b 100644 --- a/vim/vim_6.2.oe +++ b/vim/vim_6.2.oe @@ -1,9 +1,9 @@ -DEPENDS = virtual/libc ncurses -RDEPENDS = libc6 ncurses +DEPENDS = "virtual/libc ncurses" +RDEPENDS = "libc6 ncurses" SRC_URI = ftp://ftp.vim.org/pub/vim/unix/vim-6.2.tar.bz2 \ file://${FILESDIR}/configure.patch;patch=1 -S = ${WORKDIR}/vim62/src +S = "${WORKDIR}/vim62/src" inherit autotools |