blob: a945d040b098a5f7646990ccfcaa2ac51eb3e1a5 (
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
|
# $NetBSD: Makefile,v 1.28 2001/06/11 06:34:44 jlam Exp $
#
DISTNAME= gnome-pim-1.4.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+= bison-*:../../devel/bison
DEPENDS+= gnome-core>1.4.0:../../x11/gnome-core
USE_GMAKE= YES
USE_LIBTOOL= YES
USE_X11BASE= YES
GNU_CONFIGURE= YES
CPPFLAGS+= -I${LOCALBASE}/include
CONFIGURE_ENV+= LOCALEDIR=${LOCALEDIR}
.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"
|