blob: b6e3973c80b7420037b96e50fd8bc39c0384e48f (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
# New ports collection makefile for: gnubiff
# Date created: 3 May 2004
# Whom: Tim Bishop <tim@bishnet.net>
#
# $FreeBSD$
#
PORTNAME= gnubiff
PORTVERSION= 2.1.7
CATEGORIES= mail
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_EXTENDED}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= tdb@FreeBSD.org
COMMENT= A mail notification program for Gnome
LIB_DEPENDS= popt.0:${PORTSDIR}/devel/popt \
fam.0:${PORTSDIR}/devel/fam
USE_X_PREFIX= yes
USE_GNOME= intlhack libglade2 esound
USE_GMAKE= yes
GNU_CONFIGURE= yes
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib" \
CXXFLAGS="-Wno-long-long"
# CXXFLAGS needed to work round issue with gcc and openssl 0.9.8a
# /usr/local/include/openssl/sha.h:173: error: ISO C++ does not support `long long'
MAN1= gnubiff.1
INFO= gnubiff
.ifdef(WITH_GNUBIFF_PASSWORD)
CONFIGURE_ARGS+= --with-password
.endif
# This application can dock in the GNOME panel, or it can not.
# Only install support if gnomepanel is already installed.
WANT_GNOME= yes
.include <bsd.port.pre.mk>
.if ${HAVE_GNOME:Mgnomepanel}!=""
USE_GNOME+= gnomepanel gconf2 gnomeprefix gnomehack
PKGNAMESUFFIX+= -gnome
PLIST_SUB+= SHAREDIR="share/gnome"
PLIST_SUB+= BONOBODIR="libdata/bonobo"
PLIST_SUB+= WITH_GNOME=""
.else
CONFIGURE_ARGS+= --disable-gnome
PLIST_SUB+= SHAREDIR="share"
PLIST_SUB+= BONOBODIR="lib/bonobo"
PLIST_SUB+= WITH_GNOME="@comment "
.endif
.include <bsd.port.post.mk>
|