Tue Jan 3 17:47:56 2017 UTC ()
Move to the curses framework.


(roy)
diff -r1.12 -r1.13 pkgsrc/editors/heme/Makefile

cvs diff -r1.12 -r1.13 pkgsrc/editors/heme/Makefile (expand / switch to unified diff)

--- pkgsrc/editors/heme/Makefile 2015/08/18 07:31:06 1.12
+++ pkgsrc/editors/heme/Makefile 2017/01/03 17:47:56 1.13
@@ -1,26 +1,28 @@ @@ -1,26 +1,28 @@
1# $NetBSD: Makefile,v 1.12 2015/08/18 07:31:06 wiz Exp $ 1# $NetBSD: Makefile,v 1.13 2017/01/03 17:47:56 roy Exp $
2# 2#
3 3
4DISTNAME= heme-0.4.2 4DISTNAME= heme-0.4.2
5PKGREVISION= 2 5PKGREVISION= 3
6CATEGORIES= editors 6CATEGORIES= editors
7MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=heme/} 7MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=heme/}
8 8
9MAINTAINER= pkgsrc-users@NetBSD.org 9MAINTAINER= pkgsrc-users@NetBSD.org
10HOMEPAGE= http://sourceforge.net/projects/heme/ 10HOMEPAGE= http://sourceforge.net/projects/heme/
11COMMENT= Fast and portable console hex editor 11COMMENT= Fast and portable console hex editor
12LICENSE= gnu-gpl-v2 12LICENSE= gnu-gpl-v2
13 13
14BUILD_TARGET= heme 14BUILD_TARGET= heme
15USE_NCURSES= chgat 
16USE_TOOLS+= gmake 15USE_TOOLS+= gmake
17 16
 17USE_CURSES= chgat
 18FAKE_NCURSES= yes
 19
18INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 20INSTALLATION_DIRS= bin ${PKGMANDIR}/man1
19 21
20.include "../../devel/ncurses/buildlink3.mk" 22.include "../../mk/curses.buildlink3.mk"
21 23
22do-install: 24do-install:
23 ${INSTALL_PROGRAM} ${WRKSRC}/heme ${DESTDIR}${PREFIX}/bin 25 ${INSTALL_PROGRAM} ${WRKSRC}/heme ${DESTDIR}${PREFIX}/bin
24 ${INSTALL_MAN} ${WRKSRC}/heme.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1 26 ${INSTALL_MAN} ${WRKSRC}/heme.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
25 27
26.include "../../mk/bsd.pkg.mk" 28.include "../../mk/bsd.pkg.mk"