blob: ef150835cd6e723ae78aa3b5072dbb9134193ba5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# $NetBSD: Makefile,v 1.13 2002/09/21 01:00:58 jlam Exp $
DISTNAME= dialog-0.6z
CATEGORIES= misc
MASTER_SITES= ${MASTER_SITE_SUNSITE:=utils/shell/}
MAINTAINER= jlam@netbsd.org
COMMENT= Display dialog boxes from shell scripts
USE_BUILDLINK2= # defined
USE_GMAKE= # defined
INCOMPAT_CURSES= NetBSD-1.5-* NetBSD-1.5.*-*
EGDIR= ${PREFIX}/share/examples/dialog
EGFILES= checklist guage infobox inputbox menubox msgbox
EGFILES+= radiolist textbox yesno
post-install:
${INSTALL_DATA_DIR} ${EGDIR}
cd ${WRKSRC}/samples; for file in ${EGFILES}; do \
${MV} $${file} $${file}.tmp; \
${SED} "s|\.\./dialog|${PREFIX}/bin/dialog|g" \
$${file}.tmp > $${file}; \
${RM} $${file}.tmp; \
${INSTALL_SCRIPT} $${file} ${EGDIR}; \
done
.include "../../devel/ncurses/buildlink2.mk"
.include "../../mk/bsd.pkg.mk"
|