blob: 8c4aa8a41c832b624ccd89e4080b9fdd87b4eaef (
plain) (
blame)
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
|
# New ports collection makefile for: nscache
# Date created: 04 March 2000
# Whom: Kris Kennaway <kris@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= nscache
PORTVERSION= 0.6
CATEGORIES= www
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \
http://www.idata.sk/~ondrej/sw/
MASTER_SITE_SUBDIR= ${PORTNAME}
EXTRACT_SUFX= .tgz
MAINTAINER= kris@FreeBSD.org
USE_X_PREFIX= yes
USE_GNOMENG= yes
WANT_GNOME= yes
USE_AUTOMAKE= yes
AUTOMAKE_ARGS= --include-deps
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LIBS="-L${LOCALBASE}/lib"
CONFIGURE_ARGS= --with-gtk-config=${GTK_CONFIG}
.include <bsd.port.pre.mk>
.if defined(HAVE_GNOME)
USE_GNOME+= gtk12
PKGNAMESUFFIX= -gtk
.else
CONFIGURE_ARGS+= --disable-gnome
.endif
.include <bsd.port.post.mk>
|