blob: 23e9136bdae272fc950dcd720718a064beace885 (
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
31
32
33
34
35
36
37
38
|
# $NetBSD: Makefile,v 1.47 2017/02/12 06:26:16 ryoon Exp $
#
DISTNAME= Xdialog-2.3.1
PKGNAME= ${DISTNAME:S/^X/x/}
PKGREVISION= 24
CATEGORIES= x11 misc
MASTER_SITES= http://xdialog.free.fr/
EXTRACT_SUFX= .tar.bz2
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://xdialog.free.fr/
COMMENT= X11 drop-in replacement for the curses dialog program
LICENSE= gnu-gpl-v2
USE_TOOLS+= msgfmt
USE_PKGLOCALEDIR= YES
GNU_CONFIGURE= YES
DOCDIR= ${PREFIX}/share/doc/xdialog
EGDIR= ${PREFIX}/share/examples/xdialog
CHECK_PORTABILITY_SKIP+= samples/*
INSTALLATION_DIRS= ${DOCDIR} ${EGDIR}
post-install:
cd ${WRKSRC}/doc && ${INSTALL_DATA} *.html *.png ${DESTDIR}${DOCDIR}
.for f in Xmessage Xmore buildlist calendar chain checklist \
dselect editbox fselect gauge infobox infobox2 inputbox \
logbox logbox2 login menubox msgbox radiolist rangebox \
tailbox textbox timebox treeview yesno
${INSTALL_SCRIPT} ${WRKSRC}/samples/${f} ${DESTDIR}${EGDIR}
.endfor
.include "options.mk"
.include "../../mk/bsd.pkg.mk"
|