fff61cb6f7
Changes: - (libptytty) fix bug that prevented urxvtd from writing utmp entries when using --fork (reported by Ryan Kavanagh). - security bugfix: window property values could be queried even in secure mode (reported by Phillip Hallam-Baker). - fix build when perl is enabled and fading is disabled. - fix regression that broke continuous scrolling when pressing and holding the scrollbar up or down button, gentoo bug #493992. - increase the maximum length of a command sequence to 32k bytes, to allow longer OSC sequences (previous limit was 2k). - new Ctrl-Meta-c and Ctrl-Meta-v bindings to interact with the CLIPBOARD selection. - new extension: selection-to-clipboard. - the extensions macosx-clipboard and macosx-clipboard-native are deprecated and will be removed in the next release. Support for the clipboard on OS X can be more generally enabled by setting the XQuartz preference to sync the OS X pasteboard and the X11 clipboard.
37 lines
1,021 B
Makefile
37 lines
1,021 B
Makefile
# $NetBSD: Makefile,v 1.50 2014/05/09 17:18:48 morr Exp $
|
|
|
|
DISTNAME= rxvt-unicode-9.20
|
|
CATEGORIES= x11
|
|
MASTER_SITES= http://dist.schmorp.de/rxvt-unicode/ \
|
|
http://dist.schmorp.de/rxvt-unicode/Attic/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://software.schmorp.de/pkg/rxvt-unicode.html
|
|
COMMENT= Clone of rxvt supporting Xft fonts and Unicode
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LANGUAGES= c c++
|
|
USE_TOOLS+= pkg-config
|
|
USE_FEATURES+= snprintf
|
|
|
|
CONFIGURE_ENV+= ac_cv_path_TIC=no
|
|
|
|
CONFIGURE_ARGS+= --enable-256-color
|
|
|
|
INSTALLATION_DIRS+= share/doc/rxvt-unicode share/examples/rxvt-unicode
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/README.FAQ \
|
|
${DESTDIR}${PREFIX}/share/doc/rxvt-unicode
|
|
.for t in rxvt-unicode.termcap rxvt-unicode.terminfo
|
|
${INSTALL_DATA} ${WRKSRC}/doc/etc/${t} \
|
|
${DESTDIR}${PREFIX}/share/examples/rxvt-unicode
|
|
.endfor
|
|
|
|
.include "options.mk"
|
|
|
|
.include "../../x11/libXpm/buildlink3.mk"
|
|
.include "../../x11/libX11/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|