diff options
author | Dmitry Sivachenko <demon@FreeBSD.org> | 2003-04-23 10:40:02 +0000 |
---|---|---|
committer | Dmitry Sivachenko <demon@FreeBSD.org> | 2003-04-23 10:40:02 +0000 |
commit | 49e0e21a443388bc93e6ce7ed7173105c7a106c5 (patch) | |
tree | effefcde4043df55d51e2d2cbb7e3115364b43df /net | |
parent | Apply a fix against a macro expansion problem and bump PORTREVISION (diff) |
Add WITH_GD2 knob to use gd2 rather than gd1.
PR: 51287
Submitted by: "Leonid A. Lyamanov" <leonas@demos.su>
Reviewed by: maintainer
Notes
Notes:
svn path=/head/; revision=79504
Diffstat (limited to 'net')
-rw-r--r-- | net/nagios/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/net/nagios/Makefile b/net/nagios/Makefile index 39430cd5a9c0..bce678162792 100644 --- a/net/nagios/Makefile +++ b/net/nagios/Makefile @@ -15,8 +15,12 @@ MASTER_SITE_SUBDIR=nagios MAINTAINER= blaz@si.FreeBSD.org COMMENT= Extremely powerful network monitoring system -LIB_DEPENDS= gd.2:${PORTSDIR}/graphics/gd \ - gnugetopt.1:${PORTSDIR}/devel/libgnugetopt +.if defined(WITH_GD2) +LIB_DEPENDS= gd.4:${PORTSDIR}/graphics/gd2 +.else +LIB_DEPENDS= gd.2:${PORTSDIR}/graphics/gd +.endif +LIB_DEPENDS+= gnugetopt.1:${PORTSDIR}/devel/libgnugetopt RUN_DEPENDS= ${LOCALBASE}/libexec/nagios/check_nagios:${PORTSDIR}/net/nagios-plugins GNU_CONFIGURE= yes |