diff options
author | wiz <wiz@pkgsrc.org> | 2000-10-21 19:29:05 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2000-10-21 19:29:05 +0000 |
commit | 8203c24723f3b3c49ecbc0f128a34b8905ae2779 (patch) | |
tree | f330f2d67fe04a9a060f948bde11fbe354e62de1 /devel/cvs/Makefile | |
parent | 409ad4eca645ee45ba7da2cae9ddda3a48a234df (diff) | |
download | pkgsrc-8203c24723f3b3c49ecbc0f128a34b8905ae2779.tar.gz |
Mirror commits to cvs in base system:
Make LOCALID a runtime option, instead of a compiletime option, by moving
the value to CVSROOT/config (repository specific).
Some minor fixes for buffer sizes.
Add a RCS Id where missing; add some warning about the deprecated
RCS_LOCALID variable.
Both changes from OpenBSD.
Bump to 1.11nb1.
Diffstat (limited to 'devel/cvs/Makefile')
-rw-r--r-- | devel/cvs/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/devel/cvs/Makefile b/devel/cvs/Makefile index 8d3a6101dea..d4591d63f14 100644 --- a/devel/cvs/Makefile +++ b/devel/cvs/Makefile @@ -1,9 +1,10 @@ -# $NetBSD: Makefile,v 1.31 2000/10/18 03:31:15 hubertf Exp $ +# $NetBSD: Makefile,v 1.32 2000/10/21 19:29:05 wiz Exp $ # -DISTNAME= cvs-1.11 +DISTNAME= cvs-1.11 +PKGNAME= ${DISTNAME}nb1 CATEGORIES= devel -MASTER_SITES= ftp://ftp.cvshome.org/pub/${DISTNAME}/ \ +MASTER_SITES= ftp://ftp.cvshome.org/pub/${DISTNAME}/ \ ${MASTER_SITE_GNU:=cvs/} MAINTAINER= tv@netbsd.org @@ -12,8 +13,6 @@ HOMEPAGE= http://www.cvshome.org/ GNU_CONFIGURE= yes USE_GTEXINFO= yes -BUILD_DEFS+= RCS_LOCALID - .include "../../mk/bsd.prefs.mk" .if ${OPSYS} == "SunOS" @@ -37,7 +36,8 @@ CONFIGURE_ARGS+= --with-krb4=no #.endif .if defined(RCS_LOCALID) -CFLAGS+= -DLOCALID=\"\\\"${RCS_LOCALID}\\\"\" +pre-fetch: + @echo RCS_LOCALID is now replaced by the tag variable in CVSROOT/config. .endif CONFIGURE_ENV+= perl_path=${PERL5} |