Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 12 Jun 2006 13:55:26 +0100
From:      Alan Hicks <ahicks@p-o.co.uk>
To:        FreeBSD-gnats-submit@FreeBSD.org
Cc:        Alan Hicks <ahicks@p-o.co.uk>
Subject:   ports/98851: [patch] unrtf barfs on install as the source files have moved
Message-ID:  <E1Fplx0-000CLf-8s@p-o.co.uk>
Resent-Message-ID: <200606121300.k5CD0V3v010108@freefall.freebsd.org>

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

>Number:         98851
>Category:       ports
>Synopsis:       [patch] unrtf barfs on install as the source files have moved
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Mon Jun 12 13:00:31 GMT 2006
>Closed-Date:
>Last-Modified:
>Originator:     Alan Hicks <ahicks@p-o.co.uk>
>Release:        FreeBSD 6.0-RELEASE i386
>Organization:
Persistent Objects Ltd
>Environment:
System: FreeBSD schnittke.po.co.uk 6.0-RELEASE FreeBSD 6.0-RELEASE #0: Thu May 25 11:30:44 BST 2006 root@schnittke.po.co.uk:/usr/src/sys/i386/compile/SCHNITTKE i386


	
>Description:
        After successful make, make install Stop's as the unrtf files are
        in sub-folders (src, doc).
>How-To-Repeat:
        make install barfs every time
>Fix:
        Editing the Makefile to include the sub folders src and doc fixes
        the issue.

--- Makefile.diff begins here ---
--- Makefile	Mon Jun 12 12:36:56 2006
+++ Makefile2	Mon Jun 12 12:36:42 2006
@@ -22,7 +22,7 @@
 PLIST_FILES=	bin/unrtf
 
 do-install:
-	${INSTALL_PROGRAM} ${WRKSRC}/unrtf ${PREFIX}/bin
-	${INSTALL_MAN} ${WRKSRC}/unrtf.1 ${MAN1PREFIX}/man/man1
+	${INSTALL_PROGRAM} ${WRKSRC}/src/unrtf ${PREFIX}/bin
+	${INSTALL_MAN} ${WRKSRC}/doc/unrtf.1 ${MAN1PREFIX}/man/man1
 
 .include <bsd.port.mk>
--- Makefile.diff ends here ---


>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?E1Fplx0-000CLf-8s>