blob: dbdb5121435c8ad70e9eb2cf96d8e4250677b366 (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# $NetBSD: Makefile,v 1.49 2001/03/27 03:19:52 hubertf Exp $
DISTNAME= libgtop-1.0.9
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= # defined
USE_GMAKE= # defined
USE_LIBTOOL= # defined
USE_LIBINTL= # defined
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= # defined
CONFIGURE_ARGS+= --with-glib-prefix=${LOCALBASE} \
--with-libgtop-guile --with-catgets
CONFIGURE_ENV+= AWK="${AWK}" \
LN_S="${LN} -s" \
PERL="${PERL5}" \
CPPFLAGS="${CPPFLAGS}" \
.include "../../mk/bsd.pkg.mk"
|