mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-04 06:15:24 +00:00
d3cea0eb52
the display features on Cisco 79XX IP Phones. It produces on-screen phone directories, search capabilities, text memos, interactive user status, and more. The directory can be manipulated very easily using the user-friendly web interface. Based on PHP server language integrated with MySQL server, Open 79XX XML Directory is a powerfull tool. WWW: http://web.csma.biz/apps/xml_xmldir.php PR: ports/93432 Submitted by: Babak Farrokhi <babak@farrokhi.net>
31 lines
733 B
Makefile
31 lines
733 B
Makefile
# New ports collection makefile for: open79xxdir
|
|
# Date created: 16 FEB 2006
|
|
# Whom: Babak Farrokhi <babak@farrokhi.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= openxmldir
|
|
PORTVERSION= 1.0
|
|
CATEGORIES= www
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= open79xxdir
|
|
DISTNAME= ${PORTNAME}_${PORTVERSION}
|
|
|
|
MAINTAINER= babak@farrokhi.net
|
|
COMMENT= PHP based XML menuing system for cisco 79xx IP phones
|
|
|
|
NO_BUILD= YES
|
|
WANT_PHP_WEB= YES
|
|
USE_PHP= mysql xml
|
|
PLIST_SUB+= OPENXMLDIR=${OPENXMLDIR}
|
|
OPENXMLDIR= www/${PORTNAME}
|
|
|
|
do-install:
|
|
-${MKDIR} ${PREFIX}/${OPENXMLDIR}
|
|
@${CP} -R ${WRKSRC}/* ${PREFIX}/${OPENXMLDIR}
|
|
@${CHOWN} -R ${WWWOWN}:${WWWGRP} ${PREFIX}/${OPENXMLDIR}
|
|
@${CHMOD} 755 ${PREFIX}/${OPENXMLDIR}
|
|
|
|
.include <bsd.port.mk>
|