From owner-freebsd-ports Mon Mar 13 16: 0: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3FDCF37B540 for ; Mon, 13 Mar 2000 16:00:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA72475; Mon, 13 Mar 2000 16:00:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from wolf.dyns.cx (dar65-145.jacksonville.net [24.129.65.145]) by hub.freebsd.org (Postfix) with ESMTP id 199D237B572 for ; Mon, 13 Mar 2000 15:57:37 -0800 (PST) (envelope-from root@wolf.dyns.cx) Received: (from root@localhost) by wolf.dyns.cx (8.9.3/8.9.3) id QAA02849; Sun, 12 Mar 2000 16:24:15 -0500 (EST) (envelope-from root) Message-Id: <200003122124.QAA02849@wolf.dyns.cx> Date: Sun, 12 Mar 2000 16:24:15 -0500 (EST) From: mjoyner@rv1.dynip.com Reply-To: mjoyner@rv1.dynip.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/17367: XFree86-aout port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17367 >Category: ports >Synopsis: The makefile doesn't make the aout lib dir if it doesn't exist >Confidential: yes >Severity: serious >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Mar 13 16:00:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Michael Joyner >Release: FreeBSD 4.0-20000312-CURRENT i386 >Organization: >Environment: New installation of 4.0-CURRENt >Description: The XFree86 aout libs port doesn't make the needed directory in the XFree86 tree. In addition, during the install, it installs all the libs as a file called aout. >How-To-Repeat: cd /usr/ports/x11/XFree86-aoutlibs; make install >Fix: Fix the port's Makefile. What I did to make it work... added a make directectory before the for install loop. gave install the name of the library twice (instead of once). do-install: cd ${WRKSRC}; \ if [ ! -d ${PREFIX}/lib/aout ]; then mkdir -p ${PREFIX}/lib/aout; fi;\ for l in $$(ls lib*); do \ ${SETENV} OBJFORMAT=${PORTOBJFORMAT} \ ${INSTALL_PROGRAM} $$l ${PREFIX}/lib/aout/$$l; \ done ${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib/aout >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message