blob: eb250ac574b5069ce0a1a8481371f5c0f8459e6d (
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
39
40
|
# $NetBSD: Makefile,v 1.23 2010/09/14 11:13:16 wiz Exp $
#
DISTNAME= Xdialog-2.3.1
PKGNAME= ${DISTNAME:S/^X/x/}
PKGREVISION= 2
CATEGORIES= x11 misc
MASTER_SITES= http://xdialog.free.fr/
EXTRACT_SUFX= .tar.bz2
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://xdialog.dyns.net/
COMMENT= X11 drop-in replacement for the curses dialog program
PKG_DESTDIR_SUPPORT= user-destdir
USE_TOOLS+= msgfmt
USE_PKGLOCALEDIR= YES
GNU_CONFIGURE= YES
DOCDIR= ${PREFIX}/share/doc/html/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; \
do \
${INSTALL_SCRIPT} ${WRKSRC}/samples/$${f} ${DESTDIR}${EGDIR}; \
done
.include "options.mk"
.include "../../mk/bsd.pkg.mk"
|