ports/61548: [patch] fix graphics/potrace
Piotr Smyrak
smyru at smyrak.com
Sun Jan 18 21:20:30 UTC 2004
>Number: 61548
>Category: ports
>Synopsis: [patch] fix graphics/potrace
>Confidential: no
>Severity: non-critical
>Priority: low
>Responsible: freebsd-ports-bugs
>State: open
>Quarter:
>Keywords:
>Date-Required:
>Class: maintainer-update
>Submitter-Id: current-users
>Arrival-Date: Sun Jan 18 13:20:15 PST 2004
>Closed-Date:
>Last-Modified:
>Originator: Piotr Smyrak
>Release: FreeBSD 5.1-RELEASE-p9 i386
>Organization:
>Environment:
System: FreeBSD ntbk 5.1-RELEASE-p9 FreeBSD 5.1-RELEASE-p9 #0: Fri Nov 14 15:54:01 CET 2003 root at ntbk:/usr/obj/usr/src/sys/SMYRU i386
>Description:
The modifided commit of my previous PR introduced an error.
potrace.pdf and potrace.ps files would get installed as
potrace.potrace.pdf and potrace.potrace.ps respectively. That
breaks pkg-plist and after deletion would leave DOCSDIR
non empty.
>How-To-Repeat:
Install the port while NOPORTDOCS is undefined. Check the
listing with pkg_info -xL potrace
>Fix:
--- potrace.patch.1 begins here ---
--- Makefile.orig Sun Jan 18 22:53:23 2004
+++ Makefile Sun Jan 18 22:53:46 2004
@@ -46,7 +46,7 @@
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for doc in ${PORTDOCS}
- ${INSTALL_DATA} ${WRKSRC}/doc/${doc} ${DOCSDIR}/potrace.${doc}
+ ${INSTALL_DATA} ${WRKSRC}/doc/${doc} ${DOCSDIR}/${doc}
.endfor
.endif
--- potrace.patch.1 ends here ---
>Release-Note:
>Audit-Trail:
>Unformatted:
More information about the freebsd-ports-bugs
mailing list