pkgsrc/security/heimdal/patches/patch-cf_install-catman.sh
rodent 602e6bcd85 Apply patch from FreeBSD ports to patch-configure. This will allow the
package to build and install lib/windc.la, which is the cause of the
installation failure. This is evident when PREFER_PKGSRC=yes. Defuzz
patches.
2015-07-11 04:26:57 +00:00

15 lines
516 B
Bash

$NetBSD: patch-cf_install-catman.sh,v 1.2 2015/07/11 04:26:57 rodent Exp $
When getting a file basename strip any leading directories.
--- cf/install-catman.sh.orig 2012-12-09 22:06:44.000000000 +0000
+++ cf/install-catman.sh
@@ -14,7 +14,7 @@ catinstall="${INSTALL_CATPAGES-yes}"
for f in "$@"; do
echo $f
- base=`echo "$f" | sed 's/\.[^.]*$//'`
+ base=`echo "$f" | sed 's/\.[^.]*$//;s,.*/,,'`
section=`echo "$f" | sed 's/^[^.]*\.//'`
mandir="$manbase/man$section"
catdir="$manbase/cat$section"