b79683f4f8
* Add build time dependency to asciidoc (a2x) Changelog: 3.10 @ 2013-01-20 Make the behavior of a second -d option match the documentation. 3.9 @ 2013-01-20 Added -i option for generating incremental fast exports. 3.8 @ 2013-01-13 Fix buggy generation of the revision-map file (thanks to Chris Rorvick). Don't convert .cvsignores by default, we have field reports of collisions. 3.7 @ 2013-01-08 Bug fix in timezone handling (thanks to Chris Rorvick). Major performance gain in the CVS client code (thanks to Sergei Trofimovich). 3.6 @ 2013-01-06 The third field in an author entry is now interpreted as if it were TZ. 3.5 @ 2013-01-02 Remove the --test-log option now that cvsps has its own test suite. New --reposurgeon option for passing reference-lifting hints to reposurgeon. 3.4 @ 2013-01-01 Incorporate Heiko Voight's patch solving some time-skew cases. The git-tree tests for cvsps are now completely merged into the test suite. Code passes Coverity auditing. 3.3 @ 2012-12-30 There's a new -A option that does author-name mapping in the expected way. There's a new -R option that writes out a revision map. cvsps run from within a repository directory will do the right thing. A bug that could garble translations of branchy repositories has been fixed.
28 lines
823 B
Text
28 lines
823 B
Text
$NetBSD: patch-aa,v 1.2 2013/02/25 21:26:55 ryoon Exp $
|
|
|
|
* Pass pkgsrc environment variables
|
|
|
|
--- Makefile.orig 2013-01-21 13:20:15.000000000 +0000
|
|
+++ Makefile
|
|
@@ -5,7 +5,7 @@ CFLAGS?=-g -O2 -Wall
|
|
CPPFLAGS+=-I. -DVERSION=\"$(VERSION)\"
|
|
LDLIBS+=-lz # += to allow solaris and friends add their libs like -lsocket
|
|
INSTALL = install
|
|
-prefix?=/usr/local
|
|
+prefix?=${PREFIX}
|
|
target=$(DESTDIR)$(prefix)
|
|
|
|
OBJS= debug.o \
|
|
@@ -51,9 +51,9 @@ pylint:
|
|
|
|
install: cvsps.1 all
|
|
$(INSTALL) -d "$(target)/bin"
|
|
- $(INSTALL) -d "$(target)/share/man/man1"
|
|
- $(INSTALL) cvsps "$(target)/bin"
|
|
- $(INSTALL) -m 644 cvsps.1 "$(target)/share/man/man1"
|
|
+ $(INSTALL) -d "$(target)/${PKGMANDIR}/man1"
|
|
+ $(INSTALL) cvsps "$(target)/bin/cvsps3"
|
|
+ $(INSTALL) -m 644 cvsps.1 "$(target)/${PKGMANDIR}/man1/cvsps3.1"
|
|
|
|
tags: *.c *.h
|
|
ctags *.c *.h
|