On Tue, Jun 19, 2007 at 04:05:43AM +0200, Adriaan wrote: > First error I encountered is at the beginning of running the SETUP. > 'chown' complains about invalid user 'lp' > ----------------------------------------------------- > # /etc/apsfilter/basedir/SETUP > chown: user is invalid: lp
This maybe fallout from the second error ;) > Second glitch is that '/usr/local/bin/gawk' cannot be found: [...] > /etc/apsfilter/basedir/SETUP[1943]: /usr/local/bin/gawk: not found Sigh... yet another hidden run dependency when gawk is installed during the build. This should fix it: Index: Makefile =================================================================== RCS file: /cvs/ports/print/apsfilter/Makefile,v retrieving revision 1.6 diff -u -p -r1.6 Makefile --- Makefile 8 Apr 2007 15:19:31 -0000 1.6 +++ Makefile 19 Jun 2007 10:21:39 -0000 @@ -16,7 +16,8 @@ PERMIT_DISTFILES_FTP= Yes MASTER_SITES= http://www.apsfilter.org/download/ CONFIGURE_STYLE= gnu -CONFIGURE_ARGS+= --with-shell=/bin/sh +CONFIGURE_ARGS+= --with-shell=/bin/sh \ + --with-awk=/usr/bin/awk RUN_DEPENDS= ::print/a2ps \ ::print/psutils Ciao, Kili
