with readline 6.3. 1.22 2014-03-05 - make Kwalitee <http://cpants.cpanauthors.org/> friendly - add MakeMaker options for META.yml - add Changelog - fix POD errors - make .pm versions consistent - use "use warnings" - Makefile.PL dies on the CPAN Test for OpenBSD temporarily (hopefully). 1.21 2014-03-02 - readline-6.3 support (Gnu Readline Library 6.3 requires this release or newers.) new function rl_clear_history new variable rl_signal_event_hook rl_input_available_hook rl_executing_key rl_executing_keyseq rl_key_sequence_length rl_change_environment rl_filename_stat_hook - readline-6.1 support new function rl_free_keymap (enabled) new variable rl_filename_rewrite_hook (now implemented) - make the following variables read-only.: rl_executing_macro, history_length, rl_readline_state, rl_explicit_arg, rl_numeric_arg, rl_editing_mode - Improve backward compatiblity variable and function definitions. - Fix Term::ReadLine::Gnu::XS::_trp_completion_function not to perform a case-sensitive filter. - fix Gnu.xs:rl_initialize to be compiled with Perl 5.8.5 or before. - update Pod documents - t/readline.t, t/history.t: add variable access tests. - t/readline.t: consider .svn directory on filename completion test and to set the standard tty setting before re_initialize() being called. - eg/perlsh makes use of the deferred signal (safe signal) feature. - Maefile.PL checks whether the xmalloc exported by readline is indeed called 'xmalloc' or whether it has been renamed to '_rl_malloc'. - Makefile.PL: add -DTRL_READLINE_VERSION to show GNU Readline Library version in CPAN Tester Reports. - t/00checkver.t: let messages go to stdout. - README: add project home page URL and remove out-of-date descriptions. - INSTALL: add a section "Install on Mac OS X"
26 lines
724 B
Makefile
26 lines
724 B
Makefile
# $NetBSD: Makefile,v 1.36 2014/03/30 13:08:50 taca Exp $
|
|
|
|
DISTNAME= Term-ReadLine-Gnu-1.22
|
|
PKGNAME= p5-${DISTNAME:S/-Gnu//}
|
|
SVR4_PKGNAME= p5trl
|
|
CATEGORIES= devel perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Term/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://search.cpan.org/dist/Term-ReadLine-Gnu/
|
|
COMMENT= Interface to the GNU Readline Library
|
|
LICENSE= ${PERL5_LICENSE} # see README
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
PERL5_PACKLIST= auto/Term/ReadLine/Gnu/.packlist
|
|
|
|
MAKE_PARAMS+= --prefix=${BUILDLINK_PREFIX.readline}
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME:C/a$//}
|
|
|
|
REPLACE_PERL+= Gnu/XS.pm
|
|
|
|
.include "../../devel/readline/buildlink3.mk"
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|