blob: 94a442879476a3084ce39dbebf7b20a9e2d73a5a (
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
|
# $NetBSD: Makefile,v 1.27 2012/09/11 23:25:09 asau Exp $
DISTNAME= rc-1.7
PKGREVISION= 1
CATEGORIES= shells plan9
MASTER_SITES= http://www-ftp.lip6.fr/pub/unix/shells/rc/
MAINTAINER= pkgsrc-users@NetBSD.org
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
USE_GNU_READLINE= YES
.endif
.include "../../mk/bsd.pkg.mk"
|