Hello, what can I do that editors/vim could to copy marked text into X-clipboard?
make install at editors/vim did not work as well. In one of the Makefiles in the upper folders I found the hint to cwd to /usr/ports/editors/vim/work/vim73/src and continue there. make config followed by make a new vim file is generated. This new vim in the src directory has GUI support and the X-clipboard works as well. I have just copied this file to /usr/local/bin. I hope it works for you as well.# Flavors {{{1
# FLAVORS are used to build various Vim GUIs. The default flavor (`vim') is
# console-only.
FLAVORS= console gtk2 gtk3 motif x11 tiny
FLAVOR?= ${FLAVORS:[1]}
make FLAVOUR=x11 deinstall reinstall clean
.if ${.CURDIR:C/.*\/editors\/vim//} == ""
FLAVOR=x11
.endif
Without typo: make FLAVOR=x11 ...Bash:make FLAVOUR=x11 deinstall reinstall clean