blob: e6016cb370198b55ea1dde348cabbc05080467d0 (
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
|
# $NetBSD: Makefile,v 1.19 2012/02/28 15:11:39 hans Exp $
#
.include "../../x11/wxGTK28/Makefile.common"
PKGREVISION= 15
PKGNAME= ${DISTNAME:S/wxGTK/wxGTK28/}
COMMENT= GTK-based implementation of the wxWidgets GUI library
BUILD_TARGET= all
INSTALL_TARGET= install
INSTALLATION_DIRS= ${DOCDIR}
REPLACE_SH= wx-config.in wx-config-inplace.in
post-build:
set -e; cd ${WRKSRC}/locale; \
for lang in `echo *.po` ; do \
[ $${lang} = "wxstd.po" ] && continue; \
${TOOLS_PATH.msgfmt} -c -o $${lang%.po}.mo $${lang}; \
done
set -e; cd ${WRKSRC}/locale/msw; \
for lang in it; do \
${TOOLS_PATH.msgfmt} -c -o $${lang}.mo $${lang}.po; \
done
post-install:
${INSTALL_DATA} ${WRKSRC}/docs/licence.txt ${DESTDIR}${DOCDIR}
.include "../../mk/oss.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|