7b899ce8ac
Changes: 1.2.10: * Gtk::Editable: removed default arg values from implementation, as suggested by Otmar Struwe. This allows it to build with gcc 3.1 1.2.9: * Gtk::SArray_Helpers::Traits<T>: Added specializations for 'const T*', 'T *const', 'const T *const' and 'const T[N]', so that the inofficial RedHat GCC 2.96 chooses the correct one. Release: Gtk-- 1.2.8 * CList_Helpers::Row::Row() implemented, not just declared. (Murray Cumming) * FontSelection::get_font_name(): Prevent crash when GTK+ returns 0. (Joe Yandle) * Fixed memory leak in Gtk::Editable::get_chars() (Gergo) * Gtk::Widget::get_toplevel is more cautious if the return value is not a Gtk::Window* (Gergo) Release: Gtk-- 1.2.7 * Minor gtkmmproc install fix. (Grumegargler) * Lots of reference documentation text added, based on the GTK+ reference documentation. (Jason M'Sadoques) * gtkmm-config does not give -I/usr/include, which should be implicit if necessary, and which overrides the implicit gcc replacement system headers if used. Apparently this is useful for gcc 3.0, and is what gtk+ does.(Daniel Elstner) Release: Gtk-- 1.2.6 Skipped. Release: Gtk-- 1.2.5 * Fixes for code generator. * Fixes for RedHat 7.0 configure bug. * Numerous patches to clean up code and improve appearance. * Added SpinButton::update() (Augustin Ferrin Pozuelo) * Menushell namespace fixes (jaycox) * Fixes for gtk--.m4 (srittau) * Major CTree fixes * CTree::selection() fixed. (Murray Cumming) * Added CTree::{Row,Column}::moveto() * Fix for CTree::RowList::end() (Daniel Elstner) * Documentation fixes (Falk Hueffner) * TreeItem patch (Joe Yandle) Converted to buildlink2 by me.
36 lines
889 B
Makefile
36 lines
889 B
Makefile
# $NetBSD: Makefile,v 1.25 2002/09/11 21:53:46 wiz Exp $
|
|
#
|
|
|
|
DISTNAME= gtkmm-1.2.10
|
|
PKGNAME= gtk---1.2.10
|
|
CATEGORIES= x11 devel
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=gtkmm/} \
|
|
${MASTER_SITE_GNOME:=stable/sources/gtkmm/}
|
|
|
|
MAINTAINER= bsieker@freenet.de
|
|
HOMEPAGE= http://gtkmm.sourceforge.net/
|
|
COMMENT= C++ wrapper for GTK+
|
|
|
|
BUILD_DEPENDS+= m4>=1.4:../../devel/m4
|
|
|
|
USE_X11BASE= YES
|
|
|
|
USE_BUILDLINK2= YES
|
|
GNU_CONFIGURE= YES
|
|
USE_PERL5= build
|
|
USE_GMAKE= YES
|
|
USE_LIBTOOL= YES
|
|
LTCONFIG_OVERRIDE= ${WRKSRC}/scripts/ltconfig
|
|
CONFIGURE_ARGS= --enable-static
|
|
|
|
M4= ${LOCALBASE}/bin/gm4
|
|
PLIST_SUBST+= LOCALBASE=${LOCALBASE}
|
|
|
|
post-install:
|
|
${TEST} ${PREFIX} = ${LOCALBASE} || \
|
|
${LN} -fs ${PREFIX}/share/aclocal/gtk--.m4 \
|
|
${LOCALBASE}/share/aclocal/gtk--.m4
|
|
|
|
.include "../../devel/libsigc++/buildlink2.mk"
|
|
.include "../../x11/gtk/buildlink2.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|