diff options
author | adam <adam@pkgsrc.org> | 2010-06-23 12:52:42 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2010-06-23 12:52:42 +0000 |
commit | f6a9c1eb5e677eb87fe590de5105b9e222ba78e3 (patch) | |
tree | e9cf0179ba013a7d7264756766efa6fc6bc01da2 /editors/joe/Makefile | |
parent | bad76d59653205205b43b8e051f7147cc0efcd1e (diff) | |
download | pkgsrc-f6a9c1eb5e677eb87fe590de5105b9e222ba78e3.tar.gz |
Changes 3.7:
* backspace/DEL means 'n' in replace prompt for better emacs
compatibility
* Menus are now made up of macros instead of options.
* ^T is now a user definable menu system
* Treat \ as a quote character for file I/O. Now you can edit
files like !test with \!test
* Print NULs in default search string. Handle many \s properly.
* Allow backslashes in file names
* Fix %A to print unicode
* Charles Tabony's (vectorshifts's) highlighter stack patch
* ! is relace all in replace prompt
* Turn off UTF-8 when we enter hex mode
* Call ttsig on vfile I/O errors.
* Abort cleanly when malloc returns NULL
* Add reload command to reload file from disk
* Modify configure scrips to use docdir for extra documents and
* Don't use bold yellow, it's bad for white screens
* Fix TeX highlighter: don't highlight "
* Make mail.jsf more forgiving for those of us who still use old UNIX mail
* Fix file rename bugs
* Improve ubop: can reformat a block of paragraphs again. Reformat
of adjacent indented paragraphs working again.
* Improve XML highlighter: allow \r in whitespace
Diffstat (limited to 'editors/joe/Makefile')
-rw-r--r-- | editors/joe/Makefile | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/editors/joe/Makefile b/editors/joe/Makefile index 34fd8fce0d8..cce4fe20259 100644 --- a/editors/joe/Makefile +++ b/editors/joe/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.31 2008/07/14 12:56:03 joerg Exp $ +# $NetBSD: Makefile,v 1.32 2010/06/23 12:52:42 adam Exp $ -DISTNAME= joe-3.5 +DISTNAME= joe-3.7 CATEGORIES= editors MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=joe-editor/} @@ -12,7 +12,18 @@ PKG_DESTDIR_SUPPORT= user-destdir USE_TOOLS+= gmake GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --sysconfdir=${PREFIX:Q}/share/examples +CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR} + +INSTALLATION_DIRS+= ${PKG_SYSCONFDIR}/joe + +EGDIR= ${PREFIX}/share/examples/joe +CONF_FILES= ${EGDIR}/ftyperc ${PKG_SYSCONFDIR}/joe/ftyperc +CONF_FILES+= ${EGDIR}/jicerc.ru ${PKG_SYSCONFDIR}/joe/jicerc.ru +CONF_FILES+= ${EGDIR}/jmacsrc ${PKG_SYSCONFDIR}/joe/jmacsrc +CONF_FILES+= ${EGDIR}/joerc ${PKG_SYSCONFDIR}/joe/joerc +CONF_FILES+= ${EGDIR}/jpicorc ${PKG_SYSCONFDIR}/joe/jpicorc +CONF_FILES+= ${EGDIR}/jstarrc ${PKG_SYSCONFDIR}/joe/jstarrc +CONF_FILES+= ${EGDIR}/rjoerc ${PKG_SYSCONFDIR}/joe/rjoerc .include "../../devel/ncurses/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |