blob: 5e0c27a5751ab3f38c17dc3f0b5889a4247b4930 (
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
|
# $NetBSD: Makefile,v 1.18 2003/03/31 18:48:43 jmmv Exp $
#
DISTNAME= wxGTK-2.4.0
CATEGORIES= x11
MASTER_SITES= ftp://biolpc22.york.ac.uk/pub/2.4.0/
MAINTAINER= tsarna@netbsd.org
HOMEPAGE= http://www.wxwindows.org
COMMENT= GTK-based implementation of the wxWindows GUI library
USE_BUILDLINK2= # defined
USE_PKGLOCALEDIR= # defined
USE_X11= # defined
USE_LIBTOOL= # defined
GNU_CONFIGURE= # defined
CONFIGURE_ARGS+= --with-gtk
CONFIGURE_ARGS+= --with-libjpeg=sys
CONFIGURE_ARGS+= --with-zlib=sys
CONFIGURE_ARGS+= --with-libpng=sys
CONFIGURE_ARGS+= --with-libtiff=sys
MAKE_ENV+= PKGLOCALEDIR="${PKGLOCALEDIR}"
CPPFLAGS+= -Dunix=1 # src/common/unzip.c needs this
DOCDIR= ${PREFIX}/share/doc/wx/gtk
post-install:
${INSTALL_DATA_DIR} ${DOCDIR}
${INSTALL_DATA} ${WRKSRC}/LICENCE.txt ${DOCDIR}/LICENSE
.include "../../graphics/jpeg/buildlink2.mk"
.include "../../graphics/png/buildlink2.mk"
.include "../../graphics/tiff/buildlink2.mk"
.include "../../x11/gtk/buildlink2.mk"
.include "../../mk/pthread.buildlink2.mk"
.include "../../mk/bsd.pkg.mk"
|