1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-02 01:20:54 +00:00
freebsd-ports/shells/rc/Makefile
Baptiste Daroussin 9f1de9b900 Convert USE_NCURSES by USES=ncurses
Convert USE_READLINE by USES=readline
2013-05-06 15:34:17 +00:00

31 lines
581 B
Makefile

# Created by: erich@rrnet.com
# $FreeBSD$
PORTNAME= rc
PORTVERSION= 1.7.1
CATEGORIES= shells plan9
MASTER_SITES= ftp://rc.quanstro.net/pub/ \
ftp://quenix2.dyndns.org/FreeBSD/ports/distfiles/
MAINTAINER= quanstro@quanstro.net
COMMENT= A unix incarnation of the plan9 shell
USE_BZIP2= YES
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-history
MAN1= history.1 rc.1
OPTIONS_DEFINE= READLINE
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MREADLINE}
USES+= readline
CONFIGURE_ARGS+= --with-readline
.else
MAKE_ARGS+= CFLAGS="$(CFLAGS) -static"
.endif
.include <bsd.port.mk>