diff options
author | reed <reed> | 2005-10-04 21:40:19 +0000 |
---|---|---|
committer | reed <reed> | 2005-10-04 21:40:19 +0000 |
commit | 8378b517b6a18f18ada5f3a8eb8d5e0caa202edf (patch) | |
tree | 384b98bf74a8653fd38e9f2661cfa37fb1707173 | |
parent | 9477d17036a7098d5cca1a20adcb81f810014fef (diff) | |
download | pkgsrc-8378b517b6a18f18ada5f3a8eb8d5e0caa202edf.tar.gz |
Honor PKGMANDIR. (patch-aa already existed but now don't set MANDIR
unless not defined, and put in the make environment.)
-rw-r--r-- | textproc/biblook/Makefile | 3 | ||||
-rw-r--r-- | textproc/biblook/distinfo | 4 | ||||
-rw-r--r-- | textproc/biblook/patches/patch-aa | 15 |
3 files changed, 16 insertions, 6 deletions
diff --git a/textproc/biblook/Makefile b/textproc/biblook/Makefile index 59d09ce6c0a..3a7e5d96986 100644 --- a/textproc/biblook/Makefile +++ b/textproc/biblook/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2005/03/07 10:03:13 uebayasi Exp $ +# $NetBSD: Makefile,v 1.8 2005/10/04 21:40:19 reed Exp $ # DISTNAME= biblook @@ -11,6 +11,7 @@ HOMEPAGE= http://compgeom.cs.uiuc.edu/~jeffe/biblook.html COMMENT= Indexing and searching tools for BibTeX bibliography databases WRKSRC= ${WRKDIR} +MAKE_ENV+= MANDIR=${PREFIX}/${PKGMANDIR}/man1 MAKE_FLAGS= CC="${CC}" # override definitions in the package's Makefile via command line diff --git a/textproc/biblook/distinfo b/textproc/biblook/distinfo index 6856ce99537..c54d26feeaa 100644 --- a/textproc/biblook/distinfo +++ b/textproc/biblook/distinfo @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.3 2005/02/24 14:48:40 agc Exp $ +$NetBSD: distinfo,v 1.4 2005/10/04 21:40:19 reed Exp $ SHA1 (biblook.tar.gz) = 2bb056b806db4518c07e245fc86097c12938443b RMD160 (biblook.tar.gz) = 116f8209e7f36d98a770b1fd911ce9a985dc2b45 Size (biblook.tar.gz) = 44691 bytes -SHA1 (patch-aa) = 35775eda3f306e2cfa07bc91ac14daa59b84e10b +SHA1 (patch-aa) = 0a4555904c32474998336803d6bd805d3dd1d5cb SHA1 (patch-ab) = 7063e2d7b92a45b1f055ca201fe1d6b11bfec7bc SHA1 (patch-ac) = 4d6ae0e4301a184b40c777712ee91ea739d7fbfe diff --git a/textproc/biblook/patches/patch-aa b/textproc/biblook/patches/patch-aa index 737c7934475..b69699af3e3 100644 --- a/textproc/biblook/patches/patch-aa +++ b/textproc/biblook/patches/patch-aa @@ -1,7 +1,7 @@ -$NetBSD: patch-aa,v 1.1.1.1 2001/05/31 10:54:21 agc Exp $ +$NetBSD: patch-aa,v 1.2 2005/10/04 21:40:19 reed Exp $ ---- Makefile.orig Tue Jan 31 21:15:22 1995 -+++ Makefile +--- Makefile.orig 1995-01-31 12:15:22.000000000 -0800 ++++ Makefile 2005-10-04 14:26:20.000000000 -0700 @@ -68,12 +68,15 @@ # [13-Sep-1993] #======================================================================= @@ -19,6 +19,15 @@ $NetBSD: patch-aa,v 1.1.1.1 2001/05/31 10:54:21 agc Exp $ # Compilation with a C++ compiler is preferable. SunOS 4.1 CC cannot be # used, however, because of its erroneous function prototypes in stdlib.h # which use char* instead of void* in many places. There is no such +@@ -148,7 +151,7 @@ + LIBS = /usr/lib/debug/malloc.o + LIBS = + +-MANDIR = $(DEST)/man/man1 ++MANDIR ?= $(DEST)/man/man1 + + MANEXT = 1 + @@ -243,16 +246,10 @@ -$(RM) TAGS |