blob: ebdce9bee924badced8d0eec9ad2ac86e08a9c92 (
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
|
# $NetBSD: Makefile,v 1.31 2017/08/05 10:45:39 bsiegert Exp $
DISTNAME= rc-1.7.4
CATEGORIES= shells plan9
MASTER_SITES= http://static.tobold.org/rc/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://tobold.org/article/rc
#HOMEPAGE= http://plan9.bell-labs.com/sys/doc/rc.html
COMMENT= Unix incarnation of the plan9 shell
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --with-history
PKG_SHELL= bin/rc
PKG_OPTIONS_VAR= PKG_OPTIONS.rc
PKG_SUPPORTED_OPTIONS= readline
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mreadline)
.include "../../devel/readline/buildlink3.mk"
CONFIGURE_ARGS+= --with-readline
.endif
.include "../../mk/bsd.pkg.mk"
|