From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 12 07:40:21 2003 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 BCB8A16A4CE for ; Fri, 12 Dec 2003 07:40:21 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8CD6A43D37 for ; Fri, 12 Dec 2003 07:40:10 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) hBCFeAFR067758 for ; Fri, 12 Dec 2003 07:40:10 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id hBCFeAWR067755; Fri, 12 Dec 2003 07:40:10 -0800 (PST) (envelope-from gnats) Resent-Date: Fri, 12 Dec 2003 07:40:10 -0800 (PST) Resent-Message-Id: <200312121540.hBCFeAWR067755@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, Steve Wills Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9C46816A4CE for ; Fri, 12 Dec 2003 07:33:34 -0800 (PST) Received: from stevenwills.com (rdu26-60-015.nc.rr.com [66.26.60.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id 22C4743D31 for ; Fri, 12 Dec 2003 07:33:30 -0800 (PST) (envelope-from steve@stevenwills.com) Received: from tigger.example.com (localhost.example.com [127.0.0.1]) by stevenwills.com (8.12.8p2/8.12.8) with ESMTP id hBCFXSVJ058944 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Fri, 12 Dec 2003 10:33:29 -0500 (EST) (envelope-from steve@tigger.example.com) Received: (from steve@localhost) by tigger.example.com (8.12.8p2/8.12.8/Submit) id hBCFXSdB058943; Fri, 12 Dec 2003 10:33:28 -0500 (EST) Message-Id: <200312121533.hBCFXSdB058943@tigger.example.com> Date: Fri, 12 Dec 2003 10:33:28 -0500 (EST) From: Steve Wills To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/60181: update to dailystrips port X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Steve Wills List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Dec 2003 15:40:21 -0000 >Number: 60181 >Category: ports >Synopsis: update to dailystrips port >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Dec 12 07:40:10 PST 2003 >Closed-Date: >Last-Modified: >Originator: Steve >Release: FreeBSD 4.8-RELEASE i386 >Organization: >Environment: System: FreeBSD tigger.example.com 4.8-RELEASE FreeBSD 4.8-RELEASE #5: Tue Apr 15 21:42:39 EDT 2003 steve@tigger.example.com:/common/FreeBSD/obj/common/FreeBSD/src/sys/TIGGER i386 >Description: Patch to fix several bugs in the dailystrips port. The patch below fixes several bugs in the dailystrips ports. First, the path to perl was not getting updated for dailystrips-clean. Second, include the README for dailystrips-clean. Finally, include dailystrips-update, update its path to perl and include its documentation. >How-To-Repeat: >Fix: --- Makefile.orig Fri Dec 12 09:51:02 2003 +++ Makefile Fri Dec 12 10:00:41 2003 @@ -24,16 +24,19 @@ post-patch: @${REINPLACE_CMD} 's|^#!/usr/bin/perl|#!${PERL}|; \ s!/usr/share/dailystrips/strips.def!${DATADIR}/strips.def!' \ - ${WRKSRC}/dailystrips + ${WRKSRC}/dailystrips ${WRKSRC}/dailystrips-clean \ + ${WRKSRC}/dailystrips-update do-install: ${INSTALL_SCRIPT} ${WRKSRC}/dailystrips ${PREFIX}/bin ${INSTALL_SCRIPT} ${WRKSRC}/dailystrips-clean ${PREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/dailystrips-update ${PREFIX}/bin @${MKDIR} ${DATADIR} ${INSTALL_SCRIPT} ${WRKSRC}/strips.def ${DATADIR} .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} -.for file in README README.DEFS README.LOCAL +.for file in README README.DEFS README.LOCAL README.dailystrips-clean \ + README.dailystrips-update ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} .endfor .endif --- pkg-plist.orig Fri Dec 12 09:58:29 2003 +++ pkg-plist Fri Dec 12 09:58:19 2003 @@ -1,8 +1,11 @@ bin/dailystrips bin/dailystrips-clean +bin/dailystrips-update share/dailystrips/strips.def %%PORTDOCS%%share/doc/dailystrips/README %%PORTDOCS%%share/doc/dailystrips/README.DEFS %%PORTDOCS%%share/doc/dailystrips/README.LOCAL +%%PORTDOCS%%share/doc/dailystrips/README.dailystrips-clean +%%PORTDOCS%%share/doc/dailystrips/README.dailystrips-update %%PORTDOCS%%@dirrm share/doc/dailystrips @dirrm share/dailystrips >Release-Note: >Audit-Trail: >Unformatted: