View | Details | Raw Unified | Return to bug 98144
Collapse All | Expand All

(-)Makefile (-1 / +15 lines)
Lines 6-11 Link Here
6
#
6
#
7
# Tunables:
7
# Tunables:
8
# WITH_DILLO_SSL: enable experimental SSL support
8
# WITH_DILLO_SSL: enable experimental SSL support
9
# WITH_DILLO_DLGUI: enable experimental FLTK2 based gui for file downloads
9
#
10
#
10
11
11
PORTNAME=	dillo
12
PORTNAME=	dillo
Lines 29-35 Link Here
29
CONFIGURE_ENV=	CPPFLAGS="${CPPFLAGS}" \
30
CONFIGURE_ENV=	CPPFLAGS="${CPPFLAGS}" \
30
		LDFLAGS="${LDFLAGS}"
31
		LDFLAGS="${LDFLAGS}"
31
CONFIGURE_ARGS=	--enable-cookies --enable-ipv6 --enable-threaded-dns \
32
CONFIGURE_ARGS=	--enable-cookies --enable-ipv6 --enable-threaded-dns \
32
		--disable-dlgui \
33
		--libdir=${PREFIX}/libexec
33
		--libdir=${PREFIX}/libexec
34
34
35
.if defined(WITH_DILLO_SSL)
35
.if defined(WITH_DILLO_SSL)
Lines 40-45 Link Here
40
CONFIGURE_ARGS+=	--disable-ssl
40
CONFIGURE_ARGS+=	--disable-ssl
41
.endif
41
.endif
42
42
43
.if defined(WITH_DILLO_DLGUI)
44
CONFIGURE_ARGS+=	--enable-dlgui
45
BUILD_DEPENDS+=	fltk>=2.0.r4825:${PORTSDIR}/x11-toolkits/fltk2
46
CPPFLAGS+=	-I${X11BASE}/include
47
LDFLAGS+=	-L${X11BASE}/lib
48
.else
49
CONFIGURE_ARGS+=	--disable-dlgui
50
.endif
51
43
CONFLICTS=	dillo-i18n-*[0-9]*
52
CONFLICTS=	dillo-i18n-*[0-9]*
44
53
45
post-patch:
54
post-patch:
Lines 54-59 Link Here
54
	@${ECHO_CMD} "   Set WITH_DILLO_SSL=yes in your make environment or on the"
63
	@${ECHO_CMD} "   Set WITH_DILLO_SSL=yes in your make environment or on the"
55
	@${ECHO_CMD} "   commandline to enable experimental SSL support."
64
	@${ECHO_CMD} "   commandline to enable experimental SSL support."
56
.endif
65
.endif
66
.if !defined(WITH_DILLO_DLGUI)
57
	@${ECHO_CMD} ""
67
	@${ECHO_CMD} ""
68
	@${ECHO_CMD} "   Set WITH_DILLO_DLGUI=yes in your make environment or on the"
69
	@${ECHO_CMD} "   commandline to enable a FLTK2 based gui for download operations."
70
.endif
71
	@${ECHO_CMD} ""
58
72
59
.include <bsd.port.mk>
73
.include <bsd.port.mk>

Return to bug 98144