From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 29 13:10:13 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 93AC937B401 for ; Sun, 29 Jun 2003 13:10:13 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A47143FF3 for ; Sun, 29 Jun 2003 13:10:12 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h5TKACUp019345 for ; Sun, 29 Jun 2003 13:10:12 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h5TKACum019344; Sun, 29 Jun 2003 13:10:12 -0700 (PDT) Resent-Date: Sun, 29 Jun 2003 13:10:12 -0700 (PDT) Resent-Message-Id: <200306292010.h5TKACum019344@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, Sergei Kolobov Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C348537B401 for ; Sun, 29 Jun 2003 13:00:34 -0700 (PDT) Received: from outpost.globcon.net (outpost.globcon.net [62.141.88.161]) by mx1.FreeBSD.org (Postfix) with SMTP id 5DE8843FF2 for ; Sun, 29 Jun 2003 13:00:33 -0700 (PDT) (envelope-from sgk@kolobov.com) Received: (qmail 20958 invoked from network); 29 Jun 2003 20:00:10 -0000 Received: from dom.kolobov.com (HELO kolobov.com) (213.247.180.114) by outpost.globcon.net with SMTP; 29 Jun 2003 20:00:10 -0000 Received: (qmail 7424 invoked by uid 911); 29 Jun 2003 20:00:06 -0000 Message-Id: <20030629200006.7423.qmail@kolobov.com> Date: 29 Jun 2003 20:00:06 -0000 From: Sergei Kolobov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: hrs@FreeBSD.org Subject: ports/53904: [PATCH] net/cvsync: install documentation, remove USE_REINPLACE 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: Sun, 29 Jun 2003 20:10:13 -0000 >Number: 53904 >Category: ports >Synopsis: [PATCH] net/cvsync: install documentation, remove USE_REINPLACE >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: Sun Jun 29 13:10:12 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Sergei Kolobov >Release: FreeBSD 5.1-CURRENT i386 >Organization: >Environment: System: FreeBSD elf.chetwood.ru 5.1-CURRENT FreeBSD 5.1-CURRENT #0: Thu Jun 5 02:19:41 MSD >Description: - Install documentation - Remove USE_REINPLACE as it is not used anymore - Slightly reword pkg-descr, mention that cvsync is BSD-licensed - Add Author and WWW tags to pkg-descr Port maintainer (hrs@FreeBSD.org) is cc'd. >How-To-Repeat: >Fix: --- cvsync-0.23.5.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/net/cvsync/Makefile,v retrieving revision 1.16 diff -u -r1.16 Makefile --- Makefile 27 Jun 2003 04:04:26 -0000 1.16 +++ Makefile 29 Jun 2003 17:40:59 -0000 @@ -15,13 +15,17 @@ COMMENT= A portable CVS repository synchronization utility USE_GMAKE= yes -USE_REINPLACE= yes MAN1= cvscan.1 cvsync.1 cvsyncd.1 rcscan.1 rcscmp.1 +DOCS= doc/COPYRIGHT doc/ChangeLog doc/FAQ doc/TODO +EXAMPLES= samples/cvsync.conf samples/cvsyncd.conf post-install: @${MKDIR} ${EXAMPLESDIR} - ${INSTALL_DATA} ${WRKSRC}/samples/cvsync.conf ${EXAMPLESDIR} - ${INSTALL_DATA} ${WRKSRC}/samples/cvsyncd.conf ${EXAMPLESDIR} + cd ${WRKSRC} && ${INSTALL_DATA} ${EXAMPLES} ${EXAMPLESDIR} +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} + cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR} +.endif .include Index: pkg-descr =================================================================== RCS file: /home/ncvs/ports/net/cvsync/pkg-descr,v retrieving revision 1.2 diff -u -r1.2 pkg-descr --- pkg-descr 16 Apr 2003 06:45:07 -0000 1.2 +++ pkg-descr 29 Jun 2003 17:40:59 -0000 @@ -1,5 +1,8 @@ cvsync is a portable CVS repository synchronization utility, -written in C and POSIX pthread library. This is very similar to -CVSup but not compatible with it. +written in C and POSIX pthread library, released under BSD license. +It is very similar to CVSup but not compatible with it. Note that this utility is still experimental. + +Author: MAEKAWA Masahide +WWW: http://www.daemon-systems.org/cvsync/ Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/net/cvsync/pkg-plist,v retrieving revision 1.1 diff -u -r1.1 pkg-plist --- pkg-plist 23 Mar 2003 18:41:44 -0000 1.1 +++ pkg-plist 29 Jun 2003 17:40:59 -0000 @@ -4,6 +4,11 @@ bin/cvsyncd bin/rcscan bin/rcscmp +%%PORTDOCS%%%%DOCSDIR%%/COPYRIGHT +%%PORTDOCS%%%%DOCSDIR%%/ChangeLog +%%PORTDOCS%%%%DOCSDIR%%/FAQ +%%PORTDOCS%%%%DOCSDIR%%/TODO +%%PORTDOCS%%@dirrm %%DOCSDIR%% %%EXAMPLESDIR%%/cvsync.conf %%EXAMPLESDIR%%/cvsyncd.conf @dirrm %%EXAMPLESDIR%% --- cvsync-0.23.5.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: