From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jan 30 16:00:15 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org 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 5EC7816A420 for ; Mon, 30 Jan 2006 16:00:15 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B9DC43D55 for ; Mon, 30 Jan 2006 16:00:14 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k0UG0EJO066709 for ; Mon, 30 Jan 2006 16:00:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k0UG0EuB066707; Mon, 30 Jan 2006 16:00:14 GMT (envelope-from gnats) Resent-Date: Mon, 30 Jan 2006 16:00:14 GMT Resent-Message-Id: <200601301600.k0UG0EuB066707@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, Renato Botelho Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4CDB116A420 for ; Mon, 30 Jan 2006 15:58:25 +0000 (GMT) (envelope-from garga@data.galle.com.br) Received: from data.galle.com.br (data.galle.com.br [200.246.25.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9540D43D45 for ; Mon, 30 Jan 2006 15:58:24 +0000 (GMT) (envelope-from garga@data.galle.com.br) Received: from data.galle.com.br (data.galle.com.br [200.246.25.10]) by data.galle.com.br (8.13.4/8.13.4) with ESMTP id k0UFwMYH018328; Mon, 30 Jan 2006 13:58:22 -0200 (BRDT) (envelope-from garga@data.galle.com.br) Received: (from garga@localhost) by data.galle.com.br (8.13.4/8.13.3/Submit) id k0UFwIL8018325; Mon, 30 Jan 2006 13:58:18 -0200 (BRDT) (envelope-from garga) Message-Id: <200601301558.k0UFwIL8018325@data.galle.com.br> Date: Mon, 30 Jan 2006 13:58:18 -0200 (BRDT) From: Renato Botelho To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/92553: [PATCH] deskutils/phpicalendar: Show all files that are installed X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Jan 2006 16:00:15 -0000 >Number: 92553 >Category: ports >Synopsis: [PATCH] deskutils/phpicalendar: Show all files that are installed >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: Mon Jan 30 16:00:13 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Renato Botelho >Release: FreeBSD 6.0-STABLE i386 >Organization: >Environment: System: FreeBSD data.galle.com.br 6.0-STABLE FreeBSD 6.0-STABLE #6: Fri Nov 4 15:09:42 BRDT >Description: - Show all files that are installed adding -v to ${CP} - Move pkg-message to files/pkg-message.in and add it to SUB_FILES to show ${PREFIX} Added file(s): - files/pkg-message.in Removed file(s): - pkg-message Port maintainer (edwin@mavetju.org) is cc'd. Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- phpicalendar-2.1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/deskutils/phpicalendar/Makefile,v retrieving revision 1.5 diff -u -u -r1.5 Makefile --- Makefile 30 Jan 2006 15:34:51 -0000 1.5 +++ Makefile 30 Jan 2006 15:56:32 -0000 @@ -19,23 +19,24 @@ PHPICALENDAR= www/phpicalendar WWWDIR= ${PREFIX}/${PHPICALENDAR} PLIST_SUB+= PHPICALENDAR=${PHPICALENDAR} +SUB_FILES= pkg-message do-install: .if !exists(${WWWDIR}) ${MKDIR} ${WWWDIR} .endif .for dir in admin calendars functions images includes languages rss templates - @${CP} -R ${WRKSRC}/${dir} ${WWWDIR} - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR}/${dir} + @${CP} -Rv ${WRKSRC}/${dir} ${WWWDIR} + ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR}/${dir} .endfor .for f in index.php TIMEZONES error.php day.php preferences.php print.php search.php week.php month.php year.php README COPYING AUTHORS - @${CP} ${WRKSRC}/${f} ${WWWDIR} - @${CHOWN} ${WWWOWN}:${WWWGRP} ${WWWDIR}/${f} + @${CP} -v ${WRKSRC}/${f} ${WWWDIR} + ${CHOWN} ${WWWOWN}:${WWWGRP} ${WWWDIR}/${f} .endfor - @${CP} ${WRKSRC}/config.inc.php ${WWWDIR}/config.inc.php-default - @${CHOWN} ${WWWOWN}:${WWWGRP} ${WWWDIR}/config.inc.php-default + @${CP} -v ${WRKSRC}/config.inc.php ${WWWDIR}/config.inc.php-default + ${CHOWN} ${WWWOWN}:${WWWGRP} ${WWWDIR}/config.inc.php-default post-install: - ${CAT} ${PKGMESSAGE} + @${CAT} ${PKGMESSAGE} .include Index: pkg-message =================================================================== RCS file: pkg-message diff -N pkg-message --- pkg-message 3 Apr 2004 06:24:04 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,4 +0,0 @@ -PHPiCalendar post-install instructions --------------------------------------- -Go to %%PREFIX%%/www/phpicalendar and copy -config.inc.php-default to config.inc.php. Index: files/pkg-message.in =================================================================== RCS file: files/pkg-message.in diff -N files/pkg-message.in --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/pkg-message.in 30 Jan 2006 15:56:32 -0000 @@ -0,0 +1,6 @@ + +PHPiCalendar post-install instructions +-------------------------------------- +Go to %%PREFIX%%/www/phpicalendar and copy +config.inc.php-default to config.inc.php. + --- phpicalendar-2.1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: