blob: f82f4f034aa31bc727353def01a00d59136d750d (
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
56
57
58
59
60
|
# $NetBSD: Makefile,v 1.26 2001/08/26 10:32:20 skrll Exp $
DISTNAME= gnome-games-1.4.0.2
CATEGORIES= games gnome
MASTER_SITES= ${MASTER_SITE_GNOME:=stable/sources/gnome-games/}
MAINTAINER= tron@netbsd.org
HOMEPAGE= http://www.gnome.org/
COMMENT= GNOME games collection
BUILD_DEPENDS+= autoconf-2.13:../../devel/autoconf
BUILD_DEPENDS+= automake>=1.4:../../devel/automake
DEPENDS+= gnome-core>1.4.0:../../x11/gnome-core
# Required for ports which don't build "libgtop".
DEPENDS+= guile-[0-9]*:../../lang/guile
BUILD_USES_MSGFMT= YES
CONFLICTS= xbill-*
USE_GMAKE= YES
USE_X11BASE= YES
USE_CURSES= YES
USE_LIBTOOL= YES
USE_LIBINTL= YES
LTCONFIG_OVERRIDE= ${WRKSRC}/ltconfig
GNU_CONFIGURE= YES
CONFIGURE_ENV+= LOCALEDIR=${LOCALEDIR}
CONFIGURE_ARGS+= --localstatedir=/var
CFLAGS+= -I${LOCALBASE}/include
INSTALL_FILE= ${WRKDIR}/INSTALL
AUTOGEN_ENV= NOCONFIGURE=1
AUTOGEN_ENV+= srcdir=${WRKSRC}
pre-configure:
cd ${WRKSRC} && ${SETENV} ${AUTOGEN_ENV} ${SH} macros/autogen.sh
post-build:
${SED} -e 's#@@INSTALL@@#${INSTALL}#' \
${PKGDIR}/INSTALL >${INSTALL_FILE}
.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
.if ${NEED_NCURSES} == "YES"
CONFIGURE_ARGS+=--with-ncurses=${LOCALBASE}
.endif
.include "../../mk/bsd.pkg.mk"
|