From 1ea98fe7f3071127fc788e3792cfb2f0ca2994c0 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 15 Apr 2024 21:43:30 +0200 Subject: Adding debian version 4.22.0-1. Signed-off-by: Daniel Baumann --- debian/manpages-de.links | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100755 debian/manpages-de.links (limited to 'debian/manpages-de.links') diff --git a/debian/manpages-de.links b/debian/manpages-de.links new file mode 100755 index 00000000..df95d937 --- /dev/null +++ b/debian/manpages-de.links @@ -0,0 +1,37 @@ +#!/bin/sh + +pdir=usr/share/man/de/ +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 -- cgit v1.2.3