66111c6d15
Summary of changes: - removal of USE_GTEXINFO - addition of mk/texinfo.mk - inclusion of this file in package Makefiles requiring it - `install-info' substituted by `${INSTALL_INFO}' in PLISTs - tuning of mk/bsd.pkg.mk: removal of USE_GTEXINFO INSTALL_INFO added to PLIST_SUBST `${INSTALL_INFO}' replace `install-info' in target rules print-PLIST target now generate `${INSTALL_INFO}' instead of `install-info' - a couple of new patch files added for a handful of packages - setting of the TEXINFO_OVERRIDE "switch" in packages Makefiles requiring it - devel/cssc marked requiring texinfo 4.0 - a couple of packages Makefiles were tuned with respect of INFO_FILES and makeinfo command usage See -newly added by this commit- section 10.24 of Packages.txt for further information.
51 lines
1 KiB
Makefile
51 lines
1 KiB
Makefile
# $NetBSD: Makefile,v 1.48 2002/02/18 15:14:08 seb Exp $
|
|
#
|
|
|
|
DISTNAME= cvs-1.11
|
|
PKGREVISION= 2
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ftp://ftp.cvshome.org/pub/${DISTNAME}/ \
|
|
${MASTER_SITE_GNU:=cvs/}
|
|
|
|
MAINTAINER= tv@netbsd.org
|
|
HOMEPAGE= http://www.cvshome.org/
|
|
COMMENT= Concurrent Versions System
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
BUILD_DEFS+= USE_INET6
|
|
USE_BUILDLINK_ONLY= yes
|
|
|
|
.if (${OPSYS} == "NetBSD")
|
|
PATCH_SITES= ${MASTER_SITE_LOCAL}
|
|
PATCHFILES= cvs-1.11-v6-20020111.diff.gz
|
|
PATCH_DIST_STRIP= -p1
|
|
|
|
.if ${USE_INET6} == "YES"
|
|
CONFIGURE_ARGS+= --enable-ipv6
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-ipv6
|
|
.endif
|
|
|
|
.endif
|
|
|
|
.if defined(KERBEROS)
|
|
CONFIGURE_ARGS+= --with-krb4=/usr --enable-encryption
|
|
CONFIGURE_ARGS+= --with-gssapi=/usr
|
|
.endif
|
|
|
|
.if defined(RCS_LOCALID)
|
|
pre-fetch:
|
|
@${ECHO} RCS_LOCALID is now replaced by the tag variable in CVSROOT/config.
|
|
.endif
|
|
|
|
CONFIGURE_ENV+= perl_path=${PERL5}
|
|
|
|
INFO_FILES= cvs.info cvsclient.info
|
|
TEXINFO_OVERRIDE= YES
|
|
|
|
.include "../../devel/zlib/buildlink.mk"
|
|
.include "../../mk/texinfo.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|