Edit

IABSD.fr/ports/sysutils/nut/Makefile

Branch :

  • Show log

    Commit

  • Author : sthen
    Date : 2011-09-19 15:59:57
    Hash : 8103eadc
    Message : update to NUT 2.6.2 and add rc.d scripts - thanks ajacoutot@ for looking over the scripts - note that there has been some major work on apcsmart; in the event of problems the old driver is still available as apcsmart-old

  • sysutils/nut/Makefile
  • # $OpenBSD: Makefile,v 1.49 2011/09/19 15:59:57 sthen Exp $
    
    COMMENT-main=		UPS monitoring program supporting many brands
    COMMENT-cgi=		CGIs for monitoring Nut-based UPSs
    COMMENT-snmp=		driver for monitoring UPS via SNMP
    COMMENT-xml=		driver for monitoring UPS via XML/HTTP
    
    DISTNAME=		nut-2.6.2
    
    PKGNAME-main=		${DISTNAME}
    PKGNAME-cgi=		${DISTNAME:S/-/-cgi-/}
    PKGNAME-snmp=		${DISTNAME:S/-/-snmp-/}
    PKGNAME-xml=		${DISTNAME:S/-/-xml-/}
    
    SHARED_LIBS +=  upsclient            1.0      # 1.0
    SHARED_LIBS +=  nutscan              0.0      # 1.0
    
    CATEGORIES=		sysutils
    HOMEPAGE=		http://www.networkupstools.org/
    
    MAINTAINER=		Stuart Henderson <sthen@openbsd.org>
    
    # GPLv2+, some scripts (not packaged) are GPLv3+
    PERMIT_PACKAGE_CDROM=	Yes
    PERMIT_PACKAGE_FTP=	Yes
    PERMIT_DISTFILES_CDROM=	Yes
    PERMIT_DISTFILES_FTP=	Yes
    
    COMMON +=	c crypto pthread
    WANTLIB-main +=	${COMMON} ${WANTLIB} asn1 expat gssapi krb5 m ssl usb z
    WANTLIB-xml +=	${COMMON} ${WANTLIB} asn1 expat gssapi krb5 neon ssl z
    WANTLIB-cgi +=	${COMMON} ${WANTLIB} X11 expat fontconfig
    WANTLIB-cgi +=	freetype gd jpeg m png ssl upsclient xcb z
    WANTLIB-snmp +=	${COMMON} m netsnmp
    
    MASTER_SITES=		${HOMEPAGE}source/2.6/
    
    MODULES=		devel/gettext lang/python
    MODPY_RUNDEP=		No
    BUILD_DEPENDS+=		textproc/asciidoc \
    			textproc/docbook \
    			textproc/docbook-xsl
    
    WEB_ROOT=		/var/www
    NUT_USER=		_ups
    NUT_ID=			529
    SUBST_VARS=		WEB_ROOT NUT_USER NUT_ID
    USE_GROFF=		Yes
    
    CONFIGURE_STYLE=	gnu old
    CONFIGURE_ARGS+=	A2X=${LOCALBASE}/bin/a2x.py \
    			--sysconfdir=${SYSCONFDIR}/nut \
    			--datadir=${PREFIX}/share/ups \
    			--mandir=${PREFIX}/man \
    			--with-doc=html-single \
    			--with-ssl \
    			--with-statepath=/var/db/nut \
    			--with-user=${NUT_USER} \
    			--with-group=${NUT_USER}
    
    PSEUDO_FLAVORS=		no_snmp no_xml
    FLAVOR?=
    MULTI_PACKAGES=		-main -cgi
    
    .if ${FLAVOR:L:Mno_snmp}
    CONFIGURE_ARGS+=	--without-snmp
    .else
    MULTI_PACKAGES+=	-snmp
    .endif
    
    .if ${FLAVOR:L:Mno_xml}
    CONFIGURE_ARGS+=	--without-neon
    .else
    MULTI_PACKAGES+=	-xml
    .endif
    
    LIB_DEPENDS-main=	${MODGETTEXT_LIB_DEPENDS} \
    			devel/libusb
    RUN_DEPENDS-main=	# empty
    
    PREFIX-cgi=		${WEB_ROOT}
    
    LIB_DEPENDS-xml=	net/neon
    RUN_DEPENDS-xml=	${RUN_DEPENDS} \
    			sysutils/nut
    
    LIB_DEPENDS-snmp=	net/net-snmp
    RUN_DEPENDS-snmp=	sysutils/nut
    
    LIB_DEPENDS-cgi=	${LIB_DEPENDS} \
    			graphics/jpeg \
    			graphics/gd \
    			sysutils/nut
    
    .if ${MULTI_PACKAGES:M-cgi}
    BUILD_DEPENDS+=		graphics/gd>=1.8.3
    
    CONFIGURE_ARGS+=	--with-cgi \
    			--with-cgipath="${WEB_ROOT}/cgi-bin/nut" \
    			--with-gd-libs="-L${X11BASE}/lib -L${PREFIX}/lib \
    			    -lgd -lpng -lz -ljpeg -lm -lfreetype -lX11" \
    			--with-gd-includes="-I${PREFIX}/include"
    .endif
    
    USE_GMAKE=		Yes
    USE_LIBTOOL=		Yes
    FAKE_FLAGS=		sysconfdir=${PREFIX}/share/examples/nut
    
    NO_REGRESS=		Yes
    
    pre-configure:
    	${SUBST_CMD} ${WRKSRC}/conf/upssched.conf.sample.in
    	ln -s ${MODPY_BIN} ${WRKDIR}/bin/python
    
    post-install:
    	${INSTALL_DATA_DIR} ${WRKINST}${WEB_ROOT}/conf/nut/
    .for file in hosts.conf upsset.conf upsstats.html upsstats-single.html
    	${INSTALL_DATA} ${WRKBUILD}/conf/${file}.sample \
    	    ${WRKINST}${WEB_ROOT}/conf/nut/
    .endfor
    	${INSTALL_DATA_DIR} ${PREFIX}/share/doc/nut/
    	cd ${WRKSRC}/docs; cp -R ../[A-LN-Z]* ../MAINTAINERS \
    	    *html cables images ${PREFIX}/share/doc/nut/
    
    .include <bsd.port.mk>