mirror of
https://git.freebsd.org/ports.git
synced 2025-06-06 13:20:32 -04:00
- Remove cumbersome do-patch: - Use do-patch: in bsd.port.mk - Mark 064, 087 and 147 as BADPATCHES - 064 does not apply cleanly (in bsd.port.mk way on FreeBSD 9.x or older) - 087 contains patch for src/ops.c which must be applied after 064 - 147 contains patch for src/version.c which must be applied after 087 - Apply BADPATCHES in post-patch: - Fix keymap installation for vim-lite - Install keymap in vim source - Install vietnamese_viscii.vim correctly - Do not install GUI binary executables and manpages when GUI options are off - Allow build with python 3.x - Merge options to Makefile - Use PORTDATA - Convert to new options helper - Use CONFLICTS_INSTALL instead of CONFLICTS - Use REINPLACE_CMD instead of patch file - Support STAGEDIR - Pet portlint - Cleanup Makefile - Fix PLIST - Cosmetic change - Bump PORTREVISION for dependency and package change
42 lines
1.4 KiB
Bash
42 lines
1.4 KiB
Bash
--- src/installml.sh.orig Sun Apr 30 08:48:53 2006
|
|
+++ src/installml.sh Mon Jun 19 03:36:37 2006
|
|
@@ -55,12 +55,12 @@ if test $what = "install" -a \( -f $dest
|
|
# ex
|
|
- if test ! -f $destdir/$exname.1 -a -f $destdir/$vimname.1; then
|
|
- echo creating link $destdir/$exname.1
|
|
- cd $destdir; ln -s $vimname.1 $exname.1
|
|
- fi
|
|
+ #if test ! -f $destdir/$exname.1 -a -f $destdir/$vimname.1; then
|
|
+ # echo creating link $destdir/$exname.1
|
|
+ # cd $destdir; ln -s $vimname.1 $exname.1
|
|
+ #fi
|
|
|
|
# view
|
|
- if test ! -f $destdir/$viewname.1 -a -f $destdir/$vimname.1; then
|
|
- echo creating link $destdir/$viewname.1
|
|
- cd $destdir; ln -s $vimname.1 $viewname.1
|
|
- fi
|
|
+ #if test ! -f $destdir/$viewname.1 -a -f $destdir/$vimname.1; then
|
|
+ # echo creating link $destdir/$viewname.1
|
|
+ # cd $destdir; ln -s $vimname.1 $viewname.1
|
|
+ #fi
|
|
|
|
@@ -121,10 +121,10 @@ if test $what = "uninstall"; then
|
|
|
|
- if test -L $destdir/$exname.1; then
|
|
- echo deleting $destdir/$exname.1
|
|
- rm -f $destdir/$exname.1
|
|
- fi
|
|
- if test -L $destdir/$viewname.1; then
|
|
- echo deleting $destdir/$viewname.1
|
|
- rm -f $destdir/$viewname.1
|
|
- fi
|
|
+ #if test -L $destdir/$exname.1; then
|
|
+ # echo deleting $destdir/$exname.1
|
|
+ # rm -f $destdir/$exname.1
|
|
+ #fi
|
|
+ #if test -L $destdir/$viewname.1; then
|
|
+ # echo deleting $destdir/$viewname.1
|
|
+ # rm -f $destdir/$viewname.1
|
|
+ #fi
|
|
if test -L $destdir/$rvimname.1; then
|