c35b9c59bf
030227 Updated selection code in Text widget. Removed support for cut buffers. Added support for CLIPBOARD. Changed keybindings: Ctrl-C = copy selection to clipboard Ctrl-X = cut selection to clipboard Ctrl-V = paste clipboard Page_Up = page up Page_Down = page down Home = beginning of line Ctrl-Home = beginning of file End = end of line Ctrl-End = end of file New configuration option --enable-obsolete-selections reverts to the old code. 030204 Check for the existence of widec.h (c/o Matthias Buelow). 030115 Patches by Alexey I. Froloff: "NeXtish" scrollbar look (thumb and buttons are wider and look more flat). Fixed thumb positioning for Button2 scrolling. Released 0.13.0.
37 lines
967 B
Makefile
37 lines
967 B
Makefile
# $NetBSD: Makefile,v 1.6 2003/03/05 13:04:55 wiz Exp $
|
|
|
|
DISTNAME= neXtaw-0.14.0
|
|
CATEGORIES= x11
|
|
MASTER_SITES= http://siag.nu/pub/neXtaw/
|
|
|
|
MAINTAINER= packages@netbsd.org
|
|
HOMEPAGE= http://siag.nu/neXtaw/
|
|
COMMENT= NeXTstep-like widgets based on the Athena Widget set
|
|
|
|
USE_BUILDLINK2= # defined
|
|
USE_X11BASE= # defined
|
|
GNU_CONFIGURE= # defined
|
|
|
|
USE_LIBTOOL= # defined
|
|
LIBTOOL_OVERRIDE= ${WRKSRC}/libtool
|
|
|
|
DOCDIR= ${PREFIX}/share/doc/${PKGBASE}
|
|
EGDIR= ${PREFIX}/share/examples/${PKGBASE}
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if !empty(MACHINE_PLATFORM:MNetBSD-*-alpha)
|
|
. include "../../lang/gcc/buildlink2.mk"
|
|
.endif
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${DOCDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${DOCDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/doc/FAQ ${DOCDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/doc/README.XAW3D ${DOCDIR}
|
|
${INSTALL_DATA_DIR} ${EGDIR}
|
|
for file in ${WRKSRC}/doc/app-defaults/*; do \
|
|
${INSTALL_DATA} $${file} ${EGDIR}; \
|
|
done
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|