blob: cde15dc15ffb7b2d66063e1781a77ff0d3eacd52 (
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
|
# $NetBSD: Makefile,v 1.3 1999/03/16 11:05:29 agc Exp $
#
DISTNAME= rcs-5.7
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_GNU:=/rcs/}
MAINTAINER= gnu@gnu.org
HOMEPAGE= http://www.gnu.org/software/rcs/rcs.html
NOT_FOR_OPSYS= NetBSD # in the base system
DEPENDS+= diffutils-2.7:../../devel/diffutils
GNU_CONFIGURE= yes
CONFIGURE_ENV+= PATH=${LOCALBASE}/bin:$PATH
post-install:
${RM} -f ${PREFIX}/bin/rcslog
${LN} -s ${PREFIX}/bin/rlog ${PREFIX}/bin/rcslog
${RM} -f ${PREFIX}/man/man1/rcslog.1 ${PREFIX}/man/man1/rcslog.1.gz
${LN} -s ${PREFIX}/man/man1/rlog.1 ${PREFIX}/man/man1/rcslog.1
.include "../../mk/bsd.pkg.mk"
|