blob: 15f25afdfebd619c041d90f794c763dad0576597 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# $NetBSD: Makefile,v 1.38 2014/11/22 01:26:09 mef Exp $
DISTNAME= rcs-5.9.3
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
USE_TOOLS+= gmake
.include "../../mk/bsd.prefs.mk"
.if ${OPSYS} == "SunOS" || ${OPSYS} == "OSF1" || ${OPSYS} == "AIX" || ${OPSYS} == "Minix"
DEPENDS+= diffutils>=2.7:../../devel/diffutils
CONFIGURE_ARGS+= --with-diffutils
# the native diff/diff3 is not sufficient for rcs
TOOLS_PLATFORM.diff= ${LOCALBASE}/bin/gdiff
.endif
GNU_CONFIGURE= yes
CONFIGURE_ENV+= PATH=${LOCALBASE}/bin:"$$PATH"
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"
|