mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-15 07:56:36 +00:00
62 lines
1.5 KiB
Makefile
62 lines
1.5 KiB
Makefile
|
# New ports collection makefile for: nedi
|
||
|
# Date created: 2007-02-04
|
||
|
# Whom: cristi
|
||
|
#
|
||
|
# $FreeBSD$
|
||
|
#
|
||
|
|
||
|
PORTNAME= nedi
|
||
|
DISTVERSION= 1.0.w-rc4
|
||
|
CATEGORIES= net-mgmt
|
||
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
||
|
EXTRACT_SUFX= .tgz
|
||
|
|
||
|
MAINTAINER= cristi@net.utcluj.ro
|
||
|
COMMENT= Network Discovery and Monitoring tool
|
||
|
|
||
|
RUN_DEPENDS= ${SITE_PERL}/Net/SNMP.pm:${PORTSDIR}/net-mgmt/p5-Net-SNMP \
|
||
|
${SITE_PERL}/Net/Telnet/Cisco.pm:${PORTSDIR}/net-mgmt/p5-Telnet-Cisco \
|
||
|
${SITE_PERL}/Algorithm/Diff.pm:${PORTSDIR}/devel/p5-Algorithm-Diff \
|
||
|
${SITE_PERL}/${PERL_ARCH}/DBI.pm:${PORTSDIR}/databases/p5-DBI
|
||
|
|
||
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
||
|
NO_BUILD= yes
|
||
|
|
||
|
# The options part is copied from databases/phpmyadmin
|
||
|
# and looks this way, because we have to USE_PHP
|
||
|
# before pre.mk, however WITH_*, WITHOUT_* are set only
|
||
|
# after pre.mk. The solution is to set them by ourselves.
|
||
|
OPTIONS= GD "Use GD" OFF
|
||
|
|
||
|
PORT_DBDIR?= ${DESTDIR}/var/db/ports
|
||
|
LATEST_LINK= ${PORTNAME}${PKGNAMESUFFIX}
|
||
|
OPTIONSFILE?= ${PORT_DBDIR}/${LATEST_LINK}/options
|
||
|
|
||
|
.if exists(${OPTIONSFILE})
|
||
|
.include "${OPTIONSFILE}"
|
||
|
.endif
|
||
|
|
||
|
USE_PHP= session snmp mysql
|
||
|
WANT_PHP_WEB= yes
|
||
|
|
||
|
.if defined(WITH_GD) && !defined(WITHOUT_GD)
|
||
|
USE_PHP+= gd
|
||
|
.endif
|
||
|
|
||
|
NEDIDIR= ${PREFIX}/www/nedi
|
||
|
|
||
|
SUB_FILES= pkg-message
|
||
|
SUB_LIST= NEDIDIR=${NEDIDIR}
|
||
|
|
||
|
do-install:
|
||
|
@ ${MKDIR} -m 755 ${NEDIDIR}
|
||
|
@ ${CP} -r ${WRKSRC}/* ${NEDIDIR}
|
||
|
@ ${MV} ${NEDIDIR}/seedlist ${PREFIX}/etc/nedi.seedlist.sample
|
||
|
@ ${MV} ${NEDIDIR}/nedi.conf ${PREFIX}/etc/nedi.conf.sample
|
||
|
|
||
|
post-install:
|
||
|
@ ${CAT} ${PKGMESSAGE}
|
||
|
|
||
|
.include <bsd.port.mk>
|