From owner-freebsd-ports@FreeBSD.ORG Mon Jun 12 11:50:30 2006 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C31B116A473 for ; Mon, 12 Jun 2006 11:50:30 +0000 (UTC) (envelope-from ahicks@p-o.co.uk) Received: from ligeti.p-o.co.uk (ligeti.p-o.co.uk [80.254.233.132]) by mx1.FreeBSD.org (Postfix) with ESMTP id 307A743D67 for ; Mon, 12 Jun 2006 11:50:25 +0000 (GMT) (envelope-from ahicks@p-o.co.uk) Received: from alanhicks.plus.com ([212.159.43.244] helo=[192.168.202.6]) by p-o.co.uk with esmtpa (Exim 4.62) (envelope-from ) id 1FpksQ-0007bl-7s for ports@FreeBSD.org; Mon, 12 Jun 2006 12:46:44 +0100 Message-ID: <448D541D.2040302@p-o.co.uk> Date: Mon, 12 Jun 2006 12:46:37 +0100 From: Alan Hicks User-Agent: Thunderbird 1.5.0.4 (Windows/20060516) MIME-Version: 1.0 To: ports@FreeBSD.org Content-Type: multipart/mixed; boundary="------------000407060106040008060709" Cc: Subject: FreeBSD Port: unrtf-0.20.1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 11:50:30 -0000 This is a multi-part message in MIME format. --------------000407060106040008060709 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Hi, The current port does not appear to install as the unrtf bin and man files are in subdirectories instead of the work root. The attached patch adds the subdirectories to the install section of Makefile, the app successfully installs and uninstalls. I've only tested on FreeBSD 6.0 All the best, Alan --------------000407060106040008060709 Content-Type: text/plain; name="Makefile.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="Makefile.diff" --- 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 --------------000407060106040008060709--