2c687458ff
- readline-4.2 support new variables rl_completion_suppress_append rl_completion_mark_symlink_dirs new functions rl_replace_line() rl_completion_mode() - tgetstr() calls tput() to apply padding information. No more "$<2>" on prompt. - shadow_redisplay() with ornament works on xterm.
33 lines
763 B
Makefile
33 lines
763 B
Makefile
# $OpenBSD: Makefile,v 1.9 2002/08/09 10:22:47 wilfried Exp $
|
|
|
|
COMMENT= 'GNU Readline Library Wrapper Module'
|
|
|
|
DISTNAME= Term-ReadLine-Gnu-1.13
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= devel perl5
|
|
|
|
MAINTAINER= Peter Stromberg <wilfried@openbsd.org>
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Term/}
|
|
|
|
CONFIGURE_STYLE= perl
|
|
|
|
# This regression test wants an X11 display
|
|
REGRESS_DEPENDS= :p5-Tk-*:x11/p5-Tk
|
|
REGRESS_FLAGS+= TERM=${TERM} DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY}
|
|
REGRESS_IS_INTERACTIVE= Yes
|
|
|
|
pre-regress:
|
|
.for t in TERM DISPLAY XAUTHORITY
|
|
.if !defined($t)
|
|
@echo "$t needs to be set to run regress"; exit 1
|
|
.endif
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|