blob: 5b02d953baf5635259fb994375f0ba04a9254239 (
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
|
# $NetBSD: Makefile,v 1.26 2001/03/27 03:20:07 hubertf Exp $
#
DISTNAME= gnome-pim-1.2.0
CATEGORIES= misc x11 gnome
MASTER_SITES= ${MASTER_SITE_GNOME:=stable/sources/gnome-pim/}
MAINTAINER= rh@netbsd.org
HOMEPAGE= http://www.gnome.org/
COMMENT= Personal Information Manager for GNOME
BUILD_DEPENDS+= autoconf-2.13:../../devel/autoconf
BUILD_DEPENDS+= automake-1.4:../../devel/automake
BUILD_DEPENDS+= bison-*:../../devel/bison
DEPENDS+= gnome-core-*:../../x11/gnome-core
USE_GMAKE= # defined
USE_LIBTOOL= # defined
USE_X11BASE= # defined
GNU_CONFIGURE= # defined
CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" \
LOCALEDIR=${LOCALEDIR}
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"
|