summaryrefslogtreecommitdiffstats
path: root/debian/manpages-vi.links
diff options
context:
space:
mode:
Diffstat (limited to 'debian/manpages-vi.links')
-rwxr-xr-xdebian/manpages-vi.links37
1 files changed, 37 insertions, 0 deletions
diff --git a/debian/manpages-vi.links b/debian/manpages-vi.links
new file mode 100755
index 00000000..1cf2e5ed
--- /dev/null
+++ b/debian/manpages-vi.links
@@ -0,0 +1,37 @@
+#!/bin/sh
+
+pdir=usr/share/man/vi/
+pb=debian/tmp/
+
+while IFS=" " read -r f01 f02
+do
+ # Determine the directory part, with and without fancy additions (like "ssl")
+ # dsname=$(dirname $f01)
+ # dtname=$(dirname $f02)
+ dsnameshort=$(dirname $f01|awk '{print substr($0,1,4)}')
+ dtnameshort=$(dirname $f02|awk '{print substr($0,1,4)}')
+
+ # echo "INPUT $f01 $f02 $dsnameshort $dtnameshort"
+
+ # Decide, if the man pages is in the -dev package
+ if [ $dsnameshort = "man2" ] || [ $dsnameshort = "man3" ]; then
+ sdir=1
+ else
+ sdir=0
+ fi
+
+ # Decide, if the link is in the -dev package
+ if [ $dtnameshort = "man2" ] || [ $dtnameshort = "man3" ]; then
+ tdir=1
+ else
+ tdir=0
+ fi
+
+ # For now, only consider links *within* one package
+ if [ $sdir = 0 ] && [ $tdir = 0 ]; then
+ sfull=${pb}${pdir}${f01}
+ if [ -e $sfull ]; then
+ echo "${pdir}${f01} ${pdir}${f02}"
+ fi
+ fi
+done < upstream/debian-unstable/links.txt