Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 18 Jan 2004 22:14:27 +0100
From:      Piotr Smyrak <smyru@smyrak.com>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/61548: [patch] fix graphics/potrace
Message-ID:  <E1AiKFX-000IUW-2Y@beth.poprostu.pl>
Resent-Message-ID: <200401182120.i0ILKGl0010881@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>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@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:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?E1AiKFX-000IUW-2Y>