openbsd-ports/editors/nano/Makefile
naddy be234de36b Update to 1.2.5. Quote:
This release includes fixes for segfault during filename completion,
justify on systems without regex.h, hangs when the input stream
goes away, and scrolling beyond COLS.  Included are some new keyboard
sequences.
2005-05-20 21:18:13 +00:00

48 lines
1.1 KiB
Makefile

# $OpenBSD: Makefile,v 1.45 2005/05/20 21:18:13 naddy Exp $
COMMENT= "small, easy to use editor"
DISTNAME= nano-1.2.5
CATEGORIES= editors
HOMEPAGE= http://www.nano-editor.org/
MAINTAINER= Christian Weisgerber <naddy@openbsd.org>
MASTER_SITES= http://www.nano-editor.org/dist/v1.2/ \
http://www.ewtoo.org/~astyanax/nano/dist/v1.2/
# GPL
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
WANTLIB= c ncurses
FLAVORS= slang
FLAVOR?=
MODULES= devel/gettext
FAKE= lib
CONFIGURE_STYLE=autoconf
AUTOCONF_VERSION=2.59
CONFIGURE_ENV= CPPFLAGS="-I${DEPBASE}/include" \
LDFLAGS="-L${DEPBASE}/lib"
CONFIGURE_ARGS= --enable-all
.if ${FLAVOR:L:Mslang}
LIB_DEPENDS+= slang.14::devel/libslang
CONFIGURE_ARGS+=--with-slang="${DEPBASE}"
WANTLIB+= m
.endif
post-install:
perl -i -pe 's:\$$SYSCONFDIR:${SYSCONFDIR}:g' \
${PREFIX}/man/man5/nanorc.5 \
${PREFIX}/man/man1/nano.1 \
${PREFIX}/info/nano.info
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/nano
${INSTALL_DATA} ${WRKSRC}/nanorc.sample ${PREFIX}/share/examples/nano
.include <bsd.port.mk>