summaryrefslogtreecommitdiff
path: root/misc/dvtm/Makefile
diff options
context:
space:
mode:
authorobache <obache@pkgsrc.org>2012-08-14 11:58:01 +0000
committerobache <obache@pkgsrc.org>2012-08-14 11:58:01 +0000
commit4f6c3b66879fd5b55309ee7a82461476829ad03c (patch)
tree9ddcb178316a7969f22ca5999546c8ae94acaefc /misc/dvtm/Makefile
parentca63714f0ec7f67e2f24644b46b06403fbe1fff0 (diff)
downloadpkgsrc-4f6c3b66879fd5b55309ee7a82461476829ad03c.tar.gz
Update dvtm to 0.7.
PR 46585 by maintainer Leonardo Taccari. Pkgsrc changes: * Switched to <../..mk/curses.buildlink3.mk>: now dvtm also works with curses(3). * Reset maintainership to pkgsrc-users@NetBSD.org. Changes: * on resize backfill text from the buffer if possible * fix for a segfault in resize code * support for the 8 basic highlighted colors * compilation fixes for BSD curses and pdcurses (however the latter doesn't actually work due to the select(2) driven event loop of dvtm) * some AIX fixes * graphmode fixes * fibonacci layout (not enabled by default) * dynamic color changes depending on the window title configurable in config.h * window borders are now drawn using the colors specified in config.h * rudimentary mouse support, that is mouse events will be passed to the underlying terminal application * relicense terminal emulation component from LGPL to ISC * various source code cleanups (code reviews and patches are always welcome)
Diffstat (limited to 'misc/dvtm/Makefile')
-rw-r--r--misc/dvtm/Makefile28
1 files changed, 14 insertions, 14 deletions
diff --git a/misc/dvtm/Makefile b/misc/dvtm/Makefile
index 01a6f31a87c..b668a9d01c9 100644
--- a/misc/dvtm/Makefile
+++ b/misc/dvtm/Makefile
@@ -1,11 +1,11 @@
-# $NetBSD: Makefile,v 1.5 2011/08/31 12:54:58 obache Exp $
+# $NetBSD: Makefile,v 1.6 2012/08/14 11:58:01 obache Exp $
#
-DISTNAME= dvtm-0.6
+DISTNAME= dvtm-0.7
CATEGORIES= misc
MASTER_SITES= http://www.brain-dump.org/projects/dvtm/
-MAINTAINER= leot1990@users.sourceforge.net
+MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.brain-dump.org/projects/dvtm/
COMMENT= Dynamic virtual terminal manager
LICENSE= mit
@@ -14,19 +14,19 @@ PKG_DESTDIR_SUPPORT= user-destdir
NO_CONFIGURE= yes
USE_LANGUAGES= c99
-USE_NCURSES= yes
-SUBST_CLASSES+= makefile
-SUBST_STAGE.makefile= pre-build
-SUBST_MESSAGE.makefile= Fixing config.mk
-SUBST_FILES.makefile= config.mk
-SUBST_SED.makefile= -e 's,/usr/local,${PREFIX},g'
-SUBST_SED.makefile+= -e 's,share/man,${PKGMANDIR},g'
-SUBST_SED.makefile+= -e 's,^CFLAGS =,CFLAGS +=,'
-SUBST_SED.makefile+= -e 's,^LDFLAGS =,LDFLAGS +=,'
-SUBST_SED.makefile+= -e 's/cc/${CC:Q}/'
+SUBST_CLASSES+= config
+SUBST_STAGE.config= pre-build
+SUBST_MESSAGE.config= Fixing config.mk
+SUBST_FILES.config= config.mk
+SUBST_SED.config= -e 's,/usr/local,${PREFIX},'
+SUBST_SED.config+= -e 's,share/man,${PKGMANDIR},'
+SUBST_SED.config+= -e '/LIBS/s/-lncursesw/-lcurses/'
+SUBST_SED.config+= -e 's,^CFLAGS =,CFLAGS +=,'
+SUBST_SED.config+= -e 's,^LDFLAGS =,LDFLAGS +=,'
+SUBST_SED.config+= -e 's/cc/${CC:Q}/'
INSTALLATION_DIRS= bin ${PKGMANDIR}/man1
-.include "../../devel/ncursesw/buildlink3.mk"
+.include "../../mk/curses.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"