diff options
author | jlam <jlam@pkgsrc.org> | 2008-03-02 16:01:31 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2008-03-02 16:01:31 +0000 |
commit | aed8b9137d4de7e1f71b5ee26fe529f5e890a26c (patch) | |
tree | da535d9ef18c42dd24a288f29cc71ba6ae9bbde8 /editors/vim-share | |
parent | f7cffb51ebd91de8f79a6da0e80df8f90d13b505 (diff) | |
download | pkgsrc-aed8b9137d4de7e1f71b5ee26fe529f5e890a26c.tar.gz |
+ Remove the check for whether you can remove -liconv from the linker
command line or not -- we want to do what the user specifies via
the pkgsrc PREFER_* settings.
+ Drop dependency on ncurses -- vim only wants a termcap library.
This should fix PR pkg/38110.
+ Add missing dependency on gettext-lib as one of the "normal" feature
sets is to build with gettext and multi-language support.
Bump the PKGREVISION of vim editor packages to 1.
Diffstat (limited to 'editors/vim-share')
-rw-r--r-- | editors/vim-share/distinfo | 3 | ||||
-rw-r--r-- | editors/vim-share/patches/patch-af | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/editors/vim-share/distinfo b/editors/vim-share/distinfo index 50e75a559e7..de0c91138a7 100644 --- a/editors/vim-share/distinfo +++ b/editors/vim-share/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.92 2008/02/15 06:36:10 martti Exp $ +$NetBSD: distinfo,v 1.93 2008/03/02 16:01:32 jlam Exp $ SHA1 (vim/7.1.001-100.gz) = 6571772fb45d8b5a28fa7cdee5c131555ac3bb48 RMD160 (vim/7.1.001-100.gz) = 65aebf5446773169d077f49dcee1e29ea0457cc4 @@ -174,4 +174,5 @@ Size (vim/vim-7.1.tar.bz2) = 6876053 bytes SHA1 (patch-aa) = 30fe8e0b6b117c0d14f7e272b28f3100f3e7bc01 SHA1 (patch-ab) = 6d27ed09cb741313e57b3550e62977797f7b285e SHA1 (patch-ad) = 64a58a538f8f48b4db7416b4ffec081ed6625329 +SHA1 (patch-af) = 0b43a34040bd0ce29f358119b2eaa777914ed6b6 SHA1 (patch-zb) = d52bdc3b77c30c804e78c2c6a4182fad8096c9f0 diff --git a/editors/vim-share/patches/patch-af b/editors/vim-share/patches/patch-af new file mode 100644 index 00000000000..6c0c68051f7 --- /dev/null +++ b/editors/vim-share/patches/patch-af @@ -0,0 +1,13 @@ +$NetBSD: patch-af,v 1.1 2008/03/02 16:01:32 jlam Exp $ + +--- src/link.sh.orig 2006-09-26 05:22:11.000000000 -0400 ++++ src/link.sh +@@ -41,7 +41,7 @@ else + if sh link.cmd; then + touch auto/link.sed + cp link.cmd linkit.sh +- for libname in SM ICE nsl dnet dnet_stub inet socket dir elf iconv Xt Xmu Xp Xpm X11 Xdmcp x w dl pthread thread readline m perl crypt attr; do ++ for libname in SM ICE nsl dnet dnet_stub inet socket dir elf Xt Xmu Xp Xpm X11 Xdmcp x w dl pthread thread readline m perl crypt attr; do + cont=yes + while test -n "$cont"; do + if grep "l$libname " linkit.sh >/dev/null; then |