8de1dc37df
Changes include: - Fixed the ordering of tests for versions of Berkeley db. This will try to use db2, then db1.85, then db1. If you got gnome-libs-1.0.15 and had problems with metadata in the Midnight Commander, please use this version instead (Federico). - Fixes for the installation of HTML/SGML documentation (Karl). - Fixes to the MDI framework (Jaka). - Fixes to the GnomeFileEntry widget (Federico). - Updated translations (Pablo, Vincent, Birger). - gnome-hello dropped from distribution, use GnomeHello as an example instead (Havoc) - GnomeSegv activated (Elliot, Havoc), this will provide a dialog box telling people that the application just crashed and point them to the gnome web site. - Gnome Dentry Editor i18n fixes (George) - Exports constructor routines for most widgets - Memory leak fixes in the Canvas/AA (Federico) - --disable-crash-dialog option (Havoc) - Large const-ization of incoming parameters work from Hebert. - Lots of bug fixes from Elliot and Havoc as part of the Bugathlon. - Gnome-metadata is thread safe now (Tom Tromey) - Gnome-Dentry fixed for i18n (George) - Gnome-Mime key duplication fixed (Bertrand) - Support GNOME_PATH variable. It enables you to install different GNOME packages in different locations in the system and still get gnome-config to recognize your libraries properly - gnome-config now wraps the list of libraries, in an attempt to fit in your screen (me, Raja). - LIbArt started to be documented (Raph) - gnome.1 man page updated, gnome-config.1 man page updated - gnome-mime.5 man page included - Gnome-dev-info files moved to their own directory (Karl) - Added Gnome-MDI signal docs (George) - GnomePixmap, GnomeScores, GnomeDock, GnomeProcBar: Documented by George. - Touchups to GnomeDialog, GnomeClient, GnomeApp from George. - Now GOAD uses the GNOME_PATH variable as a list of directories that are the root of GNOME installations and the GNOME_GNORBA_PATH for locating precisely CORBA servers - Cookie support fixed (Elliot)
45 lines
1.1 KiB
Makefile
45 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.31 1999/09/03 07:19:24 rh Exp $
|
|
#
|
|
|
|
DISTNAME= gnome-libs-1.0.16
|
|
CATEGORIES= x11 gnome
|
|
MASTER_SITES= ${MASTER_SITE_GNOME:=gnome-1.0/sources/}
|
|
|
|
MAINTAINER= tron@netbsd.org
|
|
HOMEPAGE= http://www.gnome.org/
|
|
|
|
DEPENDS+= ORBit-0.4.3:../../corba/ORBit
|
|
DEPENDS+= imlib-1.9.4:../../graphics/imlib
|
|
DEPENDS+= xpm-3.4k:../../graphics/xpm
|
|
|
|
NOT_FOR_PLATFORM= *-*-alpha # problems with gtk
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_X11BASE= yes
|
|
USE_GMAKE= yes
|
|
USE_LIBTOOL= yes
|
|
LDFLAGS+= "-L${LOCALBASE}/lib"
|
|
CONFIGURE_ARGS+= --localstatedir=${LOCALSTATEDIR} \
|
|
--with-glib-prefix=${LOCALBASE}
|
|
CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LOCALBASE=${LOCALBASE} \
|
|
X11BASE=${X11BASE}
|
|
|
|
LOCALSTATEDIR= /var/gnome
|
|
|
|
PLIST_SRC= ${WRKDIR}/PLIST
|
|
|
|
pre-build:
|
|
(cd ${WRKSRC}/support; ${GMAKE} gnomesupport.h)
|
|
|
|
post-install:
|
|
${MKDIR} ${LOCALSTATEDIR}
|
|
${SED} -e 's#@@LOCALSTATEDIR@@#${LOCALSTATEDIR}#' \
|
|
<${PKGDIR}/PLIST >${PLIST_SRC}
|
|
@cd ${PREFIX}; find lib -name 'libgnome.so.*' >>${PLIST_SRC}
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|
|
|
|
.if (${OBJECT_FMT} == a.out)
|
|
MAKE_ENV+= A_OUT_STATIC=-static
|
|
.endif
|