blob: 9fd4e235504bb30a07ee7682c2d8fd105690f31d (
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
61
62
63
64
65
66
67
68
69
70
|
# $NetBSD: Makefile,v 1.17 2006/01/05 17:46:49 gdt Exp $
#
DISTNAME= mail-notification-2.0
PKGREVISION= 1
CATEGORIES= mail gnome
MASTER_SITES= http://savannah.nongnu.org/download/mailnotify/
MAINTAINER= gdt@NetBSD.org
HOMEPAGE= http://www.nongnu.org/mailnotify/
COMMENT= Status icon that provides new mail notifications
GNU_CONFIGURE= YES
USE_DIRS+= gnome2-1.5
USE_TOOLS+= gmake pkg-config
USE_PKGLOCALEDIR= YES
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR:Q}
GCONF2_SCHEMAS= mail-notification.schemas
EGDIR= ${PREFIX}/share/examples/mail-notification
CONF_FILES= ${EGDIR}/sound/events/mail-notification.soundlist \
${PKG_SYSCONFDIR}/sound/events/mail-notification.soundlist
PKG_OPTIONS_VAR= PKG_OPTIONS.mail-notification
PKG_SUPPORTED_OPTIONS= inet6 sasl ssl
.include "../../mk/bsd.prefs.mk"
.include "../../mk/bsd.options.mk"
# Whether to add IPv6 support.
.if empty(PKG_OPTIONS:Minet6)
CONFIGURE_ARGS+= --disable-ipv6
.endif
# Whether to add SASL2 support.
.if !empty(PKG_OPTIONS:Msasl)
. include "../../security/cyrus-sasl2/buildlink3.mk"
.else
CONFIGURE_ARGS+= --disable-sasl
.endif
# Whether to add SSL support.
.if !empty(PKG_OPTIONS:Mssl)
. include "../../security/openssl/buildlink3.mk"
.else
CONFIGURE_ARGS+= --disable-ssl
.endif
# The build requires msgfmt (gettext, not gettext-lib).
# Gettext 0.14.4 and 0.11.5 are ok, and 0.10.35 is not.
# Upstream maintainer indicates that 0.10.36 should suffice.
# BUILD_USES_MSGFMT has no wasy to require newer gettext.
BUILD_DEPENDS+= gettext>=0.11.5:../../devel/gettext
.include "../../devel/eel2/buildlink3.mk"
.include "../../devel/GConf2/schemas.mk"
#.include "../../devel/gettext-lib/buildlink3.mk"
.include "../../devel/glib2/buildlink3.mk"
.include "../../devel/libbonobo/buildlink3.mk"
.include "../../devel/libglade2/buildlink3.mk"
.include "../../devel/libgnomeui/buildlink3.mk"
.include "../../mail/gmime/buildlink3.mk"
.include "../../net/ORBit2/buildlink3.mk"
.include "../../sysutils/gnome-vfs2/buildlink3.mk"
.include "../../textproc/intltool/buildlink3.mk"
.include "../../textproc/scrollkeeper/omf.mk"
.include "../../x11/gtk2/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|