pkgsrc-Users archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: bootstrapping with slackware 12.1 failure



On Mon, 19 May 2008 19:22:57 +0200
Tobias Poschwatta <tp%fonz.de@localhost> wrote:

> > it fails with /usr/pkgsrc/pkgtools/pkg_install with the following error.
> > bmake: don't know how to make /usr/share/groff/tmac/mandoc.tmac. Stop
> 
> Slackware 12.1 has groff 1.19.2, but I think pkgsrc only knows about
> 1.18.1. Try:
> 
> cd /usr/share/groff
> ln -s 1.19.2/tmac

How about this diff, does it help?

Index: Linux.bsd.man.mk
===================================================================
RCS
file: /cvsroot/pkgsrc/pkgtools/bootstrap-mk-files/files/mods/Linux.bsd.man.mk,v
retrieving revision 1.1.1.1 diff -u -r1.1.1.1 Linux.bsd.man.mk
--- Linux.bsd.man.mk    14 Jul 2006 23:13:01 -0000      1.1.1.1
+++ Linux.bsd.man.mk    19 May 2008 18:07:43 -0000
@@ -18,7 +18,9 @@
 .endif
 cleandir: cleanman
 
-.if exists(${DESTDIR}/usr/share/groff/1.18.1/tmac)
+.if exists(${DESTDIR}/usr/share/groff/1.19.2/tmac)
+TMACDIR?=      ${DESTDIR}/usr/share/groff/1.19.2/tmac
+.elif exists(${DESTDIR}/usr/share/groff/1.18.1/tmac)
 TMACDIR?=      ${DESTDIR}/usr/share/groff/1.18.1/tmac
 .else
 TMACDIR?=      ${DESTDIR}/usr/share/groff/tmac


Home | Main Index | Thread Index | Old Index