From owner-freebsd-ports Tue Aug 1 23:50: 7 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 74E5B37C013 for ; Tue, 1 Aug 2000 23:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA39335; Tue, 1 Aug 2000 23:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from chg.ru (netserv1.chg.ru [193.233.46.3]) by hub.freebsd.org (Postfix) with ESMTP id DABF637B705 for ; Tue, 1 Aug 2000 23:46:22 -0700 (PDT) (envelope-from dima@chg.ru) Received: (from dima@localhost) by chg.ru (8.9.3/8.9.3) id KAA72756; Wed, 2 Aug 2000 10:46:10 +0400 (MSD) (envelope-from dima) Message-Id: <200008020646.KAA72756@chg.ru> Date: Wed, 2 Aug 2000 10:46:10 +0400 (MSD) From: "Dmitry S. Sivachenko" Reply-To: dima@Chg.RU To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/20355: Fix port: devel/sfio Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20355 >Category: ports >Synopsis: Fix port: devel/sfio >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Aug 01 23:50:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dmitry S. Sivachenko >Release: FreeBSD 3.3-RELEASE i386 >Organization: >Environment: >Description: devel/sfio port installs stdio.h file into /usr/local/include. So it is inconvenient to distinguish between two versions of stdio.h. The proposed patch installs stdio.h into ${PREFIX}/include/sfio, so one can use #include . >How-To-Repeat: >Fix: diff -Nur sfio.old/Makefile sfio/Makefile --- sfio.old/Makefile Sun May 14 23:59:42 2000 +++ sfio/Makefile Wed Aug 2 10:39:32 2000 @@ -46,7 +46,10 @@ @cd ${WRKDIR}/src/lib/sfio && ${MAKE} all -f makefile do-install: - ${INSTALL_DATA} ${WRKDIR}/include/* ${PREFIX}/include + ${INSTALL_DATA} ${WRKDIR}/include/a* ${PREFIX}/include + ${INSTALL_DATA} ${WRKDIR}/include/sf* ${PREFIX}/include + ${MKDIR} ${PREFIX}/include/sfio + ${INSTALL_DATA} ${WRKDIR}/include/stdio.h ${PREFIX}/include/sfio ${INSTALL_DATA} ${WRKDIR}/lib/libsfio.a ${PREFIX}/lib ${INSTALL_DATA} ${WRKDIR}/lib/libstdio.a ${PREFIX}/lib ${INSTALL_MAN} ${WRKDIR}/man/man1/iffe.1 ${PREFIX}/man/man1 diff -Nur sfio.old/pkg/PLIST sfio/pkg/PLIST --- sfio.old/pkg/PLIST Sat Nov 7 21:04:14 1998 +++ sfio/pkg/PLIST Wed Aug 2 10:39:52 2000 @@ -1,6 +1,7 @@ include/ast_common.h include/sfio.h include/sfio_t.h -include/stdio.h +include/sfio/stdio.h lib/libsfio.a lib/libstdio.a +@dirrm include/sfio >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message