Date: Mon, 14 Jul 2003 07:58:43 -0700 (PDT) From: Kevin Oberman <oberman@es.net> To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/54476: gsfonts fails to install due to wrong path to distfile Message-ID: <20030714145843.DA23F5D07@ptavv.es.net> Resent-Message-ID: <200307141500.h6EF0Suc064890@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 54476 >Category: ports >Synopsis: gsfonts fails to install due to wrong path to distfile >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Jul 14 08:00:27 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Kevin Oberman >Release: FreeBSD 4.8-STABLE i386 >Organization: ESnet--The Energy Science Network >Environment: System: FreeBSD ptavv.es.net 4.8-STABLE FreeBSD 4.8-STABLE #22: Thu Jul 3 10:46:11 PDT 2003 oberman@ptavv.es.net:/usr/obj/usr/src/sys/PTAVV i386 >Description: The gsfonts port fails to install. It can't find the distfile because it looks in the wrong palce. The Makefile specified a DIST_SUBDIR, but the do-install section leaves it out of the path. >How-To-Repeat: make install >Fix: --- Makefile.orig Mon Jul 14 07:57:29 2003 +++ Makefile Mon Jul 14 07:51:51 2003 @@ -34,8 +34,8 @@ do-install: @${MKDIR} ${GSDIR} - ${TAR} -xzf ${DISTDIR}/${GS_FONTS_OTHER} -C ${GSDIR} - ${TAR} -xzf ${DISTDIR}/${GS_FONTS_STD} -C ${GSDIR} + ${TAR} -xzf ${DISTDIR}/$(DIST_SUBDIR)/${GS_FONTS_OTHER} -C ${GSDIR} + ${TAR} -xzf ${DISTDIR}/$(DIST_SUBDIR)/${GS_FONTS_STD} -C ${GSDIR} (cd ${GSDIR}/fonts; ${LOCALBASE}/bin/type1inst -nox -nolog -q) .include <bsd.port.post.mk> >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20030714145843.DA23F5D07>