b9c3c36779
2019.08.25 - GNU nano 4.4 "Hagelslag" • At startup, the cursor can be put on the first or last occurrence of a string by preceding the filename with +/string or +?string. • When automatic hard-wrapping occurs (--breaklonglines), any leading quoting characters will be automatically copied to the new line. • M-6 works again also when the cursor is at end of buffer.
40 lines
1.1 KiB
Makefile
40 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.83 2019/09/09 16:04:17 wiedi Exp $
|
|
|
|
DISTNAME= nano-4.4
|
|
CATEGORIES= editors
|
|
MASTER_SITES= https://www.nano-editor.org/dist/v${PKGVERSION_NOREV:R}/
|
|
EXTRACT_SUFX= .tar.xz
|
|
|
|
MAINTAINER= wiedi@frubar.net
|
|
HOMEPAGE= https://www.nano-editor.org/
|
|
COMMENT= Small and friendly text editor (a free replacement for Pico)
|
|
LICENSE= gnu-gpl-v3
|
|
|
|
USE_PKGLOCALEDIR= yes
|
|
USE_TOOLS+= msgfmt gmake
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --enable-color
|
|
CONFIGURE_ARGS+= --enable-multibuffer
|
|
CONFIGURE_ARGS+= --enable-nanorc
|
|
CONFIGURE_ARGS+= --enable-extra
|
|
|
|
INFO_FILES= yes
|
|
|
|
# Looks like that IRIX 5.x lacks vsnprintf() functions,
|
|
# which are required to make this work, so glib2 is used instead.
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if !empty(MACHINE_PLATFORM:MIRIX-5*)
|
|
. include "../../devel/glib2/buildlink3.mk"
|
|
.endif
|
|
|
|
.include "options.mk"
|
|
|
|
INSTALLATION_DIRS+= share/examples/nano
|
|
CONF_FILES+= share/examples/nano/nanorc ${PKG_SYSCONFDIR}/nanorc
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/doc/sample.nanorc ${DESTDIR}${PREFIX}/share/examples/nano/nanorc
|
|
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|