39 lines
1.2 KiB
Makefile
39 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.42 2015/11/04 13:27:59 tnn Exp $
|
|
|
|
DISTNAME= rcs-5.9.4
|
|
CATEGORIES= devel scm
|
|
MASTER_SITES= ${MASTER_SITE_GNU:=rcs/}
|
|
EXTRACT_SUFX= .tar.xz
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.cs.purdue.edu/homes/trinkle/RCS/
|
|
COMMENT= GNU Revision Control System - version control software
|
|
LICENSE= gnu-gpl-v3
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_TOOLS+= gmake gsoelim diff:run diff3:run
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
# the native diff/diff3 is not sufficient for rcs
|
|
.if ${OPSYS} == "SunOS" || ${OPSYS} == "OSF1" || ${OPSYS} == "AIX" || ${OPSYS} == "Minix"
|
|
TOOLS_PLATFORM.diff=
|
|
TOOLS_PLATFORM.diff3=
|
|
.endif
|
|
# DIFF is already in CONFIGURE_ENV
|
|
CONFIGURE_ENV+= DIFF3=${TOOLS_PATH.diff3}
|
|
|
|
REPLACE_SH= build-aux/extract-help
|
|
|
|
INFO_FILES= yes
|
|
|
|
# configure will be modified by pkgsrc framework with timestamp update.
|
|
# sync timestamp with man/REL to avoid regeneration of man.
|
|
post-configure:
|
|
${TOUCH} -r ${WRKSRC}/man/REL ${WRKSRC}/configure
|
|
|
|
post-install:
|
|
${LN} -s ${DESTDIR}${PREFIX}/bin/rlog ${DESTDIR}${PREFIX}/bin/rcslog
|
|
${LN} -s ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/rlog.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/rcslog.1
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|