From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Nov 11 00:20:25 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E68916A4CE for ; Thu, 11 Nov 2004 00:20:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E63D43D31 for ; Thu, 11 Nov 2004 00:20:25 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) iAB0KOIG051413 for ; Thu, 11 Nov 2004 00:20:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id iAB0KON3051412; Thu, 11 Nov 2004 00:20:24 GMT (envelope-from gnats) Resent-Date: Thu, 11 Nov 2004 00:20:24 GMT Resent-Message-Id: <200411110020.iAB0KON3051412@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Yen-Ming Lee Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 412FB16A51F for ; Thu, 11 Nov 2004 00:15:35 +0000 (GMT) Received: from utopia.leeym.com (utopia.leeym.com [211.21.137.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D77543D31 for ; Thu, 11 Nov 2004 00:15:34 +0000 (GMT) (envelope-from leeym@utopia.leeym.com) Received: from localhost (localhost [127.0.0.1]) by utopia.leeym.com (Postfix) with ESMTP id 752723E9FAB; Thu, 11 Nov 2004 08:15:33 +0800 (CST) Received: from utopia.leeym.com ([127.0.0.1]) by localhost (utopia.leeym.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00796-03; Thu, 11 Nov 2004 08:15:30 +0800 (CST) Received: by utopia.leeym.com (Postfix, from userid 1000) id 817863E9F98; Thu, 11 Nov 2004 08:15:30 +0800 (CST) Message-Id: <20041111001530.817863E9F98@utopia.leeym.com> Date: Thu, 11 Nov 2004 08:15:30 +0800 (CST) From: Yen-Ming Lee To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: frank@dynamical-systems.org Subject: ports/73795: [PATCH] net/siproxd: fix dependency X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Nov 2004 00:20:25 -0000 >Number: 73795 >Category: ports >Synopsis: [PATCH] net/siproxd: fix dependency >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Nov 11 00:20:24 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Yen-Ming Lee >Release: FreeBSD 5.3-STABLE i386 >Organization: FreeBSD Taiwan >Environment: System: FreeBSD utopia.leeym.com 5.3-STABLE FreeBSD 5.3-STABLE #0: Mon Oct 25 01:17:22 CST 2004 >Description: - utilize PORTDOCS - replace pkg-plist with PLIST_FILES and PORTDOCS - don't depend on gnugetopt on 5.x or above Removed file(s): - pkg-plist Port maintainer (frank@dynamical-systems.org) is cc'd. Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- siproxd-0.5.8.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/net/siproxd/Makefile,v retrieving revision 1.1 diff -u -u -r1.1 Makefile --- Makefile 15 Oct 2004 15:47:27 -0000 1.1 +++ Makefile 11 Nov 2004 00:13:17 -0000 @@ -16,25 +16,34 @@ LIB_DEPENDS= osip2.2:${PORTSDIR}/net/libosip2 +USE_REINPLACE= yes USE_GETOPT_LONG=yes USE_RC_SUBR= yes -HAS_CONFIGURE= yes +GNU_CONFIGURE= yes +CONFIGURE_TARGET= # empty -PORTDOCS= AUTHORS ChangeLog README RELNOTES \ - doc/FAQ doc/KNOWN_BUGS doc/RFC3261_compliance.txt \ - doc/sample_cfg_budgetone.txt doc/sample_cfg_x-lite.txt +PORTDOCS1= AUTHORS ChangeLog README RELNOTES +PORTDOCS2= FAQ KNOWN_BUGS RFC3261_compliance.txt \ + sample_cfg_budgetone.txt sample_cfg_x-lite.txt +PORTDOCS= ${PORTDOCS1} ${PORTDOCS2} +PLIST_FILES= etc/rc.d/siproxd.sh etc/siproxd.conf.example \ + etc/siproxd_passwd.cfg sbin/siproxd .include +post-patch: .if ${OSVERSION} >= 500041 -LIB_DEPENDS+= gnugetopt.1:${PORTSDIR}/devel/libgnugetopt + @${REINPLACE_CMD} -e 's,-lgnugetopt,,g' ${WRKSRC}/${CONFIGURE_SCRIPT} .endif post-install: .if !defined(NOPORTDOCS) ${MKDIR} ${DOCSDIR} -.for i in ${PORTDOCS} +.for i in ${PORTDOCS1} ${INSTALL_MAN} ${WRKSRC}/${i} ${DOCSDIR} +.endfor +.for i in ${PORTDOCS2} + ${INSTALL_MAN} ${WRKSRC}/doc/${i} ${DOCSDIR} .endfor .endif PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL Index: pkg-plist =================================================================== RCS file: pkg-plist diff -N pkg-plist --- pkg-plist 15 Oct 2004 15:47:27 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,9 +0,0 @@ -etc/rc.d/siproxd.sh -etc/siproxd.conf.example -etc/siproxd_passwd.cfg -sbin/siproxd -%%PORTDOCS%%%%DOCSDIR%%/FAQ -%%PORTDOCS%%%%DOCSDIR%%/KNOWN_BUGS -%%PORTDOCS%%%%DOCSDIR%%/RFC3261_compliance.txt -%%PORTDOCS%%%%DOCSDIR%%/sample_cfg_budgetone.txt -%%PORTDOCS%%%%DOCSDIR%%/sample_cfg_x-lite.txt --- siproxd-0.5.8.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: