A GTK+-based implementation of the wxWindows cross-platform GUI library. wxWindows is a set of libraries that allows C++ applications to compile and run on several different types of computer, with minimal source code changes. There is one library per supported GUI (such as Windows, GTK+, Motif, and Mac). wxWindows is free, well-established, well-documented, and very broad in its coverage of GUI functionality. It has some extras that make it stand out from the crowd, such as the many convenience dialogs, built-in HTML display and printing, virtual filesystems, easy-to-use OLE automation controller class, Open GL support, and many other features that make it easier to write modern and user-friendly applications. There is also a python interface available, wxPython (see the py-wxWindows pkg).
33 lines
935 B
Makefile
33 lines
935 B
Makefile
# $NetBSD: buildlink3.mk,v 1.1.1.1 2004/03/25 17:12:28 marc Exp $
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
|
|
WXGTK_BUILDLINK3_MK:= ${WXGTK_BUILDLINK3_MK}+
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if !empty(BUILDLINK_DEPTH:M+)
|
|
BUILDLINK_DEPENDS+= wxGTK
|
|
.endif
|
|
|
|
BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:NwxGTK}
|
|
BUILDLINK_PACKAGES+= wxGTK
|
|
|
|
.if !empty(WXGTK_BUILDLINK3_MK:M+)
|
|
BUILDLINK_DEPENDS.wxGTK+= wxGTK>=2.5.1
|
|
BUILDLINK_PKGSRCDIR.wxGTK?= ../../wip/wxgtk-devel
|
|
.endif # WXGTK_BUILDLINK3_MK
|
|
|
|
.include "../../devel/SDL/buildlink3.mk"
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../graphics/MesaLib/buildlink3.mk"
|
|
.include "../../graphics/jpeg/buildlink3.mk"
|
|
.include "../../graphics/png/buildlink3.mk"
|
|
.include "../../graphics/tiff/buildlink3.mk"
|
|
|
|
.if !empty(WXGTK_USE_GTK1:M[Yy][Ee][Ss])
|
|
. include "../../x11/gtk/buildlink3.mk"
|
|
.else
|
|
. include "../../x11/gtk2/buildlink3.mk"
|
|
.endif
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//}
|