blob: f16a7c0956ff8869fb7ceba6308a7bf9634a29da (
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
|
# $NetBSD: Makefile,v 1.16 2001/03/27 03:20:17 hubertf Exp $
DISTNAME= gtop-1.0.9
CATEGORIES= sysutils gnome
MASTER_SITES= ${MASTER_SITE_GNOME:=stable/sources/gtop/}
MAINTAINER= tron@netbsd.org
COMMENT= GNOME system monitor - top like, memory graphs, processes detailed view
BUILD_DEPENDS+= autoconf-2.13:../../devel/autoconf
BUILD_DEPENDS+= automake-1.4:../../devel/automake
BUILD_USES_MSGFMT= yes
DEPENDS+= gnome-core>=1.2.0:../../x11/gnome-core
DEPENDS+= libgtop>=1.0.9:../../devel/libgtop
OSVERSION_SPECIFIC= YES
USE_GMAKE= YES
USE_X11BASE= YES
USE_LIBTOOL= YES
USE_LIBINTL= YES
GNU_CONFIGURE= YES
LTCONFIG_OVERRIDE= ${WRKSRC}/ltconfig
CONFIGURE_ENV+= LOCALEDIR=${LOCALEDIR}
CFLAGS+= -I${LOCALBASE}/include
AUTOGEN_ENV= NOCONFIGURE=1
AUTOGEN_ENV+= srcdir=${WRKSRC}
pre-configure:
cd ${WRKSRC} && ${SETENV} ${AUTOGEN_ENV} ${SH} macros/autogen.sh
.include "../../mk/bsd.prefs.mk"
# The directory in which locale files are found is:
#
# ${PREFIX}/${LOCALEDIR}/locale/<lang>/LC_MESSAGES
#
.if ${OPSYS} == "SunOS"
LOCALEDIR= lib
.else
LOCALEDIR= share
.endif
.include "../../mk/bsd.pkg.mk"
|