b08fd30063
* configure.ac: fix invocation of help2man when it is run by missing * minibuf.c: fix display bugs * minibuf.c: make minibuf_clear always clear; make minibuf_refresh update the content before refreshing the minibuffer. * basic.c: fix crash on out-of-range goto-char and add a test * search.c: note inefficiency of re_search_2 on large buffers * tests: fix an incorrect comment on an interactive test * file.c: set mark on insert-file. * search.c: fix docstring of isearch-backward-regexp Ok aja@
29 lines
605 B
Makefile
29 lines
605 B
Makefile
# $OpenBSD: Makefile,v 1.42 2012/11/14 13:10:41 gonzalo Exp $
|
|
|
|
COMMENT= lightweight Emacs clone
|
|
DISTNAME= zile-2.4.9
|
|
CATEGORIES= editors
|
|
HOMEPAGE= http://www.gnu.org/software/zile/
|
|
|
|
MAINTAINER= Gonzalo L. R. <gonzalo@openbsd.org>
|
|
|
|
# GPLv3
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_GNU:=zile/}
|
|
|
|
WANTLIB += c gc ncursesw
|
|
|
|
LIB_DEPENDS= devel/boehm-gc
|
|
|
|
BUILD_DEPENDS= devel/help2man
|
|
|
|
CONFIGURE_STYLE=gnu
|
|
CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib" \
|
|
CPPFLAGS="-I${LOCALBASE}/include"
|
|
|
|
.include <bsd.port.mk>
|