Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 18 Jul 2012 10:50:02 +0000 (UTC)
From:      Christian Weisgerber <naddy@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r301075 - in head/devel/cvsps: . files
Message-ID:  <201207181050.q6IAo2Ci062226@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: naddy
Date: Wed Jul 18 10:50:02 2012
New Revision: 301075
URL: http://svn.freebsd.org/changeset/ports/301075

Log:
  Fix man page error and remove gmake dependency.

Added:
  head/devel/cvsps/files/patch-Makefile   (contents, props changed)
  head/devel/cvsps/files/patch-cvsps.1   (contents, props changed)
Modified:
  head/devel/cvsps/Makefile   (contents, props changed)

Modified: head/devel/cvsps/Makefile
==============================================================================
--- head/devel/cvsps/Makefile	Wed Jul 18 09:02:32 2012	(r301074)
+++ head/devel/cvsps/Makefile	Wed Jul 18 10:50:02 2012	(r301075)
@@ -8,16 +8,13 @@
 
 PORTNAME=	cvsps
 PORTVERSION=	2.1
-PORTREVISION=	0
+PORTREVISION=	1
 CATEGORIES=	devel
 MASTER_SITES=	http://www.cobite.com/cvsps/
 
 MAINTAINER=	ports@FreeBSD.org
 COMMENT=	Create patchset information from CVS
 
-USE_GMAKE=	yes
-ALL_TARGET=	cvsps
-
 CONFLICTS=	cvsps-devel-*
 
 MAN1=		cvsps.1

Added: head/devel/cvsps/files/patch-Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/cvsps/files/patch-Makefile	Wed Jul 18 10:50:02 2012	(r301075)
@@ -0,0 +1,12 @@
+--- Makefile.orig	2012-07-18 12:44:35.000000000 +0200
++++ Makefile	2012-07-18 12:44:52.000000000 +0200
+@@ -23,6 +23,9 @@ all: cvsps
+ cvsps: $(OBJS)
+ 	$(CC) -o cvsps $(OBJS) -lz
+ 
++.c.o:
++	$(CC) $(CFLAGS) -c -o $@ $<
++
+ install:
+ 	[ -d $(prefix)/bin ] || mkdir -p $(prefix)/bin
+ 	[ -d $(prefix)/share/man/man1 ] || mkdir -p $(prefix)/share/man/man1

Added: head/devel/cvsps/files/patch-cvsps.1
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/cvsps/files/patch-cvsps.1	Wed Jul 18 10:50:02 2012	(r301075)
@@ -0,0 +1,13 @@
+--- cvsps.1.orig	2012-07-18 12:45:04.000000000 +0200
++++ cvsps.1	2012-07-18 12:45:11.000000000 +0200
+@@ -10,8 +10,8 @@ repository.  A patchset in this case is 
+ to a collection of files, and all committed at the same time (using a
+ single 'cvs commit' command).  This information is valuable to seeing the
+ big picture of the evolution of a cvs project.  While cvs tracks revision
+-information, it is often difficult to see what changes were committed
+-'atomically' to the repository.
++information, it is often difficult to see what changes were
++committed 'atomically' to the repository.
+ .SH OPTIONS
+ .TP
+ .B \-h



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201207181050.q6IAo2Ci062226>