baeb54adea
Notable changes are: February 27, 2001: ================= * Released LibGTop 1.0.12 "Gerolzhofen". - fix for Solaris 8 from Laszlo PETER (msg_limits, sem_limits). - fix for FreeBSD 4.2 from Rolf Grossmann (FreeBSD now uses `_KERNEL' instead of `KERNEL'). Bug #51334. - for BSDI, comment out `subnet' field in netload; this should make it compile, but there may be other problems. Bug #13345. This release is for GNOME 1.4 Beta2. February 14, 2001: ================= * Released LibGTop 1.0.11 "Jasmin": [The release which was supposed to be called "Gerolzhofen".] - merged in the Solaris code from LIBGTOP_1_1_2_PATCHES. - minor OpenBSD fixes. - again a bunch of updated translations. Please test the Solaris stuff and report and bugs and problems as soon as possible; I'll make a new release for the 2nd beta of GNOME 1.4 if necessary. November 20, 2000: ================= * Released LibGTop 1.0.10 "November Rain": - this release contains a bunch of updated translations.
54 lines
1.7 KiB
Makefile
54 lines
1.7 KiB
Makefile
# $NetBSD: Makefile,v 1.51 2001/04/06 21:52:11 rh Exp $
|
|
|
|
DISTNAME= libgtop-1.0.12
|
|
CATEGORIES= devel gnome
|
|
MASTER_SITES= ${MASTER_SITE_GNOME:=stable/sources/libgtop/}
|
|
|
|
MAINTAINER= tron@netbsd.org
|
|
HOMEPAGE= http://www.home-of-linux.org/gnome/libgtop/
|
|
COMMENT= library to retrieve system information, used in GNOME
|
|
|
|
BUILD_DEPENDS= perl-5.*:../../lang/perl5
|
|
BUILD_USES_MSGFMT= yes
|
|
DEPENDS+= gnome-libs-*:../../x11/gnome-libs
|
|
DEPENDS+= guile-[0-9]*:../../lang/guile
|
|
|
|
NOT_FOR_PLATFORM= SunOS-*-*
|
|
OSVERSION_SPECIFIC= yes
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
.if ${OPSYS} == NetBSD
|
|
.if (${MACHINE_ARCH} != alpha) && (${MACHINE_ARCH} != arm32) && \
|
|
(${MACHINE_ARCH} != i386) && (${MACHINE_ARCH} != m68k) && \
|
|
(${MACHINE_ARCH} != mipsel) && (${MACHINE_ARCH} != powerpc) && \
|
|
(${MACHINE_ARCH} != sparc)
|
|
IGNORE= "${PKGNAME} has not yet been ported to ${MACHINE_ARCH}."
|
|
IGNORE+= "Please look at /usr/include/${MACHINE_ARCH}/pcb.h"
|
|
IGNORE+= "and update patches/patch-al appropriately."
|
|
IGNORE+= "(More information can be found in libgtop.info.)"
|
|
.endif
|
|
.endif
|
|
|
|
USE_X11BASE= YES
|
|
USE_GMAKE= YES
|
|
USE_LIBTOOL= YES
|
|
USE_LIBINTL= YES
|
|
LTCONFIG_OVERRIDE= ${WRKSRC}/ltconfig
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include # libintl.h
|
|
|
|
# The following flags are for debugging purposes. They don't need to
|
|
# be used unless you are actively developing/debugging libgtop.
|
|
#CPPFLAGS+= -DLIBGTOP_ENABLE_DEBUG -DLIBGTOP_FATAL_WARNINGS
|
|
#CFLAGS+= -g
|
|
#LDFLAGS+= -g
|
|
|
|
GNU_CONFIGURE= YES
|
|
CONFIGURE_ARGS+= --with-glib-prefix=${LOCALBASE}
|
|
CONFIGURE_ARGS+= --with-libgtop-guile --with-catgets
|
|
CONFIGURE_ENV+= AWK="${AWK}"
|
|
CONFIGURE_ENV+= LN_S="${LN} -s"
|
|
CONFIGURE_ENV+= PERL="${PERL5}"
|
|
CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS}"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|